@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Noto+Sans+SC:wght@400;500;700&display=swap');
@font-face {
    src: url('../fonts/Gotham-Book.otf');
    font-family: 'Gotham'; font-weight: 400; font-style: normal;
}
@font-face {
    src: url('../fonts/Gotham-Medium.otf');
    font-family: 'Gotham'; font-weight: 500; font-style: normal;
}
@font-face {
    src: url('../fonts/Gotham-Bold.otf');
    font-family: 'Gotham'; font-weight: 700; font-style: normal;
}



body { 
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
	font-family: 'Gotham', Montserrat, 'Noto Sans SC', PingFang SC, SimHei, sans-serif;
	font-size: 16px; font-weight: 400; color: #4d4c51; letter-spacing: 0; line-height: 1.3;
}
body.navopen { overflow: hidden; }
h1, h2, h3, h4, h5, h6 { font-weight: bold; }
p { line-height: 1.45; }
p:last-child { margin-bottom: 0; }
p > b { font-size: 1.125em; }
a { color: #e30613; transition: color 0.3s ease-out; }
a:hover { color: #a2880c; text-decoration: none; }
a[href*=mailto],
a[href*=http] { word-break: break-word; }
img { max-width: 100%; }
.container { max-width: 1200px; }


@media only screen and (min-width: 1400px) {
	.container { max-width: 1300px; }
}
@media only screen and (max-width: 767px) {
	body { font-size: 14px; }
	p { line-height: 1.55; }
	h2 { font-size: 28px; }
	h3 { font-size: 24px; }
	h4 { font-size: 20px; }
	h5 { font-size: 18px; }
	h6 { font-size: 15px; }
}


/*=====================================================================*/
/* CONTENT */
/*=====================================================================*/
.content-wrap { padding: 80px 15px; }
/*--*/
.scrollfade { opacity: 0; }
.layer { position: relative !important; }
/*===================*/
/*====== title ======*/
.titlehead { margin-bottom: 1.5em; }
.titlehead h1 { font-size: 40px; line-height: 1.1; }
/*====================*/
/*====== button ======*/
.btn-border { 
	font-size: 14px; font-weight: 700; color: #4d4c51; text-transform: uppercase; vertical-align: middle;
	position: relative; display: inline-block; background: none; padding: 1.1em 1.65em 1.05em; border-radius: 100px; outline: 0; z-index: 1; overflow: hidden;
	transition: color 0.3s cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-border:before,
.btn-border:after {
    width: 99.9%; height: 99.9%; /* instead of 100%, this for firefox & safari look nicely */
    content: ''; border-radius: inherit; z-index: -1; position: absolute; top: 0; left: 0; 
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    transition: transform 0.3s, opacity 0.3s; transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-border:before {
    border: 1px solid; opacity: 1;
    -webkit-transform: scale(1, 1); transform: scale(1, 1);
}
.btn-border:after { 
    background: #e30613; opacity: 0; 
    -webkit-transform: scale(0.5, 0.5); transform: scale(0.5, 0.5);
}
.btn-border.active { background: #e30613; color: #fff; }
.btn-border:hover { color: #fff; }
.btn-border:hover::before {
    opacity: 0;
    -webkit-transform: scale(0.5, 0.5); transform: scale(0.5, 0.5);
}
.btn-border:hover::after {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1);
}
/*--*/
.btn-icon i { 
	font-size: 1.15em; color: #e30613; vertical-align: middle; 
	display: inline-block; margin-right: 8px; position: relative; top: -1px;
	transition: -webkit-transform 0.2s cubic-bezier(0.75, 0, 0.125, 1), color ease-out 0.3s; 
    transition: transform 0.2s cubic-bezier(0.75, 0, 0.125, 1), color ease-out 0.3s;
	-webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.btn-icon:hover i { color: #fff; }
/*--*/
.btn-solid-shadow {
    display: inline-block; min-width: 120px; background-color: #f0df8e; padding: 1em 1.5em; border-radius: 100px; cursor: pointer; position: relative; box-shadow: 0px 5px #cec590;
    font-size: 14px; font-weight: 700; color: #4d4c51; text-transform: uppercase;
}
.btn-solid-shadow:hover { box-shadow: 0px 3px #cec590; top: 2px; }
.btn-solid-shadow:active { box-shadow: 0px 0px #cec590; top: 5px; }
/*--*/
.btn-dot-ripple { 
	display: -ms-inline-flexbox; display: inline-flex; -ms-flex-align: center; align-items: center; -ms-flex-pack: justify; justify-content: space-between;
	position: relative; min-width: 200px; overflow: hidden; text-align: left; 
}
.btn-dot-ripple:after {
	content: ''; display: inline-block; border: 4px solid; border-radius: 50%; margin-left: 25px;
	color: #e30614; vertical-align: middle;
}
.btn-solid-shadow:hover::after,
a:hover .btn-dot-ripple:after { -webkit-animation: dotripples 0.5s ease-in-out; animation: dotripples 0.5s ease-in-out; }

@-webkit-keyframes dotripples {
	0% { -webkit-transform: scale(1); transform: scale(1); opacity: 0.2; color: #fff; }
	100% { -webkit-transform: scale(50); transform: scale(50); opacity: 0; color: #fff; }
}
@keyframes dotripples {
	0% { -webkit-transform: scale(1); transform: scale(1); opacity: 0.2; color: #fff; }
	100% { -webkit-transform: scale(50); transform: scale(50); opacity: 0; color: #fff; }
}
/*--*/
.btn-gradient {
	display: inline-block; min-width: 120px; padding: 3px; border-radius: 15px; cursor: pointer; position: relative; 
    font-size: 25px; font-weight: 700; color: #4d4c51; line-height: 1.1; text-align: center; text-transform: uppercase; text-shadow: 0 0 #4d4c51, 2px 2px 6px #fff; vertical-align: middle;
    /* https://www.colorzilla.com/gradient-editor/ */
    background-color: #f0df8e;
    background-image: radial-gradient(ellipse at center, #fdf472 50%,#c58a1e 100%);
}
.btn-gradient span {
	display: inline-block; padding: 0.35em 0.65em 0.3em; border-radius: 12px; box-shadow: inset 0px 5px 3px 0px #fff;
	transition: color 0.3s ease-out, text-shadow 0.3s ease-out, box-shadow 0.3s ease-out;
	/* https://www.colorzilla.com/gradient-editor/ */
	background-color: #f0df8e;
	background-image: radial-gradient(ellipse at center, #f9efa0 30%,#ae7838 100%);
}
.btn-gradient:hover { background: #d6b97d; color: #4d4c51; text-shadow: none; }
.btn-gradient:hover span { background: #d6b97d; box-shadow: none; padding-top: 0.4em; padding-bottom: 0.25em; }
/*--*/
.btn-show { font-weight: 700; margin-top: 1em; display: block; cursor: pointer; }
.btn-show span { 
    display: inline-block; vertical-align: middle; margin-left: 2px; font-size: 1.13em;
    -webkit-transition: 0.3s ease-out; transition: 0.3s ease-out; 
}
.btn-show span i { display: block; line-height: 0.3; }
.btn-show.more:hover span { -webkit-transform: translateY(3px); transform: translateY(3px); }
.btn-show.less:hover span { -webkit-transform: translateY(-3px); transform: translateY(-3px); }
/*==================*/
/*====== Form ======*/
label { display: block; font-size: 16px; font-weight: 700; color: #4d4c51; }
label span.required { color: red; }
/*--*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    transition: background-color 5000s;
    -webkit-text-fill-color: #4d4c51 !important;
}
/*--*/
.form-control::-webkit-input-placeholder { color: #b3b3b3; }
.form-control:-moz-placeholder { color: #b3b3b3; opacity:1; }
.form-control::-moz-placeholder { color: #b3b3b3; opacity:1; }
.form-control:-ms-input-placeholder { color: #b3b3b3; }
/*--*/
.form-group { position: relative; margin-bottom: 25px; }
.form-control { 
	background-color: #fff; height: calc(1.4em + 1.3em + 2px); padding: .375em 1.3em; border-radius: 5px; border-color: #c2c2c2; transition: 0.3s ease-out;
	font-size: 16px; color: #4d4c51; font-weight: inherit; line-height: inherit;
}
.form-control:focus { box-shadow: none; background-color: #fff; border-color: #4d4c51; position: relative; z-index: 1; color: #4d4c51; }
textarea.form-control { padding-top: calc(0.375em + 0.375em); }
select.form-control {
	padding-right: 1.8em; cursor: pointer;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' fill='%23304526'></polygon></svg>");
    background-origin: content-box; background-position: right -10px center; background-repeat: no-repeat; background-size: 9px 6px;
}
/*--*/
/*-- checkbox --*/
.container_check {
    display: inline-block; position: relative; padding-left: 2em; cursor: pointer;
    font-weight: 400; 
    -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.container_check input { position: absolute; opacity: 0; left: -9999px; }
.container_check .checkmark {
    position: absolute; top: 0; left: 0; transition: all 0.3s ease-in-out;
    width: 1.2em; height: 1.2em; background-color: transparent; border: 1px solid #c2c2c2; border-radius: 4px; 
}
.container_check .checkmark:after {
    content: ""; width: 0.3em; height: 0.6em; border: solid white; border-width: 0 2px 2px 0;
    position: absolute; left: 0.4em; top: 0.145em; display: none;
    -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);
}
.container_check input:checked ~ .checkmark { background-color: #e30613; border: 1px solid transparent; box-shadow: 0px 0px 0px 2px rgba(227, 6, 19, 0.3); }
.container_check input:checked ~ .checkmark:after { display: block; }
/*--*/
/*-- radio --*/
.container_radio {
    display: inline-block; position: relative; padding-left: 28px; margin-bottom: 5px; margin-right: 30px; cursor: pointer;
    font-weight: 400;
    -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.container_radio input { position: absolute; opacity: 0; left: -9999px; }
.container_radio .checkmark {
    position: absolute; top: 0; left: 0; transition: all 0.3s ease-in-out; 
    width: 18px; height: 18px; background: #fff; border: 1px solid #c2c2c2; border-radius: 50%;
}
.container_radio .checkmark:after {
    content: ""; width: 12px; height: 12px; background: #e30613; border-radius: 50%; 
    position: absolute; top: 2px; left: 2px; opacity: 0; transition: all 0.2s ease;
    -webkit-transform: scale(0); transform: scale(0);
}
.container_radio input:checked ~ .checkmark { border: 1px solid transparent; box-shadow: 0px 0px 0px 2px rgba(227, 6, 19, 0.3); }
.container_radio input:checked ~ .checkmark:after { 
	opacity: 1; 
	-webkit-transform: scale(1); transform: scale(1);
}
/*--*/
[type="submit"].btn-solid-shadow { margin-top: 45px; outline: 0; border: none; min-width: 150px; font-size: 16px; }
/*--*/
label.error { 
    font-size: 12px; font-weight: 500; color: #db8888; line-height: 1.2; letter-spacing: 0.05em;
    display: block; margin: 5px 0; 
}
label.error:empty { display: none !important; }
.form-control.error { border-right: 3px solid #ff8a8a !important; }
.container_check .error + .checkmark { border: 2px solid #ff8a8a; }
.container_radio .error + .checkmark { border: 2px solid #ff8a8a; }

#result-msg > * { padding: 0.5em 1em; margin-top: 30px; border-radius: 5px; font-weight: 500; color: #333; }
#result-msg > .successmsg { background-color: #a5eece; }
#result-msg > .failedmsg { background-color: #ff8a8a; }
/*=================*/
/*====== ... ======*/
.mfp-iframe-scaler iframe { border-radius: 20px; } 
[class*=popupimg][data-mfp-src] { position: relative; cursor: pointer; -webkit-backface-visibility: hidden; backface-visibility: hidden; transition: all 0.3s ease-out; }
[class*=popupimg][data-mfp-src]:before {
    content: ''; width: 100%; height: 100%; background: #000; opacity: 0;
    position: absolute; top: 0; left: 0; visibility: hidden; transition: all 0.3s ease-out;
}
[class*=popupimg][data-mfp-src]:after { 
	content: '+'; font-size: 30px; color: #333; text-align: center; line-height: 1.5;
    position: absolute; top: 50%; left: 50%; background: #fff; width: 1.5em; height: 1.5em; border-radius: 50%; opacity: 0; visibility: hidden; transition: all 0.3s ease-out;
    -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);
}
[class*=popupimg][data-mfp-src]:hover::before { opacity: 0.1; visibility: visible; }
[class*=popupimg][data-mfp-src]:hover::after { opacity: 1; visibility: visible; }
/*--*/
.modal-backdrop { background-color: #c2c2c2; }
.modal-backdrop.show { opacity: 0.7; }
.modal-content { border: none; border-radius: 10px; padding: 50px 20px 30px; }
/*=================*/
/*====== ... ======*/
#info-breast-milk .modal-dialog { max-width: 550px; }
#info-breast-milk .modal-content { 
	padding: 30px 20px; position: relative;
	background-repeat: no-repeat; background-size: 100% 100%; background-color: transparent;
	background-image: url(../images/bg-box.png);
}
#info-breast-milk .modal-content:before {
    content: ''; max-width: 168px; width: 100%; height: 184px;
    position: absolute; right: -20px; bottom: -69px;
    background-repeat: no-repeat; background-size: contain; background-image: url(../images/deco-milk.png);
}
#info-breast-milk .modal-content .content { background: #fff; padding: 60px 40px; border-radius: 30px; }
#info-breast-milk .btn-solid-shadow { border: 1px solid #4d4c51; }


@media only screen and (min-width: 1200px) {
}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 767px) {
	.content-wrap { padding: 65px 5px 60px; }
	/*--*/
	.titlehead h1 { font-size: 32px; }
	/*--*/
	.btn-gradient { font-size: 22px; }
	/*--*/
	label,
	.form-control,
	[type="submit"].btn-solid-shadow { font-size: 14px; }
	/*--*/
	#info-breast-milk .modal-content { padding: 20px 15px; }
	#info-breast-milk .modal-content .content { padding: 40px 15px; }
}
@media only screen and (max-width: 575px) {
}
@media only screen and (max-width: 480px) {
	.titlehead h1 { /*font-size: 28px;*/ word-break: break-word; }
}
@media only screen and (max-width: 320px) {
}


/*=====================================================================*/
/* HEADER */
/*=====================================================================*/
header { background: #fff; position: relative; z-index: 5; box-shadow: 0px 2px 5px rgba(0,0,0,0.05); }
header .container { max-width: 1350px; }
header .btn-icon { vertical-align: middle; }
/*--*/
a.logo { display: inline-block; }
a.logo img,
a.logo svg { max-width: 111px; width: 100%; image-rendering: -webkit-optimize-contrast; }
/*--*/
header .btn-border:before { border-color: #e30613; }
header .btn-border + .btn-border { margin-left: 10px; }
/*=======================*/
/*====== Hamburger ======*/
/** Single Element Animated Hamburger Menu CSS Only - Josh Fabean
 ** (https://codepen.io/fabean/pen/XXegoQ) 
 **/
.navtoggler { width: 28px; height: 23px; background: none; border: none; padding: 0; cursor: pointer; position: relative; z-index: 3; }
.navtoggler div.hamburger { position: relative; transition: background 10ms 300ms ease; }
.navtoggler div.hamburger,
.navtoggler div.hamburger:before, 
.navtoggler div.hamburger:after { width: 100%; height: 3px; background: #4d4c51; border-radius: 5px; }
.navtoggler div.hamburger:before, 
.navtoggler div.hamburger:after { 
	content: ''; position: absolute; left: 0; 
	transition: top 300ms 350ms ease, transform 300ms 50ms ease; 
}
.navtoggler div.hamburger:before { top: -8px; }
.navtoggler div.hamburger:after { top: 8px; }
/*--*/
.navtoggler.change div.hamburger { background: transparent; }
.navtoggler.change div.hamburger:after, 
.navtoggler.change div.hamburger:before { 
	top: 0;
	transition: top 300ms 50ms ease, transform 300ms 350ms ease;
}
.navtoggler.change div.hamburger:before { -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.navtoggler.change div.hamburger:after { -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
/*=================*/
/*====== ... ======*/
.navi ul { margin: 0; padding: 0; line-height: 0; }
.navi a { display: block; transition: all 0.3s ease; line-height: 1.1; }
.navi a:not(.dropcon) { font-weight: 500; color: #4d4c51; }
.navi a:hover { color: #4d4c51; }
/*=====================*/
/*====== submenu ======*/
.navi li.submenu a.dropcon:after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-size: 0.7em; font-weight: 700; color: #e30613; line-height: 1; }
.navi ul ul li a { word-break: break-word; padding: 0.65em 1.2em; }
.navi ul ul li.active > a { color: #e30613; }


@media only screen and (min-width: 768px) {
	header { padding: 0px 15px; }
	/*--*/
	a.logo { padding: 10px 0; }
	/*--*/
}
@media only screen and (min-width: 992px) {
	.navtoggler { display: none; }
	header .row { -ms-flex-wrap: nowrap; flex-wrap: nowrap; }
	header .navi-wrap,
	header .button-wrap { -ms-flex: 0 auto; flex: 0 auto; }
	/*--*/
	.navi a:not(.dropcon) { font-size: 16px; }

	.navi > ul { display: -ms-flexbox; display: flex; margin-left: 20px; }
	.navi > ul > li { position: relative; display: inline-block; vertical-align: middle; margin: 0 1.25em; }
	.navi > ul > li:first-child { margin-left: 0; }
	.navi > ul > li:last-child { margin-right: 0; }
	.navi > ul > li > a,
	.navi > ul > li > .split > a:not(.dropcon) { max-width: 105px; padding: 2.78em 0; text-align: center; }
	.navi > ul > li > a,
	.navi > ul > li > .split { display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; height: 100%; cursor: pointer; }
	.navi > ul > li > .split > a { display: inline-block; vertical-align: middle; }
	.navi > ul > li.active > a,
    .navi > ul > li.active > .split > a:not(.dropcon) { color: #e30613; }
	/*--*/
	.navi > ul > li:before {
	    content: ''; width: 100%; height: 1px; background: #e30613; 
	    position: absolute; bottom: 0px; left: 0; z-index: -1;
	    transition: -webkit-transform .3s cubic-bezier(.165,.84,.44,1) 0s, transform .3s cubic-bezier(.165,.84,.44,1) 0s;
	    -webkit-transform: scale(0,1); transform: scale(0,1);
	    -webkit-transform-origin: 100% 0; transform-origin: 100% 0;
	}
	.navi > ul > li:hover::before {
		transition: -webkit-transform .45s cubic-bezier(.86,0,.07,1) 0s, transform .45s cubic-bezier(.86,0,.07,1) 0s;
		-webkit-transform: scale(1); transform: scale(1);
		-webkit-transform-origin: 0 0; transform-origin: 0 0;
	}
	/*--*/
	.navi ul ul {
		position: absolute; top: 100%; min-width: 135px; border: none; background: #fff; border-radius: 0 0 8px 8px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.05); overflow: hidden;
	}
	.navi ul ul li { display: block; border-bottom: 1px solid #e3e3e3; }
	.navi ul ul li:last-child { border-bottom: none; }
	/*--*/
	.navi ul li:hover > ul { display: block; }
	.navi li.submenu a.dropcon { padding-left: 0.5em; }
	.navi ul ul li a:hover { color: #e30613; }
	/*--*/
	/*--*/
	.navi > ul > li { margin: 0 1.05em; }
	.navi a:not(.dropcon) { font-size: 13px; }
	header .btn-icon { font-size: 10px; }
	/*--*/
	/*--*/
}
@media only screen and (max-width: 991px) {
	.overlayer {
	    width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0); z-index: -1;
	    position: fixed; top: 0; left: 0; 
	    opacity: 0; visibility: hidden; transition: all 0.4s ease;
	}
	.overlayer-is-visible { background-color: rgba(0, 0, 0, 0.35); z-index: 2; opacity: 1; visibility: visible; transition: all 0.1s ease; }
	/*--*/
	.navi {
        position: fixed; top: 0; bottom: 0; left: 100%;
        background-color: #fff; box-shadow: 0 0 10px rgb(10, 10, 10, 0.2); z-index: 2;
        width: 85%; padding-top: 125px; padding-bottom: 20px; overflow-y: auto; 
        visibility: hidden; 
        transition: transform .4s ease-in-out, visibility .4s ease-in-out;
    }
    .navi.open { 
    	visibility: visible; 
    	-webkit-transform: translateX(-100%); transform: translateX(-100%);
    }
    /*--*/
    .navi li { display: block; border-bottom: 1px solid #e3e3e3; }
    .navi li:last-child { border-bottom: none; }
    .navi a:not(.dropcon) { font-size: 15px; }

    .navi > ul { border-top: 1px solid #e3e3e3; }
    .navi > ul > li > a,
	.navi > ul > li > .split > a:not(.dropcon) { padding: 0.8em 1.2em; position: relative; }
    .navi > ul > li > a:after,
    .navi > ul > li > .split > a[href]:not(.dropcon):after {
        content: ''; width: 0; height: 1px; background: #e30613;
        position: absolute; top: 15px; left: 20px; z-index: -1; transition: width 0.3s ease-out;
    }
    .navi > ul > li > a:hover,
    .navi > ul > li > .split > a[href]:not(.dropcon):hover { padding-left: 2.5em; }
    .navi > ul > li > a:hover::after,
    .navi > ul > li > .split > a[href]:not(.dropcon):hover::after { width: 8px; }
    .navi > ul > li.active > a,
    .navi > ul > li.active > .split > a:not(.dropcon) { color: #e30613; }
    /*--*/
    .navi li.submenu .split { position: relative; padding-right: 40px; }
    .navi li.submenu a.dropcon { position: absolute; right: 0; top: 0; width: 40px; height: 100%; padding: 0; border-left: 1px solid #ebebeb; }
    .navi li.submenu a.dropcon:after { position: absolute; left: 50%; top: 50%; margin-top: -5px; margin-left: -5px; padding: 0; transition: 0.1s ease-out; }
    .navi li.submenu a.dropcon[aria-expanded="true"]:after { transform: rotate(180deg); }
    .navi li.submenu a.dropcon:hover { margin-top: 3px; }
    .navi li.submenu a.dropcon[aria-expanded="true"]:hover { margin-top: -3px; }

    .navi ul ul { background: rgba(0,0,0,0.05); border-top: 1px solid #e3e3e3; }
    .navi ul ul li a { padding: 0.8em 2.2em; }
    .navi ul ul li:hover > a,
    .navi ul ul li a:hover { padding-left: 2.6em; }
    /*--*/
}
@media only screen and (max-width: 767px) {
	header { padding: 0px; }
	/*--*/
	header .row { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; }
	header .logo-wrap,
	header .navi-wrap { padding: 10px 20px; }
	header .button-wrap { padding: 8px 20px; border-bottom: 1px solid #e3e3e3; background: #fbecce; z-index: 3; text-align: right; }
	/*--*/
	a.logo img,
	a.logo svg { max-width: 70px; }
	/*--*/
	header .btn-border { font-size: 11px; border-radius: 5px; padding: 0.9em 1.35em 0.85em; }
	/*--*/
}


/*=====================================================================*/
/* FOOTER */
/*=====================================================================*/
footer { background: #f3f3f3; padding: 30px 15px; border-top: 1px solid #e3e3e3; font-size: 14px; }
footer a { color: #4d4c51; }
footer a:hover { color: #4d4c51; }
footer ul { padding: 0; margin: 0; list-style: none; display: inline-block; }
footer h6.title { font-size: 16px; font-weight: 500; }
/*--*/
footer .bottom-wrap { margin-top: 2.5em; }
/*=================*/
/*====== ... ======*/
ul.footsocial { margin-top: 3px; }
ul.footsocial li { margin-bottom: 0px; }
ul.footsocial li:last-child { margin-bottom: 0; }
ul.footsocial li a { display: inline-block; }
ul.footsocial li a i {
    font-size: 1.1em; position: relative; top: 1px;
    display: inline-block; float: left; margin-right: 0.6em;
}
ul.footsocial li a span { display: inline-block; overflow: hidden; transition: 0.3s ease-out; }
ul.footsocial li a:hover span { margin-left: 5px; }
/*=================*/
/*====== ... ======*/
ul.footlink > li { display: inline-block; margin-right: 20px; vertical-align: middle; }
ul.footlink > li:after { 
    content: ''; display: inline-block; vertical-align: middle; 
    position: relative; left: 10px; border-left: 1px solid #999; height: 0.8em;
}
ul.footlink > li:last-child { margin-right: 0; }	
ul.footlink > li:last-child:after { content: none; }
ul.footlink > li > a { display: inline-block; transition: 0.3s ease-out; }
/*--*/
ul.footlink:hover li a { opacity: 0.5; }
ul.footlink:hover li a:hover { opacity: 1; }
ul.footlink > li.active > a { color: #e30613; }
/*=================*/
/*====== ... ======*/
.copyright { font-size: 12px; }
/*--*/
.awards img { max-width: 250px; image-rendering: -webkit-optimize-contrast; border: 1px solid #ebebeb; border-radius: 5px; }
/*=================*/
/*====== ... ======*/
.scroll_top {
    position: fixed; right: 28px; bottom: 180px; display: none; z-index: 1; cursor: pointer;
    width: 2.5em; height: 2.5em; background-color: #e30613; font-size: 18px; 
}
.scroll_top span { 
	position: absolute; top: 50%; left: 50%; line-height: 0;
	-webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);
}
.scroll_top i { top: -2px; transition: 0.3s ease-out; color: #fff; }
.scroll_top:hover i { -webkit-transform: translateY(-3px); transform: translateY(-3px); }


@media only screen and (max-width: 767px) {
	footer { padding: 25px 5px; font-size: 12px; }
	footer h6.title { font-size: 14px; }
	footer .col-sm-auto:not(:first-child) { margin-top: 15px; }
	/*--*/
	.scroll_top { font-size: 15px; right: 15px; }
}


/*=====================================================================*/
/* LANDING */
/*=====================================================================*/
.landing-detail-wrap.content-wrap { 
	background-color: #fefaef; background-repeat: no-repeat;
    background-image: url(../images/deco-bg1a.png), url(../images/deco-bg1b.png);
    background-position: right -120px top -25%, left -200px bottom -25%;
}
/*==================*/
/*====== Form ======*/
.landing-detail-wrap .form-wrap {
	background: #fff; padding: 45px 35px; margin-top: 5em;
    border: 1px solid #f3f3f3; border-radius: 20px; box-shadow: 3px 5px 5px rgba(0,0,0,0.1);
}


@media only screen and (max-width: 767px) {
	.landing-detail-wrap .form-wrap { padding: 35px 25px; margin-top: 3em; }
}


/*=====================================================================*/
/* HOME */
/*=====================================================================*/
/*========================*/
/*====== homeslider ======*/
.homeslider { background: url(../js/slick/ajax-loader.gif) no-repeat center; position:relative; height: 600px; }
.homeslider.slick-initialized { background: inherit; height: auto; margin: 0; }
.homeslider .home_slide { display: none; }
.homeslider.slick-initialized .home_slide { display: block; }
.home_slide { outline: 0; }
.home_slide img { margin: 0 auto; }
/*--*/
.homeslider .slick-arrow { 
    font-size: 22px; text-align: center;
    width: 2em; height: 2em; background: #eee; border-radius: 50%; overflow: hidden; z-index: 1;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.homeslider .slick-arrow:before { 
    font-family: 'Font Awesome 6 Free'; font-size: 20px; font-weight: 700; color: #e30613;
    display: inline-block; opacity: 1; position: relative; left: 0; transition:all 0.3s ease-out;
}
.homeslider .slick-next { left: inherit; right: 3%; }
.homeslider .slick-prev { left: 3%; }
.homeslider .slick-next:before { content: '\f178';  }
.homeslider .slick-prev:before { content: '\f177';  }
.homeslider .slick-prev:not(.slick-disabled):hover::before { left: -4px; }
.homeslider .slick-next:not(.slick-disabled):hover::before { left: 4px; }
.homeslider .slick-prev:not(.slick-disabled):active::before { left: -8px; }
.homeslider .slick-next:not(.slick-disabled):active::before { left: 8px; }
.homeslider .slick-disabled { cursor: auto; }
.homeslider .slick-disabled:before { opacity: 0.5; }

.homeslider .slick-arrow { opacity: 0; visibility: hidden; transition: all 0.3s ease-out; }
.homeslider:hover .slick-arrow { opacity: 1; visibility: visible; }
/*--*/
.homeslider .slick-dots { bottom: -35px; line-height: 0; }
.homeslider .slick-dots li { width: auto; height: auto; margin: 1px 4px; }
.homeslider .slick-dots li button { 
    width: 10px; height: 10px; display: inline-block; padding: 0; 
    border-radius: 50%; border: 1px solid #e30613; transition: 0.2s ease-out;
}
.homeslider .slick-dots li button:before { content: none; }
.homeslider .slick-dots li.slick-active button, 
.homeslider .slick-dots li button:hover, 
.homeslider .slick-dots li button:focus { background: #e30613; }
/*=============================*/
/*====== home trial pack ======*/
.home-trialpack-wrap {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fbecce+0,fffbe2+50,fffef5+100 */
	background-color: #fbecce;
	/*background-image: linear-gradient(to bottom,  #fbecce 0%,#fffbe2 50%,#fffef5 100%); */
	background-image: url(../images/bg-trialpack.jpg);
    background-position: center; background-size: cover;
}
.home-trialpack-wrap .container-fluid { z-index: 1; }
.home-trialpack-wrap .desc { text-align: justify; }
/*--*/
.trialpackdecoimg { position: relative; padding-left: 10%; padding-top: 30%;  text-align: center; }
.trialpackdecoimg img.main { position: relative; }
.trialpackdecoimg [class*=deco_nutri] { position: absolute; image-rendering: -webkit-optimize-contrast; }
.trialpackdecoimg .deco_nutri-27key { 
	top: 22%; left: -9%; max-width: 125px; max-width: 23%; z-index: 1;
	-webkit-animation: float-up 8s infinite ease; -webkit-animation-delay: 0s;
			animation: float-up 8s infinite ease; animation-delay: 0s;
}
.trialpackdecoimg .deco_nutri-dha { 
	top: 7%; left: 16%; max-width: 100px; max-width: 20%; 
	-webkit-animation: float-down 10s infinite ease; -webkit-animation-delay: 0.5s;
			animation: float-down 10s infinite ease; animation-delay: 0.5s;
}
.trialpackdecoimg .deco_nutri-inositol { 
	top: 0px; left: 40%; max-width: 100px; max-width: 20%; 
	-webkit-animation: float-down 8s infinite ease; -webkit-animation-delay: 0.8s;
			animation: float-down 8s infinite ease; animation-delay: 0.8s;
}
.trialpackdecoimg .deco_nutri-gos { 
	top: 8%; left: 60%; max-width: 130px; max-width: 28%; 
	-webkit-animation: float-up 8s infinite ease; -webkit-animation-delay: 2s;
			animation: float-up 8s infinite ease; animation-delay: 2s;
}
.trialpackdecoimg .deco_nutri-nucleo { 
	top: 25%; right: 0px; max-width: 80px; max-width: 16%; 
	-webkit-animation: float-up 12s infinite ease; -webkit-animation-delay: 0.8s;
			animation: float-up 12s infinite ease; animation-delay: 0.8s;
}

@-webkit-keyframes float-up {
	0% { -webkit-transform: translate(0px,0px); transform: translate(0px,0px); }
	50% { -webkit-transform: translate(0px,-20px); transform: translate(0px,-20px); }
	100% { -webkit-transform: translate(0px,0px); transform: translate(0px,0px); }
}
@keyframes float-up {
	0% { -webkit-transform: translate(0px,0px); transform: translate(0px,0px); }
	50% { -webkit-transform: translate(0px,-20px); transform: translate(0px,-20px); }
	100% { -webkit-transform: translate(0px,0px); transform: translate(0px,0px); }
}
@-webkit-keyframes float-down {
	0% { -webkit-transform: translate(0px,0px); transform: translate(0px,0px); }
	50% { -webkit-transform: translate(0px,20px); transform: translate(0px,20px); }
	100% { -webkit-transform: translate(0px,0px); transform: translate(0px,0px); }
}
@keyframes float-down {
	0% { -webkit-transform: translate(0px,0px); transform: translate(0px,0px); }
	50% { -webkit-transform: translate(0px,20px); transform: translate(0px,20px); }
	100% { -webkit-transform: translate(0px,0px); transform: translate(0px,0px); }
}
/*========================*/
/*====== home video ======*/
.home-featvideo-wrap { color: #fff; }
.home-featvideo-wrap a.videopop { color: #fff; }
.home-featvideo-wrap a.videopop:before {
    content: ''; width: 100%; height: 100%; background: #363636;
    position: absolute; top: 0; left: 0; opacity: 0.5;
}
.home-featvideo-wrap .content-wrap { position: relative; text-align: left; }
/*--*/
.videopop { 
	position: relative; min-height: 470px; display: block; text-align: center;
	background-repeat: no-repeat; background-size: cover; background-position: center;
}
.videopop button {
	font-size: 28px; text-align: center; text-indent: 0.2em; line-height: 2;
	background: transparent; width: 2em; height: 2em; padding: 0; border-radius: 5px; border: 1px solid #fff; transition: 0.3s ease-out;
	position: absolute; top: 50%; left: 50%; outline: none; cursor: pointer;
	-webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);
}
.videopop button:after {
	content: ''; width: 0; height: 0; display: inline-block; position: relative;
	border-style: solid; border-width: 0.4em 0 0.4em 0.7em; transition: 0.3s ease-out;
	border-color: transparent transparent transparent #fff;

}
.videopop:hover button { background: #fff; }
.videopop:hover button:after { border-color: transparent transparent transparent #d6b97d; }
.videopop:hover button:before {
	content: ''; width: 2em; height: 2em; border-radius: 5px; background: #fff;
	position: absolute; top: 50%; left: 50%;
	-webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);
	-webkit-animation: ripples 1.5s ease-in-out infinite; animation: ripples 1.5s ease-in-out infinite;
}

/* (https://codepen.io/Jackthomsonn/pen/GjVPWX) */
@-webkit-keyframes ripples {
	0% { width: 2em; height: 2em; opacity: 0.5; }
	100% { width: 3.5em; height: 3.5em; opacity: 0; }
}
@keyframes ripples {
	0% { width: 2em; height: 2em; opacity: 0.5; }
	100% { width: 3.5em; height: 3.5em; opacity: 0; }
}
/*==========================*/
/*====== home benefit ======*/
.home-benefit-wrap {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fbecce+0,fffbe2+50,fffef5+100 */
	background-color: #fffef5;
	background-image: linear-gradient(to bottom, #fffef5 0%,#fffbe2 50%,#fbecce 100%);
	padding-top: 100px; overflow: hidden; 
}
/*--*/
.benefit-point { padding: 25px; padding-right: 15px; }
.benefit-point .icon {
	display: inline-block; border-radius: 50%; width: 2em; height: 2em; 
	font-size: 2em; color: #d6b97d; text-align: center; line-height: 2;
}
.benefit-point .icon i { background: #fff; border-radius: 50%; box-shadow: 5px 0px 5px rgba(0,0,0,0.1); width: 100%; height: 100%; line-height: 2; }
.benefit-point .icon img { display: block; filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.1)); }
.benefit-point .icon + .title { margin-top: 5px; }
.benefit-point .title { font-size: 20px; font-weight: 700; line-height: 1.2; }
.benefit-point .title + .desc { margin-top: 15px; }
.benefit-point .desc {  }
/*--*/
.benefit-featimg { position: relative; padding-left: 18%; padding-top: 23%; padding-right: 3%; text-align: center; }
.benefit-featimg img.main { position: relative; image-rendering: -webkit-optimize-contrast; }
.benefit-featimg img.deco { position: absolute; top: 0; right: 5%; max-width: 72%; }
.benefit-featimg [class*=deco_nutri] { position: absolute; image-rendering: -webkit-optimize-contrast; z-index: 1; filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.2)); }
.benefit-featimg .deco_nutri-27key { top: 10%; left: 39%; max-width: 17%; }
.benefit-featimg .deco_nutri-dha { top: 11%; left: 24%; max-width: 14%; }
.benefit-featimg .deco_nutri-inositol { top: 16%; left: 10%; max-width: 14%; }
.benefit-featimg .deco_nutri-gos { top: 30%; left: 0; max-width: 17%; }
.benefit-featimg .deco_nutri-nucleo { top: 51%; left: 4%; max-width: 16%; }
/*=========================*/
/*====== testislider ======*/
.home-testi-wrap { background: #fefaef url(../images/deco-bg1a.png) no-repeat; background-position: left -120px top -150px; }
.home-testi-wrap .titlehead i { font-size: 6em; margin-bottom: 5px; opacity: 0.2; }
/*--*/
.testislider { background: url(../js/slick/ajax-loader.gif) no-repeat center; position:relative; height: 600px; font-size: 14px; }
.testislider.slick-initialized { background: none; height: auto; }
.hometesti { display: none; outline: 0; padding: 20px; }
/*--*/
.testislider .slick-arrow { 
    font-size: 22px; text-align: center;
    width: 2em; height: 2em; background: #eee; border-radius: 50%; overflow: hidden; z-index: 1;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.testislider .slick-arrow:before { 
    font-family: 'Font Awesome 6 Free'; font-size: 20px; font-weight: 700; color: #e30613;
    display: inline-block; opacity: 1; position: relative; left: 0; transition:all 0.3s ease-out;
}
.testislider .slick-next { left: inherit; right: 0; }
.testislider .slick-prev { left: 0; }
.testislider .slick-next:before { content: '\f178';  }
.testislider .slick-prev:before { content: '\f177';  }
.testislider .slick-prev:not(.slick-disabled):hover::before { left: -4px; }
.testislider .slick-next:not(.slick-disabled):hover::before { left: 4px; }
.testislider .slick-prev:not(.slick-disabled):active::before { left: -8px; }
.testislider .slick-next:not(.slick-disabled):active::before { left: 8px; }
.testislider .slick-disabled { cursor: auto; }
.testislider .slick-disabled:before { opacity: 0.5; }
/*--*/
.testislider .slick-dots { bottom: -35px; left: 0; line-height: 0; }
.testislider .slick-dots li { width: auto; height: auto; margin: 1px 4px; }
.testislider .slick-dots li button { 
    width: 10px; height: 10px; display: inline-block; padding: 0; 
    border-radius: 50%; border: 1px solid #e30613; transition: 0.2s ease-out;
}
.testislider .slick-dots li button:before { content: none; }
.testislider .slick-dots li.slick-active button, 
.testislider .slick-dots li button:hover, 
.testislider .slick-dots li button:focus { background: #e30613; }
/*--*/
.hometesti .row {
    margin: 0; padding: 20px; padding-bottom: 65px; position: relative; 
    background: #fff; border-radius: 20px; box-shadow: 5px 0px 10px rgba(0,0,0,0.1);
}
.hometesti .row:after {
    content: '\f10e'; font-family: 'Font Awesome 6 Free'; font-size: 3em; font-weight: bold; color: #e9bc5b;
    position: absolute; bottom: 0; right: 20px;
}
.hometesti .left { margin-bottom: 15px; }
.hometesti .left .img { width: 115px; height: 115px; border-radius: 50%; border: 1px solid #ccc; overflow: hidden; }
.hometesti .left .info { font-size: 12px; margin-top: 1em; }
.hometesti .left .info b { font-size: 14px; display: block; margin-bottom: 5px; }
.hometesti .left .info p { line-height: 1.3; }
.hometesti .collapsing { display: inline-block; }
/*=================*/
/*====== ... ======*/
.home-buy-wrap { padding-top: 60px; }
.wherebuycard {
	background-color: #fbecce; padding: 60px 30px; position: relative;
	background-image: linear-gradient(to bottom,  #fbecce 0%,#fffbe2 50%,#fffef5 100%); 
}
.wherebuycard .left .content { padding-left: 60px; }
.wherebuycard .right .content { padding-right: 60px; }
/*--*/
.wherebuycard .icon i { font-size: 2.8em; text-shadow: 3px 3px rgba(0,0,0,0.1); position: absolute;  }
.wherebuycard .left .icon i { left: 30px; }
.wherebuycard .right .icon i { right: 30px; }
.wherebuycard .title + .desc { margin-top: 15px; }
.wherebuycard .btn-dot-ripple { max-width: 250px; min-width: inherit; }
/*--*/
.wherebuycard .deco_img { position: absolute; right: 3%; border: 0; bottom: 0; }
.wherebuycard .deco_img img.main { 
	position: relative; max-width: 180px;
    -webkit-transform: rotate(5deg); transform: rotate(5deg);
    -webkit-transform-origin: 0 0; transform-origin: 0 0;
	-webkit-backface-visibility: hidden; backface-visibility: hidden; 
}
.wherebuycard .deco_img img.deco { position: absolute; top: -12%; right: 5%; }


@media only screen and (min-width: 768px) {
	.home-featvideo-wrap .content-wrap { max-width: 350px; }
	/*--*/
	.hometesti .left { max-width: 150px; }
	/*--*/
	.wherebuycard .left { border-right: 1px solid #4d4c51; }
}
@media only screen and (min-width: 992px) {
	.home-trialpack-wrap .detail { padding-top: 80px; }
	.home-trialpack-wrap .titlehead { padding: 0 20px; }
	.home-trialpack-wrap .desc { padding: 0 20px; }
	.home-trialpack-wrap .button { padding: 30px 20px; }
	.trialpackdecoimg { margin-left: -10%; }
}
@media only screen and (min-width: 1200px) {
	.home-trialpack-wrap .titlehead { padding: 0 50px 0 30px; }
	.home-trialpack-wrap .desc { padding: 0 50px 0 30px; }
	.home-trialpack-wrap .button { padding: 30px 50px 30px 30px; }
}
@media only screen and (min-width: 1600px) {
    .home-trialpack-wrap .img { -ms-flex: 0 0 30%; flex: 0 0 30%; max-width: 30%; margin: 0 !important; }
}
@media only screen and (max-width: 991px) {
	.home-trialpack-wrap .titlehead { text-align: center; }
	.home-trialpack-wrap .button { margin-top: 3em; margin-bottom: 5em; text-align: center; }
	.trialpackdecoimg { margin-bottom: -20%; }
}
@media only screen and (max-width: 767px) {
	.homeslider .slick-arrow { font-size: 18px; }
	.homeslider .slick-arrow:before { font-size: 16px; }
	.homeslider .slick-dots { bottom: -25px; }
	.homeslider .slick-dots li button { width: 8px; height: 8px; }
	/*--*/
	.videopop { min-height: 350px; }
	.videopop button { position: relative; top: inherit; left: inherit; -webkit-transform: none; transform: none; }
	/*--*/
	.home-benefit-wrap { padding-top: 75px; }
	.benefit-point { padding: 20px 15px; margin-bottom: 20px; }
	.benefit-point .icon { margin-top: -20px; margin-left: -15px; }
	.benefit-point .icon + .title { margin-top: 10px; }
	.benefit-point .title { font-size: 18px; }
	.benefit-point .title + .desc { margin-top: 5px; }
	/*--*/
	.hometesti { height: 0; padding: 20px 10px; }
	.hometesti.slick-active { height: auto; }
	.testislider .slick-arrow { font-size: 18px; }
	.testislider .slick-arrow:before { font-size: 16px; }
	.testislider .slick-dots { bottom: -25px; }
	.testislider .slick-dots li button { width: 8px; height: 8px; }
	/*--*/
	.wherebuycard { padding: 50px 15px 100px; }
	.wherebuycard .left { border-bottom: 1px solid #4d4c51; padding-bottom: 50px; margin-bottom: 40px; }
	.wherebuycard .left .content { padding-left: 15px; }
	.wherebuycard .right .content { padding-right: 15px; }
	.wherebuycard .icon i { font-size: 2em; }
	.wherebuycard .left .icon i { left: 20px; }
	.wherebuycard .right .icon i { right: 20px; }
	.wherebuycard .deco_img img.main { max-width: 130px; }
}


.svg-defs { position: absolute; width: 0; height: 0; }
/*=====================================================================*/
/* PRODUCT */
/*=====================================================================*/
/*=================*/
/*====== ... ======*/
clipPath#product-banner-clipping { transform: scale(0.00168, 0.00278); }
.product-banner-wrap { position: relative; z-index: 1; margin-bottom: -90px; }
.product-banner-wrap img.main { clip-path: url(#product-banner-clipping); }
.product-banner-wrap img.deco { position: absolute; bottom: -1%; left: 0; }
/*=================*/
/*====== ... ======*/
.nutri-intro-wrap {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5c364+0,fff7a2+29,fffad1+53,e7907d+100 */
	background-color: #fff9c8;
	background-image: linear-gradient(135deg, #f5da64 0%, #fff7a2 29%, #fff9c8 53%, #f8eb76 100%);
	padding-top: 160px; overflow: hidden; 
}
/*--*/
.happykid-wrap { 
    position: relative; 
    background-image: url(../images/deco-nutri-intro-bg.png);
    background-repeat: no-repeat; background-position: bottom center; background-size: cover;
}
.happykid-wrap.mt-5.pt-lg-5:before {
    content: ''; width: 100%; padding-top: 90px;
    position: absolute; bottom: -60px; left: 0;
    /*background-image: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);*/
    background-image: linear-gradient(to bottom, rgba(254, 216, 131, 0) 0%, rgba(254, 216, 131, 0.8) 20%, rgba(254, 239, 144, 1) 21%, rgb(255 255 255 / 76%) 24%, rgb(255 255 255 / 0%) 99%, rgba(255, 255, 255, 0) 100%);
    opacity: 0; opacity: 0.8; 
}
/*--*/
.nutrisscon-wrap {
    background-image: url(../images/deco-hive-bg.png), url(../images/deco-nutrisscon-bg.png);
    background-repeat: no-repeat; background-position: center bottom; background-size: 100%;
}
.nutrisscon { text-align: center; }
.nutrisscon .img img { max-width: 140px; width: 100%; }
.nutrisscon .desc { padding: 15px 0px; text-align: center; }
/*--*/
.progressbar_solid {
    background: #dd4132; position: relative; padding: 4px 15px;
    font-size: 20px; font-weight: bold; color: #fff; line-height: 1.1;
}
.progressbar_solid:before {
    content: ''; width: 100%; height: 7px; background: #f97356;
    position: absolute; bottom: 100%; left: 0;
    -webkit-transform: skewX(-54deg); transform: skewX(-54deg);
    -webkit-transform-origin: 0 100%; transform-origin: 0 100%;
}
.progressbar_solid:after {
    content: ''; width: 9px; height: 100%; background: #ea5944;
    position: absolute; left: 100%; top: 0;
    -webkit-transform: skewY(-36deg); transform: skewY(-36deg);
    -webkit-transform-origin: -1px 0; transform-origin: -1px 0;
}
/*--*/
.nutrispec_img_bar { position: relative; }
.nutrispec_img_bar:before { content: ''; display: table-cell; width: 50%; padding-bottom: calc((42% - 100px)); z-index: -1; }
/*--*/
.nutibarlist-wrap { padding-top: 2%; position: relative; z-index: 1; }
.nutibarlist-wrap ul + p { margin-top: 20px; line-height: 1; }
.nutibarlist-wrap ul { list-style: none; margin: 0; padding: 0; }
.nutibarlist-wrap li { display: table; width: 100%; position: relative; padding-right: calc(8% + 50px); }
.nutibarlist-wrap li + li { margin-top: 15px; }
.nutibarlist-wrap li .progressbar_solid { display: table-cell; }
.nutibarlist-wrap li .percent { position: absolute; top: -2px; padding-left: 20px; font-size: 20px; font-weight: 700;}
/*--*/
.nutrimilkglass-wrap { position: relative; }
.nutrimilkglass-wrap .nutripoint { position: absolute; left: 7%; top: 0; width: 40%; height: 40%; }
.nutrimilkglass-wrap .nutripoint [class*=deco_nutri] { position: absolute; image-rendering: -webkit-optimize-contrast;  }
.nutrimilkglass-wrap .nutripoint .deco_nutri-27key { top: 5%; left: 10%; max-width: 20%; }
.nutrimilkglass-wrap .nutripoint .deco_nutri-dha { top: -30%; left: 75%; max-width: 15%; }
.nutrimilkglass-wrap .nutripoint .deco_nutri-gos { top: -26%; left: 45%; max-width: 18%; }
.nutrimilkglass-wrap .nutripoint .deco_nutri-nucleo { top: 28%; right: 0; max-width: 20%; }
.nutrimilkglass-wrap .remark {
	position: absolute; bottom: 10%; left: 9%; width: 40%; 
	text-align: center; line-height: 1.2;
}
/*--*/
/*=================*/
/*====== ... ======*/
.product-intro-wrap { background: url('../images/product-bg-milkcow.jpg') no-repeat; background-size: 100%; background-position: bottom right; padding-bottom: 40%; }
.product-intro-wrap .left { padding-bottom: 30px; min-height: 23vw; }
.product-intro-wrap .right img { max-width: 160px; width: 100%; }
/*=================*/
/*====== ... ======*/
.info_excess_sucrose-wrap {
	background-color: #fff8b1;
	background-image: url(../images/deco-hive-left.png), linear-gradient(to bottom, #feed79 0%,#fff8b1 68%,#feed79 100%);
	background-repeat: no-repeat; background-position: center left, top center;
	position: relative;
}
.info_excess_sucrose-wrap:before {
    content: ''; width: 100%; padding-top: 25%;
    position: absolute; bottom: 0; left: 0;
    background-image: url(../images/deco-nutri-intro-bg.png);
    background-repeat: no-repeat; background-position: top center; background-size: cover; 
}
/*=================*/
/*====== ... ======*/
.nutrinfotbl_gchgmilk-wrap {
    background-color: #fff8b1;
	background-image: url(../images/deco-milkdrop-bg.png), linear-gradient(to bottom, #feed79 0%,#fff8b1 68%,#fbfdff 100%);
	background-repeat: no-repeat; background-size: 100%, auto; background-position: bottom center, top center;
	padding-bottom: 60%;
}
/*--*/
.nutrinfotable-wrap {
    background-image: url(../images/deco-hive-right.png);
	background-repeat: no-repeat; background-position: top right;
	overflow: hidden;
}
.nutrinfotable-wrap .deco-milkglass { position: absolute; bottom: -2vw; left: calc(100% - 3vw); max-width: 11vw; }
.nutrinfotable-wrap .d-flex { padding-left: min(11.1vw, 150px); }
.nutrinfotable-wrap .deco-pmorimilk { max-width: min(20.1vw, 260px); margin-left: -10px; z-index: 1; }
/*--*/
.guidechgmilk-wrap { /*font-size: 18px;*/ }
.popbg-product-guide .mfp-figure:after { display: none; }
.popbg-product-guide img { background-color: #fff; margin: 40px 0 40px; padding: 0 15px 15px; border-radius: 20px; }
/*--*/
.method-prepare-milk img { max-width: 180px; width: 100%; margin-bottom: 15px; image-rendering: -webkit-optimize-contrast; }


@media only screen and (min-width: 992px) {
	.nutrispec_img_bar { padding-bottom: 155px; display: table; width: 100%; }
	/*--*/
	.nutibarlist-wrap { display: table-cell; width: 45%; }
	/*--*/
	.nutrimilkglass-wrap { position: absolute; bottom: 0; left: 0; width: 100%; }
}
@media only screen and (max-width: 1199px) {
	.product-intro-wrap { padding-top: 60px; }
	.product-intro-wrap .right img { max-width: 120px; }
}
@media only screen and (max-width: 991px) {
	.progressbar_solid { font-size: 17px; }
	.progressbar_solid:before { height: 5px; }
	.progressbar_solid:after { width: 6px; }
	/*--*/
	.nutibarlist-wrap { padding-right: 20px; padding-left: 20px; }
	.nutibarlist-wrap li .percent { font-size: 17px; padding-left: 15px; }
	.nutibarlist-wrap li + li { margin-top: 12px; }
	/*--*/
	.nutrimilkglass-wrap { margin-top: 55px; }
	/*--*/
	/*------------*/
	.nutrispec_img_bar { overflow: hidden; }
	.nutibarlist-wrap ul + p { position: absolute; padding-left: 70%; padding-right: 30px; margin-top: 15%; }
    .nutrimilkglass-wrap { 
        margin-top: 15%; margin-bottom: calc(13% * 1.5); left: -50px; 
        transform: scale(1.5); transform-origin: 0 0; 
    }
    .nutrimilkglass-wrap .remark { transform: scale(0.65); }
}
@media only screen and (max-width: 767px) {
	.nutri-intro-wrap { /*font-size: 16px;*/ padding-top: 135px; }
	.nutrimilkglass-wrap .remark { font-size: 14px; }
	/*--*/
	/*.product-intro-wrap { font-size: 16px; }*/
	/*--*/
	/*.guidechgmilk-wrap { font-size: 16px; }*/
	/*--*/
	/*------------*/
	.nutrisscon .img img { max-width: 100px; }
	.info_excess_sucrose-wrap { background-size: 60%, auto; }
	.nutrinfotable-wrap { background-size: 50%; }
	/*------------*/
	.nutibarlist-wrap ul + p { margin-top: 40px; font-size: 12px; padding-left: 59%; padding-right: 15px; }
	.nutrimilkglass-wrap .remark { bottom: 3%; }
}
@media only screen and (max-width: 575px) {
}
/*@media only screen and (min-width: 481px) and (max-width: 991px) {*/
/*}*/



.topbanner-wrap { 
	background-color: #efe4cf; background-repeat: no-repeat;
    background-image: url(../images/deco-bg1a.png), url(../images/deco-bg1b.png);
    background-position: right -200px bottom 5%, left -200px top -15%;
	text-align: center; 
}
@media only screen and (max-width: 767px) {
	.topbanner-wrap { background-position: right -250px bottom -35%, left -250px top -35%; }
}
/*=====================================================================*/
/* LISTING */
/*=====================================================================*/
.infolisting-banner-wrap { text-align: center; }
/*====================*/
/*====== filter ======*/
.filtercat-wrap { 
	margin-bottom: 2em; padding-top: 10px; padding-bottom: 10px; 
	border-top: 1px solid #eee; border-bottom: 1px solid #eee; 
}
.filtercat-wrap span.text { display: inline-block; vertical-align: middle; margin: 5px 2em 5px 0; }
.filtercat-wrap ul { margin-bottom: 0; padding-left: 0; list-style: none; display: inline-block; vertical-align: middle; }
.filtercat-wrap ul li { display: inline-block; margin: 2px 5px; }
.filtercat-wrap a.btn-border { padding: 0.5em 1em; cursor: pointer; text-transform: none; }
.filtercat-wrap a.btn-border:before { color: #c2c2c2; }

/*========================*/
/*====== BREADCRUMB ======*/
.breadcrumb-wrap ul { 
	font-size: 14px; color: #999; 
	display: inline-block; margin: 0; padding: 0; list-style: none; 
}
.breadcrumb-wrap li { display: inline-block; float: left; }
.breadcrumb-wrap li:not(:last-child):after { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 700; padding: 0 10px; }
.breadcrumb-wrap li a { color: #999; }
.breadcrumb-wrap li a:hover { color: #e30613; }
.breadcrumb-wrap li.active { font-weight: 500;color: #4d4c51; }
/*=================*/
/*====== ... ======*/
.sorting-wrap {
    position: relative; max-width: 200px; width: 100%; padding: 0.8em 20px 0.65em; border: 1px solid #c2c2c2; border-radius: 5px;
    color: transparent;
}
.sorting-wrap select {
	position: absolute; top: 0; left: 0; height: 100%; width: 100%;
	background: none; border: none; padding: 0.8em 20px 0.65em; outline: 0; cursor: pointer;
	-webkit-appearance: none; -moz-appearance: none; appearance: none;
	font-weight: 700; color: #4d4c51;
}
.sorting-wrap i { font-size: 1.3em; color: #f62837; float: right; }
/*=================*/
/*====== ... ======*/
.infolist_row { margin-top: 2em; }
.infolist_col { margin-bottom: 2em; transition: all 0.3s ease-out; }
.infolist_col > a { 
	display: block; background: #f9f9fa; border: 1px solid #ededed; border-radius: 20px; padding: 25px; overflow: hidden; height: 100%; transition: all 0.3s ease-out;
}
/*--*/
.infolist_col .img { position: relative; }
.infolist_col .img img { 
	border-radius: 20px; transition: 0.3s ease-out; 
	-webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.infolist_col .img:before { 
	content: '\f530'; font-family: 'Font Awesome 6 Free'; font-weight: 700;
	display: inline-block; background: #f62837; width: 2em; height: 2em; border-radius: 50%;
	box-shadow: 3px 3px 2px rgba(0,0,0,0.3); z-index: 1;
	font-size: 2em; color: #fff; text-align: center; line-height: 2;
	position: absolute; top: 45%; left: 50%; opacity: 0; visibility: hidden;
	-webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%); 
	transition: all 0.3s ease-out, top 0.5s ease-out;
}
/*--*/
.imghidden .img { overflow: hidden; height: 280px; }
.imghidden .img img { width: 100%; height: 100%; object-fit: cover; }
/*--*/
.infolist_col .desc { position: relative; margin-top: 20px; color: #4d4c51; }
.infolist_col .desc .tag { 
	display: inline-block; margin-top: 5px; margin-bottom: 25px; padding: 0.3em 1em; background: #f62837; border-radius: 100px;
	font-size: 12px; font-weight: 500; color: #fff; text-transform: uppercase;
}
.infolist_col .desc .title { font-size: 18px; font-weight: 500; line-height: 1.2; }
.infolist_col .desc .date { margin-top: 20px; font-size: 12px; color: #8d8a7c; }
/*--*/
.infolist_col > a:hover { box-shadow: 3px 4px 5px rgba(0,0,0,0.1); }
.infolist_col > a:hover .img img { opacity: 0.8; }
.infolist_col > a:hover .img:before { opacity: 1; visibility: visible; top: 50%; }
/*--*/
.infolist_col.feature .img { width: 100%; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }
.infolist_col.feature .desc { width: 100%; -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; }
/*========================*/
/*====== pagination ======*/
.pagination { margin-top: 5em; margin-bottom: 0; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.pagination .page-link { 
	width: 2.5em; height: 2.5em; margin: 0 5px; padding: 0; border: 1px solid transparent; border-radius: 50%; transition: 0.3s ease-out;
	font-size: 14px; font-weight: 500; color: #4d4c51; text-align: center; line-height: 2.5;
}
.pagination .page-link.left,
.pagination .page-link.right { border: 1px solid #f62837; }
.pagination .page-link:hover,
.pagination .active .page-link { color: #fff; background-color: #f62837; }
.pagination .disabled .page-link { color: #ccc; background: none; cursor: auto; pointer-events: none; }
.pagination .disabled .page-link.left,
.pagination .disabled .page-link.right { border: 1px solid #ccc; }
/*=========================*/
/*====== REVIEW LIST ======*/
.joinseller-wrap {
	text-align: center;
	background-color: #fbecce;
	background-image: linear-gradient(to bottom,  #fbecce 0%,#fffbe2 50%,#fffef5 100%); 
}
.joinseller-wrap  .titlehead i { font-size: 6em; margin-bottom: 15px; opacity: 0.2; }
/*=================*/
/*====== ... ======*/


@media only screen and (min-width: 768px) {
	.sorting-wrap { margin-left: auto; }
	/*--*/
}
@media only screen and (min-width: 992px) {
	.infolist_row { margin-left: -20px; margin-right: -20px; }
	.infolist_col { margin-bottom: 40px; padding: 0 20px; }
	.infolist_col.feature { -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; }
	.infolist_col.feature > a { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
	.infolist_col.feature .img { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; padding-right: 15px; }
	.infolist_col.feature .img img { max-width: 380px; width: 100%; }
	.infolist_col.feature .desc { margin-top: 0; padding-left: 15px; }
	.infolist_col.feature .desc .title { font-size: 24px; }
}
@media only screen and (min-width: 1200px) {
	.infolist_col.feature .img img { max-width: 450px; }
}
@media only screen and (max-width: 991px) {
	.infolist_col > a { border-radius: 15px; padding: 20px 15px; }
	.infolist_col .img img { border-radius: 10px; }
}
@media only screen and (max-width: 767px) {
	.sorting-wrap { margin-top: 15px; }
	/*--*/
	.infolist_col .img:before { font-size: 1.5em; }
	.infolist_col .desc { margin-top: 15px; }
	.infolist_col .desc .title { font-size: 16px; }
	.infolist_col .desc .tag { font-size: 11px; margin-bottom: 15px; }
}
@media only screen and (max-width: 480px) {
	.pagination .page-link { font-size: 12px; }
}


/*=====================================================================*/
/* DETAIL */
/*=====================================================================*/
/*=================*/
/*====== ... ======*/
.infodetail-tophead-wrap { 
	padding-top: 50px; padding-bottom: 50px; border-bottom: 1px solid #ebebeb; text-align: center;
}
.infodetail-tophead-wrap .sub { color: #8d8a7c; margin-bottom: 2em; }
.infodetail-tophead-wrap .sub small { 
    vertical-align: middle; line-height: 1; 
    display: inline-block; margin-right: 1px;
}
.infodetail-tophead-wrap .sub a { font-weight: 500; color: #4d4c51; }
.infodetail-tophead-wrap .sub a:hover { color: #e30613; }
.infodetail-tophead-wrap .date { margin-top: 20px; font-size: 12px; color: #8d8a7c; }
/*=================*/
/*====== ... ======*/
.infodetail-desc-wrap { 
	padding: 50px 15px 80px; 
	background-color: #fbecce;
	background-image: linear-gradient(to bottom,  #fbecce 0%,#fffbe2 50%,#fffef5 100%);
}
.infodetaildesc { background: #fff; border-radius: 25px; box-shadow: 10px 10px 0px rgb(0, 0, 0, 0.2); border: 1px solid #ebebeb; padding: 50px 50px; word-break: break-word; }
.infodetaildesc .img { text-align: center; margin-bottom: 30px; }
.infodetaildesc .img img { border-radius: 6px; }
.infodetaildesc .desc img { height: auto !important; }
/*===========================*/
/*====== REVIEW DETAIL ======*/
.review-infodetail .infodetail-tophead-wrap { padding-top: 30px; padding-bottom: 0; border: none; }
.review-infodetail .infodetail-tophead-wrap i { font-size: 6em; margin-bottom: 15px; opacity: 0.2; }
/*--*/
.review-infodetail .infodetaildesc { padding-bottom: 65px; position: relative; }
.review-infodetail .infodetaildesc:after {
    content: '\f10e'; font-family: 'Font Awesome 6 Free'; font-size: 3em; font-weight: bold; color: #e9bc5b;
    position: absolute; bottom: 0; right: 20px;
}
.review-infodetail .left { margin-bottom: 15px; max-width: 400px; }
.review-infodetail .left .img {  }
.review-infodetail .left .info { font-size: 14px; margin-top: 1em; }
.review-infodetail .left .info b { display: block; margin-bottom: 5px; }
.review-infodetail .left .info p { line-height: 1.3; }
/*--*/
.review-infodetail .btn-solid-shadow { min-width: auto; border-radius: 50%; }
/*=================*/
/*====== ... ======*/


@media only screen and (min-width: 992px) {
	.review-infolisting .infolist_col > a { position: relative; }
	.review-infolisting .infolist_col > a:after {
	    content: '\f10e'; font-family: 'Font Awesome 6 Free'; font-size: 30px; font-weight: bold; color: #e9bc5b;
	    position: absolute; bottom: 0; right: 20px;
	}
	.review-infolisting .infolist_col .desc { margin-bottom: 15px; }
}
@media only screen and (max-width: 991px) {
	.infodetail-desc-wrap { padding: 30px 5px 60px; }
	.infodetaildesc { border-radius: 15px; box-shadow: 6px 8px 0px rgb(0, 0, 0, 0.15); padding: 25px 25px; }
}
@media only screen and (max-width: 767px) {
	.infodetail-tophead-wrap { padding-top: 40px; padding-bottom: 40px; }
	.infodetail-tophead-wrap .sub { margin-bottom: 1.5em; }
	/*--*/
	.review-infodetail .left { max-width: 100%; }
}


/*=====================================================================*/
/* CONTACT */
/*=====================================================================*/
#map { height: 350px; }
/*--*/
ul.contact-info { margin-top: 40px; margin-bottom: 0; padding: 0; list-style: none; }
ul.contact-info li { margin-bottom: 2em; position: relative; padding-left: 2.1em; }
ul.contact-info i { position: absolute; left: 0; top: 5px; font-size: 1.4em; }
ul.contact-info p { margin-bottom: 6px; font-size: 14px; }
ul.contact-info b { font-weight: 500; }
ul.contact-info a { color: #4d4c51; text-decoration: underline; }
ul.contact-info a:hover { color: #e30613; }
/*--*/
.contact-wrap .form-wrap { background: #fff; padding: 45px 35px; border: 1px solid #ebebeb; border-radius: 20px; }
.contact-wrap .form-control { background: #f9f9f9; }
/*--*/
.companyinfo-wrap {
	text-align: center;
	background-color: #fbecce;
	background-image: linear-gradient(to bottom,  #fbecce 0%,#fffbe2 50%,#fffef5 100%); 
}


@media only screen and (max-width: 767px) {
	.contact-wrap .form-wrap { padding: 35px 25px; border-radius: 15px; }
}


/*=====================================================================*/
/* STORES */
/*=====================================================================*/
/*=================*/
/*====== AOR ======*/
.aorsearch-wrap { padding-bottom: 20px; }
.aorsearch-wrap input { font-size: 15px; border: 1px dotted #898989; }
.aorsearch-wrap [type="submit"].btn-solid-shadow { margin-top: -8px; }
/*--*/
.aorlist-wrap ol { padding: 0; margin: 0; list-style: none; counter-reset: item; }
.aorlist-wrap ol li { 
	margin-bottom: 15px; counter-increment: item; display: table; 
	margin-bottom: 5px; background: #f3f3f3; padding: 10px 10px; width: 100%; border-radius: 5px;
}
.aorlist-wrap ol li:last-child { margin-bottom: 0; }
.aorlist-wrap ol li:before {
    content: counter(item) ')'; font-size: 0.8em; font-weight: 500; vertical-align: top;
    display: table-cell; width: 7%; padding-right: 10px;
}
/*--*/
.authorizeimg { -webkit-backface-visibility: hidden; backface-visibility: hidden; max-width: 200px; width: 100%; }
/*===========================*/
/*====== LIST OF STORE ======*/
.store-search-wrap { padding-bottom: 20px; }
.store-search-wrap input { font-size: 15px; border: 1px dotted #898989; }
.store-search-wrap [type="submit"].btn-solid-shadow { margin-top: -8px; }
/*--*/
.bh-sl-map { background: url(../js/slick/ajax-loader.gif) no-repeat center right 25%; }
.bh-sl-map.bh-sl-map-open { background: none; }
/*--*/
.liststore-wrap .map { height: 530px; border-radius: 10px; overflow: hidden; }
.liststore-wrap .map-list { height: 530px; overflow-y: auto; overflow-x: hidden; padding: 0px 10px 0px 15px; }
.liststore-wrap .map-list::-webkit-scrollbar { width: 12px; }
.liststore-wrap .map-list::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.2); background-clip: padding-box; border: 3px solid transparent; border-radius: 10px; height: 8%;}
.liststore-wrap .map-list::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.02); background-clip: padding-box; border: 2px solid transparent; border-radius: 10px; }
/*--*/
.liststore-wrap .map-list ul { padding: 0; margin: 0; list-style: none; }
.liststore-wrap .map-list ul li { margin-bottom: 8px; padding: 15px 20px; border-radius: 10px; background: #f3f3f3; }
.liststore-wrap .map-list ul li.list-focus { background: #fbecce; }
/*--*/
.list-content > div:not(:last-child),
.info-window > div:not(:last-child) { margin-bottom: 10px; }
.loc-name { font-weight: 700; word-break: break-word; }
.loc-addr { word-break: break-word; }
.loc-region { font-weight:500; }
.list-content { font-size: 12px; }
.list-content .loc-name { font-size: 14px; }
.info-window { padding: 5px; }
.info-window .loc-name { font-size: 13px; }


@media only screen and (max-width: 991px) {
	.store-search-wrap [type="submit"].btn-solid-shadow { margin-top: 14px; }
	/*--*/
	.bh-sl-map { background-position: center top 30%; }
	.liststore-wrap .map-list { margin-top: 20px; padding: 0px 10px 0px 0px; }
}
@media only screen and (max-width: 767px) {
	/*--*/
	.store-search-wrap input { font-size: 14px; margin-bottom: 5px; }
	/*--*/
	.liststore-wrap .map,
	.liststore-wrap .map-list { height:400px; }
}
@media only screen and (max-width: 575px) {
	.aorsearch-wrap [type="submit"].btn-solid-shadow { margin-top: 14px; }
	.aorsearch-wrap input { font-size: 14px; }
	/*--*/
}



/*=====================================================================*/
/* STORY */
/*=====================================================================*/
/*=================*/
/*====== ... ======*/
.milestone-wrap { 
	background: #f9f9fa; border: 1px solid #ededed; border-radius: 20px; padding: 30px 30px; box-shadow: 3px 4px 5px rgba(0,0,0,0.1);
}
.milestone-wrap ul { margin-bottom: 0; padding: 0; list-style: none; }
/*--*/
ul.milestone_point { display: inline-block; width: 100%; }
ul.milestone_point > li { width: 50%; position: relative; float: right; margin: 0px 1px; }
ul.milestone_point > li .item { display: inline-table; margin-left: 30px; }
ul.milestone_point > li .item:before { 
    content: ''; height: 100%; border-left: 1px solid #dba34a; 
    position: absolute; top: 0; left: 0;
}
/*--*/
ul.milestone_point .year { font-size: 30px; font-weight: 700; font-style: italic; color: #e30614; line-height: 1; position: relative; padding: 5px 0 10px; }
ul.milestone_point .year:before {
    content: '•'; font-style: normal; font-size: 25px;
    position: absolute; top: 6px; right: calc(100% + 22px); z-index: 1;
}
ul.milestone_point .year:after { 
	content: ''; position: absolute; top: 18px; left: -30px; 
	width: 20px; height: 0; border-top: 1px solid #dba34a;
}
/*--*/
ul.milestone_point > li ul li { display: inline-block; max-width: 80%; vertical-align: top; }
ul.milestone_point > li .img img { padding: 15px 0; }
ul.milestone_point > li .desc { font-weight: 500; font-style: italic; word-break: break-word; }
/*--*/
ul.milestone_point > li:first-child .item:before { top: 18px; }
ul.milestone_point > li:last-child .item:before { top: inherit; bottom: calc(100% - 18px); }


@media only screen and (min-width: 768px) {
	ul.milestone_point > li:nth-child(odd) { float: left; text-align: right; }
	ul.milestone_point > li:nth-child(odd) .item { margin-left: 0; margin-right: 30px; }
	ul.milestone_point > li:nth-child(odd) .item:before { left: inherit; right: 1px; }
	ul.milestone_point > li:nth-child(odd) .year:before { right: inherit; left: calc(100% + 22px); }
	ul.milestone_point > li:nth-child(odd) .year:after { left: inherit; right: -28px; }
}
@media only screen and (max-width: 767px) {
	ul.milestone_point > li { width: 100%; padding-bottom: 30px; }
	ul.milestone_point > li ul li { max-width: 100%; }
	ul.milestone_point .year { font-size: 25px; padding: 5px 0 5px; }
}


/*=====================================================================*/
/* STORY BOOK */
/*=====================================================================*/
.storybook-wrap { 
    min-height: 65vh;
    background: #e9d0b7; background-image: url(../images/bg-texture-paper.png);
}
/*=================*/
/*====== ... ======*/
.storybook-wrap .topbar {
    margin-bottom: 0; padding: 19px 30px; border-radius: 10px; position: relative; z-index: 1;
    background-color: #c2aa92;
    background-image: url(../images/bg-texture-wood.jpg);
    background-size: 328px 110px; background-position: center;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.75), inset 0 -1px 4px #4a0808, 0 1px 4px rgba(0, 0, 0, 0.75);
    text-align: center;
    color: #4b2828; text-shadow: 2px 2px rgba(255,255,255,0.7); -webkit-text-stroke-width: 0.5px; 
}
.storybook-wrap .topbar .subtitle { margin-top: 4px; margin-bottom: 4px; letter-spacing: 0.05em; }
.storybook-wrap .topbar .title { margin-bottom: 0; font-size: 35px; }
/*=================*/
/*====== ... ======*/
.story-gallery-wrap .feat:before,
.flipbookturn .page.p1:before {
    content: ''; inset: 0; position: absolute; pointer-events: none;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .118) .65%, hsla(0, 0%, 100%, .2) 1.53%, hsla(0, 0%, 100%, .1) 2.38%, rgba(0, 0, 0, .05) 3.26%, hsla(0, 0%, 100%, .14) 5.68%, hsla(0, 0%, 96%, 0) 6.96%);
}
.flipbookturn .page.last:before {
    content: ''; inset: 0; position: absolute; pointer-events: none;
    background-image: linear-gradient(-90deg, rgba(0, 0, 0, .118) .65%, hsla(0, 0%, 100%, .2) 1.53%, hsla(0, 0%, 100%, .1) 2.38%, rgba(0, 0, 0, .05) 3.26%, hsla(0, 0%, 100%, .14) 5.68%, hsla(0, 0%, 96%, 0) 6.96%);
}
/*--*/
.storybook-wrap .wrapper-wrap {
    background-size: 328px 110px; background-position: center;
    background-image: url(../images/bg-texture-wood.jpg); background-size: contain;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.75), inset 0 -1px 4px #4a0808, 0 1px 4px rgba(0, 0, 0, 0.75);
    position: relative; margin-top: -10px; padding: 30px; border-radius: 0 0 20px 20px; overflow: hidden;
}
.storybook-wrap .wrapper {
    display: flex; justify-content: center; align-items: center; flex-direction: column;
    background-color: #f1e1d1; padding: 40px 30px 20px; border-radius: 0 0 20px 20px;
}
.storybook-wrap .aspect { width: 100%; position: relative; z-index: 1; padding-bottom: 50%; }
.storybook-wrap .aspect-inner {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
}
/*--*/
.flipbookturn {
    width: 100%; height: 100%; border-radius: 20px; overflow: hidden;
    transition: margin-left 0.25s ease-out;
}
.flipbookturn .page { height: 100%; width: 100%; }
.flipbookturn .page img { max-width: 100%; height: 100%; }
.flipbookturn .page .number {
    position: absolute; bottom: 10px; left: 0; right: 0; pointer-events: none;
    font-size: 13px; font-weight: 700; text-align: center; color: rgba(0,0,0,0.6); text-shadow: 1px 1px 3px #ffffff;
}
/*--*/
.storybook-wrap .indicator_open {
    align-self: end; position: absolute;
    font-size: 14px; font-weight: 500;
}
.storybook-wrap .indicator_open img {
    width: 23px; margin-right: 11px; margin-top: -6px;
    transform: rotate(-25deg); transform-origin: top left;
}
.storybook-wrap .indicator_open .text { display: inline-block; line-height: 1.1; }
/*--*/
.storybook-wrap .page-indicator { margin-top: 10px; font-size: 14px; color: #444; text-align: center; }
/*--*/
.storybook-wrap .btn-control {
    font-weight: 700; color: #4b2828; text-align: center; text-transform: uppercase;
    display: inline-block; padding: 16px 20px; border-radius: 15px; background: #eee;
}
/*=================*/
/*====== ... ======*/
/*
 * ** Wooden Toggles - Nicolas Jesenberger
 * ** (https://codepen.io/nicolasjesenberger/pen/mdomqGR)
 */
.storybook-wrap .btn-control-wrap { margin-top: 20px; text-align: center; }
.storybook-wrap .btn-control-wrap .middle { display: inline-flex; align-items: flex-start; column-gap: 13px; }
.storybook-wrap .btn-wood {
    font-weight: 700; color: #4b2828; text-align: center; text-transform: uppercase;
    display: inline-block; padding: 16px 30px; border-radius: 15px;
    background-color: #c2aa92; background-size: contain; background-position: center;
    background-image: url(https://images.pexels.com/photos/301717/pexels-photo-301717.jpeg);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.75), inset 0 -1px 4px #4a0808, 0 1px 4px rgba(0, 0, 0, 0.75);
}
.storybook-wrap .btn-wood:hover { color: #4b2828; }
.storybook-wrap .btn-wood:focus { box-shadow: none; }
.storybook-wrap .btn-wood.btn-prevnext {
    width: 3.5em; height: 3.5em; padding: 0; border-radius: 50%;
    line-height: 3.5;
}

/*=================*/
/*====== ... ======*/
.story-gallery-wrap .feat { position: relative; border-radius: 0 20px 20px 0; overflow: hidden; }
/*--*/
.pswp__button--arrow--left,
.pswp__button--arrow--right { display: block !important; opacity: 1 !important; visibility: visible !important; }
/*=================*/
/*====== ... ======*/
.infolist_row { margin-left: -8px; margin-right: -8px; }
.infolist_col { padding: 0 8px; }


@media screen and (max-width: 768px) {
    body.storybookbody header .button-wrap { background: #fff; }
    body.storybookbody header .btn-border { font-size: 9px; }
    body.storybookbody header .btn-border + .btn-border { margin-left: 2px }
    /*--*/
    .storybook-wrap { padding: 45px 5px 60px; }
    .storybook-wrap .topbar { border-radius: 8px; padding: 14px 24px; text-shadow: 1px 2px rgba(255,255,255,0.7); }
    .storybook-wrap .topbar .subtitle { margin: 0; }
    .storybook-wrap .topbar .title { font-size: 25px; }
    /*--*/
    .storybook-wrap .wrapper-wrap { padding: 25px 14px 17px; border-radius: 0 0 15px 15px; }
    .storybook-wrap .wrapper { padding: 25px; }
    .flipbookturn { border-radius: 0 0 20px 20px; }
    /*--*/
    .storybook-wrap .indicator_open { font-size: 9px; }
    .storybook-wrap .indicator_open img { width: 15px; }
    /*--*/
    .storybook-wrap .btn-wood { padding: 13px 13px; border-radius: 15px; font-size: 12px; }
}


/*=====================================================================*/
/* STATEMENT */
/*=====================================================================*/
/*=================*/
/*====== ... ======*/
.igenuine-wrap { padding: 0; }
.igenuine-wrap .wbox { 
    background: rgba(255, 255, 255, 0.7); margin-top: 20px; padding: 40px 30px 80px 30px;
    border-radius: 20px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
    font-size: 1.5em;
}
.igenuine-wrap .top-wrap {
    background-color: #ead3a9;
    background-image: url(../images/deco-milkdrop-bg.png), linear-gradient(to bottom, #ead3a9 0%, #faf2e7 68%, #ead3a9 100%);
    background-repeat: no-repeat; background-size: 100%, auto; background-position: bottom center, top center;
    padding: 30px 50px; padding-bottom: 14%;
}
.igenuine-wrap .top-wrap .titlehead h1 { -webkit-font-smoothing: none; -moz-osx-font-smoothing: inherit; }
/*--*/
.igenuine-wrap .btm-wrap {
    background-color: #f5e6c9;
    background-image: linear-gradient(to bottom, #f5e6c9 0%, #e8d0a2 100%);
    background-repeat: no-repeat; background-size: 100%, auto; 
    padding: 30px 50px; padding-bottom: 14%;
}
.igenuine-wrap .btm-wrap .wbox { font-size: 1.2em; padding-bottom: 40px; }
.igenuine-wrap .btm-wrap .wbox p { line-height: 1.3; }
.igenuine-wrap .btm-wrap .btn-gradient { text-transform: capitalize; }

@media only screen and (max-width: 767px) {
    .igenuine-wrap .wbox { padding: 30px 20px; }
    .igenuine-wrap .top-wrap { padding: 30px 30px 14%; }
    .igenuine-wrap .btm-wrap { padding: 20px 30px 11%; }
}


    
 