 @font-face { font-family: Avenir; src: url('https://www.pelvik.eu/fonts/avenirltstd-book-webfont.woff'); } 

.flex-container {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
}
.flex-container-row {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex; 
	-webkit-flex-direction: row;
	flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
}
.flex-container-column {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex; 
	-webkit-flex-direction: column;
	flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
}
.flex-item-center {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}
.flex-item-end {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
}
.flex-item-start {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
}

.flex-item-space-between {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
}
.flex-item-space-around {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
}
.flex-container-center {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
}
.flex-item-top {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-align-self: flex-start;
	align-self: flex-start;
	-moz-align-self: flex-start;
	-ms-align-self: flex-start;
}
.flex-item-bottom {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end; 
}
.flex-self-bottom {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-align-self: flex-end;
	align-self: flex-end;
	-moz-align-self: flex-end;
	-ms-align-self: flex-end; 
}
.flex-self-middle {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-align-self: center;
	align-self: center;
	-moz-align-self: center;
	-ms-align-self: center; 
}
.flex-item-middle {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-moz-align-items: center;
	-ms-align-items: center; 
}
.flex-item-baseline {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-align-items: baseline;
	align-items: baseline;
	-moz-align-items: baseline;
	-ms-align-items: baseline; 
}

.flex-wrap {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}
body {
	font-family: 'Avenir', sans-serif !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../img/section3-2bg.png');
	background-position: bottom right;
	min-width: 350px;
}
ul {
	list-style: none;
	margin-bottom: 0px !important;
}
a:hover, a:focus {
	text-decoration: none !important;
}
#fp-nav:before {
	display: block;
	width: 58px;
	height: 58px;
	background-color: red;
}
#fp-nav {
	position: fixed;
    z-index: 100;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.right {
	right: 75px !important;
}
#fp-nav ul li a span {
	width: 15px !important;
	height: 15px !important;
	background-color: #ff5a85 !important;
	margin: -7px 0 0 -7px !important;
}
#fp-nav ul li:hover a span {
	width: 28px !important;
	height: 28px !important;
	margin: -14px 0 0 -14px !important; 
}
#fp-nav ul li a.active span {
	width: 28px !important;
	height: 28px !important;
	background-color: #ff5a85;
	margin: -14px 0 0 -14px !important; 
}
#fp-nav ul li {
	width: 28px !important;
	height: 28px !important;
	margin: 15px 5px !important;
}
#fp-nav ul li .fp-tooltip.right {
	right: 40px !important; 
	padding-top: 5px;
	color: #ff5a85;
	font-weight: 700;
}
.container-arrowss {
	height: 100%;
	position: fixed;
	z-index: 100;
	right: 70px;
}
.arrows {
	height: 400px;
}
.arrows .arrow {
	cursor: pointer;
	height: 48px;
	width: 48px;
	background-color: #ff5a85;
	border-radius: 100%;
}
.arrows .arrow span {
	color: white;
	font-size: 22px;
}
/*------ HEADER ------*/
.header {
	background-color: white;
	position: fixed !important;
	z-index: 101;
	width: 100%;
	-webkit-box-shadow: -1px 10px 90px -22px rgba(0,0,0,0.58);
	-moz-box-shadow: -1px 10px 90px -22px rgba(0,0,0,0.58);
	box-shadow: -1px 10px 90px -22px rgba(0,0,0,0.58);
	min-width: 350px;
}
.header .row-header {
	height: 89px;
	transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
}
.header .row-header.small {
	height: 60px;
}
.header .row-header h1 {
	margin: 0;
}
.header .row-header #logo {
	max-height: 58px;
	transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
}
.header .row-header.small #logo {
	max-height: 39px;
}
.header .header-menu-small {
	display: none;
	text-align: center;
}
.header .header-menu-small ul {
	margin-top: 20px;
}
.header .header-menu-small ul li {
	float: none;
	margin: 0 auto;
}
.header .header-menu-small ul a {
	font-size: 22px;
	color: #ff5a85;
}
.header .header-menu-small .glyphicon {
	font-size: 20px;
	margin-left: 2px;
	margin-top: 2px;
}
.header .header-menu-small  .caret {
	border-top: 10px dashed;
    border-top: 10px solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.header .header-menu ul {
	padding-left: 0px;
}
.header .header-menu li {
	text-decoration: none;
	margin-right: 30px;
	font-size: 16px;
	color: #7c8c89;
	text-transform: uppercase;
}
.header .header-menu li:last-child {
	margin-right: 0px;
}
.header .header-menu li .border-top {
	height: 10px;
	display: block;
	background-color: white;
}
.header .header-menu li:hover .border-top,
.header .header-menu .active .border-top {
	background-color: #ff5a85;
}
.header .header-menu li .text {
	margin-top: 25px;
	transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
} 
.header .header-menu ul.fr li .text {
	margin-top: 15px;
}
#perchePage .header .header-menu ul.fr li .text,
#prodottiPage .header .header-menu ul.fr li .text,
#comePage .header .header-menu ul.fr li .text {
	margin-top: 7px;
}

.header .row-header.small .header-menu li .text {
	margin-top: 13px;
}
.header .row-header.small .header-menu .fr li .text {
	margin-top: 7px;
}
.header .header-menu li:hover {
	color: #ff5a85;
}
.header .header-menu a {
	color: #7c8c89;
}
.header .header-menu a:hover {
	text-decoration: none;
}
/*------ LANDING ------*/

.section {
	padding-top: 89px !important;
}
#section0 {
	padding-top: 6em !important;
	background-image: url('../img/women.png');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 55%;
}
#section1 {
	background-color: white !important;
}
#section2 {
	padding-top: 6em !important;
	background-image: url('../img/item1img.jpg');
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
}
#section3 {
	background-color: transparent !important;
	/*background-image: url('../img/section3bg.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;*/
}
#section4 {
    width: 100%;
    height: 100%;
    z-index: 1;
	background-image: url('../img/section4bg.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.lang-menu {
	padding-top: 5px;
}
.lang-menu li a {
	color: #90a09d;
}
.lang-menu .lang-text {
	background-color: transparent;
	padding: 3px 8px;
	font-size: 16px;
	color: #90a09d;
}
.lang-menu li:hover, .lang-menu li.active {
	background-color: #90a09d; 
}
.lang-menu li:hover , .lang-menu li.active {
	color: white;
}
.header .lang-menu-small {
	display: none;
}
.header .lang-menu-small .dropdown-menu {
	min-width: 50px;
}
.header .lang-menu-small ul {
    margin-top: 20px;
}
.header .lang-menu-small ul li {
	float: none;
	margin: 0 auto;
	padding: 0;
}
.header .lang-menu-small ul a {
	font-size: 22px;
	color: #90a09d;
}
.header .lng-menu-small .glyphicon {
	font-size: 20px;
	margin-left: 2px;
	margin-top: 2px;
}
.header .lang-menu-small  .caret {
	border-top: 10px dashed;
    border-top: 10px solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
/*------ SECTIONS ------*/
#section1 .right-section,
#section2 .left-section,
#section4 .center-section,
#section6 .center-section {
	text-align: center;
}
#section6 .center-section {
	text-align: justify;
}
#section0 .left-section .title {
	font-size: 50px;
	color: #ff5a85;
	font-weight: 700;
	margin-bottom: 0px;
	font-family: 'Zeyada' !important;
}
#section1 .right-section .title,
#section2 .left-section .title,
#section3 .center-section .title,
#section4 .center-section .title,
#section5 .left .title-section .title,
#section6 .center-section .title {
	font-size: 50px;
	color: #ff5a85;
	font-weight: 700;
	margin-bottom: 20px;
	font-family: 'Zeyada' !important;
}
#section0 .left-section .description {
	font-weight: 300;
	font-size: 30px;
	color: #595959;
	margin-bottom: 50px;
}
#section1 .right-section .description,
#section2 .left-section .description,
#section3 .center-section .description,
#section4 .center-section .description {
	font-weight: 300;
	font-size: 24px;
	color: #595959;
	margin-bottom: 50px;
}
#section6 .center-section .description {
	font-weight: 400;
	font-size: 20px;
	color: #595959;
	margin-bottom: 50px;
	line-height: 34px;
}
#section0 .left-section .button,
#section1 .right-section .button,
#section2 .left-section .button,
#section3 .center-section .button,
#section4 .center-section .button,
#section6 .center-section .button {
	margin: 0 auto;
	display: table;
	background-color: #ff5a85;
	font-size: 20px;
	padding: 20px 25px;
	color: white;
	border-radius: 10px;
}
#section3 .center-section .button {
	margin: 0 !important;
}
/*------ SECTION 0 ------*/

/*------ SECTION 1 ------*/
#section1 {
	background-image: url('../img/conivaginali.png');
	background-repeat: no-repeat;
	background-position: left 250px top;
	background-size: 15%;
}
#section1 .row {
	width: 100%;
}
#section1 .right-section .description.mobile-only {
	display: none;
}

/*------ SECTION 2 ------*/
#section2 .left-section .description.mobile-only {
	display: none;
}


/*------ SECTION 3 ------*/
#section3 .center-section .title,
#section3 .center-section .description {
	color: white !important; 
}
#section3 .center-section .description.mobile-only {
	display: none;
}
#section3 .center-section {
	display: block;
	margin: 0 auto;
}
/*------ SECTION 4 ------*/
#section4 .row {
	margin-right: 50px;
}
#section4 .center-section .title {
	color: #ff5a85;
}
#section4 .center-section .description {
	color: #687472 !important;
	font-size: 26px;
	margin-bottom: 25px;
}
#section4 .center-section {
	background-color: rgba(255, 255, 255, 0.9);
	width: 304px;
	height: 304px;
	border-radius: 100%;
	padding-top: 40px;
}
#section4 .center-section .title {
	z-index: 20;
	margin-bottom: 0;
}
#section4 .center-section .title,
#section4 .center-section .description,
#section4 .center-section .button {

}
#section4 .center-section a {
	color: white;
	font-size: 20px;
	text-transform: uppercase;
	background-color: #ff5a85;
	padding: 15px 25px;
	border-radius: 5px;
}
/*------ SECTION 5 ------*/
#section5 {
	background-color: #ffebf0;
}
#section5 .row {
	width: 100%;
}
#section5 h2 {
	font-size: 20px;
	color: white;
	margin-bottom: 25px;
}
#section5 .before-left {
	padding-top: 90px;
}
#section5 .before-left .facebook-box {
	margin-bottom: 20px;
}
#section5 .before-left img {
	margin-bottom: 15px;
}
#section5 .before-left a {
	color: #5a6966;
	font-weight: bold;
} 
#section5 .left .sent-nottification p {
	font-size: 30px;
	font-weight: 700;
	padding: 50px 0;
	color: #5a6966;
}

#section5 .title-section .title {
	margin-right: 15px;
	margin-bottom: 0px !important;
}
#section5 .title-section .description {
	color: #5a6966;
	font-size: 18px;
}
#section5 form {
	width: 80%;
	background-color: white;
	border-radius: 10px;
}
#section5 input {
	padding: 25px;
	color: #5a6966;
	border: none;
	border-bottom: 1px solid #cccccc;
	border-top-left-radius:
}
#section5 input:focus {
	outline: none;
}
#section5 input:first-child {
	border-top-left-radius: 10px;
	border-right: 1px solid #cccccc;
}
#section5 input:last-child {
	border-top-right-radius: 10px;
}
#section5 form #numeContactForm {
	width: 50%;
}
#section5 form #mailContactForm {
	width: 50%;
}
#section5 form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #5a6966;
}
#section5 form input::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #5a6966;
}
#section5 form input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #5a6966;
}
#section5 form input::-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #5a6966;
}
#section5 form textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
   color: #5a6966;
}
#section5 form textarea::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #5a6966;
}
#section5 form textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #5a6966;
}
#section5 form textarea::-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #5a6966;
}
#section5 form textarea {
	border: none;
	padding: 25px;
	width: 100%;
	resize: none;
}
#section5 form textarea:focus {
	outline: none;
}
#section5 form .send-btn {
	border: none;
	background-color: #b1e862;
	padding: 10px 40px;
	color: #5a6966;
	margin-bottom: 15px;
	margin-right: 15px;
	border-radius: 10px;
}
#section5 form .send-btn p {
	margin: 0px;
	font-size: 15px;
	font-weight: bold;
}
#section5 .footer-baseline {
	width: 80%;
	margin-top: 30px;
}
#section5 h3 {
	font-size: 16px;
	color: #5a6966;
}
#section5 h3.medical{
	border-right: 2px solid #5a6966;
	padding-right: 10px;
}
#section5 h3.pelvik2016 {
	padding-left: 10px;
}
#section5 .designby img {
	margin-right: 5px;
}
#section5 .designby a {
	color: #5a6966;
}
#section5 .designby p {
	font-size: 16px;
}
/*------ HEADER SMALLER ------*/

.header.smaller .logo img {
	max-width: 100px;
}
.header.smaller {
	height: 49px;
}
.header.smaller .row-header {
	height: 49px;
}
.header.smaller .header-menu li {
	font-size: 14px;
}
/*------ INSIDE PAGE ------*/
body.inside-page {
	background-image: none;
	background-color: white;
}
.inside-page .header .row-header {
	height: 60px;
}
.inside-page .header .row-header #logo {
	max-height: 38px;
}
.inside-page .header .header-menu li .text {
	margin-top: 15px;
}
.inside-page .header .lang-menu-small ul,
.inside-page .header .header-menu-small ul  {
    margin-top: 10px;
}
.inside-page .arrows {
	height: 200px;
}
.inside-page .header-topp {
	min-height: 400px;
	padding-top: 300px;
	background-color: lightpink;
	background-image: url('../img/section3-2bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	display: block;
}
.inside-page .arrow-up.ascunde,
.inside-page .arrow-down.ascunde {
	visibility: hidden;
	transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
}
.inside-page .content {
	padding-top: 20px;
	padding-bottom: 50px;
}
.inside-page .text-row .image img {
	margin-top: 50px;
	margin-bottom: 50px;
}
.inside-page .content .title-row,
.inside-page .content .text-row {
	margin-bottom: 50px;
	padding-left: 195px;
	padding-right: 195px;
}
.inside-page .farmacia .row {
	padding-left: 195px;
	padding-right: 195px;
}
.inside-page .content .title-row .title h2 {
    font-size: 48px;
    color: #ff5a85;
    font-weight: 700;
    margin-bottom: 0px;
    font-family: 'Zeyada' !important;
    margin-top: 45px;
}
.inside-page .content .text p {
	font-size: 18px;
	color: #404040;
	line-height: 31px;
}
.inside-page .content .text li {
	font-size: 18px;
	color: #404040;
	line-height: 31px;
}
.inside-page .content .text .compra {
	margin: 0 auto;
	color: white;
	font-size: 20px;
	text-transform: uppercase;
	background-color: #ff5a85;
	padding: 15px 25px;
	border-radius: 5px;
	border: 2px solid #ff5a85;
	transition: all 200ms ease-in-out;
}
.inside-page .content .text .compra:hover {
	background-color: white;
	color: #ff5a85;
	border: 2px solid #ff5a85;
}
.inside-page .content .text .bullet {
	display: block;
	min-width: 10px;
	min-height: 10px; 
	border-radius: 100%;
	background-color: #ff5a85;
	margin-right: 15px;
}
.inside-page .content .text .bullet2 {
	display: block;
	min-width: 10px;
	min-height: 10px; 
	border-radius: 100%;
	background-color: #b5d568;
	margin-right: 15px;
}
.inside-page .footer {
	background-color: #ffebf0;
	padding: 30px 0 50px;
}
.inside-page .footer .row {
	width: 100%;
}
.inside-page .footer .left .title {
	font-size: 48px;
    color: #ff5a85;
    font-weight: 700;
    margin-bottom: 0px;
    font-family: 'Zeyada' !important;
    margin-right: 15px;
}
.inside-page .footer .title-section .description {
	color: #5a6966;
	font-size: 18px;
}
.inside-page .footer h2 {
	font-size: 20px;
	color: white;
	margin-bottom: 25px;
}
.inside-page .footer .before-left {
	padding-top: 90px;
}
.inside-page .footer .before-left .facebook-box {
	margin-bottom: 20px;
}
.inside-page .footer .before-left img {
	margin-bottom: 15px;
}
.inside-page .footer .before-left a {
	color: #5a6966;
	font-weight: bold;
} 
.inside-page .footer form {
	width: 80%;
	background-color: white;
	border-radius: 10px;
}
.inside-page .footer input {
	padding: 25px;
	color: #5a6966;
	border: none;
	border-bottom: 1px solid #cccccc;
	border-top-left-radius:
}
.inside-page .footer input:focus {
	outline: none;
}
.inside-page .footer input:first-child {
	border-top-left-radius: 10px;
	border-right: 1px solid #cccccc;
}
.inside-page .footer input:last-child {
	border-top-right-radius: 10px;
}
.inside-page .footer form #numeContactForm {
	width: 50%;
}
.inside-page .footer form #mailContactForm {
	width: 50%;
}
.inside-page .footer form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #5a6966;
}
.inside-page .footer form input::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #5a6966;
}
.inside-page .footer form input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #5a6966;
}
.inside-page .footer form input::-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #5a6966;
}
.inside-page .footer form textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
   color: #5a6966;
}
.inside-page .footer form textarea::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #5a6966;
}
.inside-page .footer form textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #5a6966;
}
.inside-page .footer form textarea::-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #5a6966;
}
.inside-page .footer form textarea {
	border: none;
	padding: 25px;
	width: 100%;
	resize: none;
}
.inside-page .footer form textarea:focus {
	outline: none;
}
.inside-page .footer form .send-btn {
	border: none;
	background-color: #b1e862;
	padding: 10px 40px;
	color: #5a6966;
	margin-bottom: 15px;
	margin-right: 15px;
	border-radius: 10px;
}
.inside-page .footer form .send-btn p {
	margin: 0px;
	font-size: 15px;
	font-weight: bold;
}
.inside-page .footer .footer-baseline {
	margin-top: 30px;
	width: 80%;
}
.inside-page .footer h3 {
	font-size: 16px;
	color: #5a6966;
}
.inside-page .footer h3.medical{
	border-right: 2px solid #5a6966;
	padding-right: 10px;
	padding-left: 10px;
}
.inside-page .footer h3.pelvik2016 {
	padding-left: 10px;
}
.inside-page .footer .designby img {
	margin-right: 5px;
}
.inside-page .footer .designby a {
	color: #5a6966;
}
.inside-page .footer .designby p {
	font-size: 16px;
}
.inside-page .farmacia {
	min-height: 80px;
	background-color: #b1e862;
	color: white;
	text-align: left;
	font-size: 22px;
	font-weight: bold;
	text-transform: uppercase;
}
.inside-page .farmacia p {
	margin-top: 26px;
	margin-right: 20px;
}
.inside-page .farmacia .compra {
	margin-top: 10px;
	color: white;
	font-size: 20px;
	text-transform: uppercase;
	background-color: #ff5a85;
	padding: 15px 25px;
	border-radius: 5px;
	border: 2px solid #ff5a85;
	transition: all 200ms ease-in-out;
}
.inside-page .farmacia .compra:hover {
	background-color: white;
	color: #ff5a85;
	border: 2px solid #ff5a85;
}
.inside-page .farmacia .compra p {
	margin: 0;
}
/*------ comePage ------*/
#comePage .header-topp {
	min-height: 400px;
	padding-top: 300px;
	background-color: lightpink;
	background-image: url(' ../img/ee1.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top -200px;
	display: block;
}
#comePage .text-row .image .mobile-only {
	display: none;
}

/*------ perchePage ------*/
#perchePage .header-topp {
	min-height: 400px;
	padding-top: 300px;
	background-color: lightpink;
	background-image: url(' ../img/topp/ee1.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top -200px left;
	display: block;
	transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
}
#perchePage .content .text-row .image img {
	max-width: 220px;
}

/*------ prodottiPage ------*/
#prodottiPage .header-topp {
	min-height: 400px;
	padding-top: 300px;
	background-color: lightpink;
	background-image: url(' ../img/prodotti-header.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom -150px right;
	display: block;
}
#prodottiPage .prodottiPage-photo {
	padding: 0 70px;
	margin: 30px 0;
}
#prodottiPage .content img {
	margin-bottom: 20px;
}
#prodottiPage .photo-container {
	margin: 50px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #b2b2b2;
}
#prodottiPage .photo-container img {
	border: 2px solid #ff5a85;
	border-radius: 4px;
}
#prodottiPage .photo-container .description {
	font-size: 16px;
	font-style: italic;
}



/*------ MEDIAS ------*/
@media (max-width: 1500px) {
	#prodottiPage .header-topp {
		background-position: center;
		background-size: cover;
	}
}
@media (max-width: 1200px) {
	#section0 {
		background-size: 75%;
	}
	#section1 {
		background-size: 20%;
		background-position: left 150px top;
	}
	#section2 .left-section .description {
		font-size: 18px;
	}
	#section3 {
		background-color: rgba(0, 0, 0, 0.3) !important;
	}
	#section3 .center-section .description {
		color: white !important;
	}
	#comePage .header-topp {
		background-position: bottom -200px left;
	}
}
@media (min-width: 992px) and (max-width: 1400px) {
	.col-lg-12.col-md-12.col-sm-12.col-xs-10.center-section.bula {
		margin-right: 60px;
	}
}
@media (max-width: 991px) {
	.header .header-menu-small {
		display: block;
	}
	.header .header-menu {
		display: none;
	}
	.header .lang-menu-small {
		display: block;
	}
	.header .lang-menu {
		display: none;
	}
	.header .row-header.small {
		height: auto;
	}
	.header .row-header #logo {
		height: auto;
	}
	.header .header-menu li {
		font-size: 12px;
	}
	.section {
		padding-right: 10px;
		padding-left: 10px;
	}
	#section0 {
		background-size: 65%;
		background-position: center bottom;
	}
	#section1 {
		background-size: 25%;
	}
	#section2 {
		background-image: url('../img/item1-2img.jpg');
		background-color: #666666 !important;
	}
	#section2 .container.flex-self-middle {
		margin-top: -50px;
	}
	#section2 .left-section .description {
		color: white;
	}
	#section5 form {
		width: 100%;
	}
	.flex-container-center-small {
		display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
		display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
		display: -ms-flexbox;      /* TWEENER - IE 10 */
		display: -webkit-flex;     /* NEW - Chrome */
		display: flex;
		-webkit-justify-content: center !important;
		justify-content: center !important;
		-moz-justify-content: center !important;
		-ms-justify-content: center !important;
	}
	.inside-page .content .title-row,
	.inside-page .content .text-row,
	.inside-page .farmacia .row {
		padding-left: 95px;
		padding-right: 95px;
	}
	.inside-page .footer .before-left {
		padding-top: 20px;
	}
	#comePage .header-topp {
		background-position: center;	
	}
	#perchePage .header-topp {
		background-position: bottom -100px left;
	}
}
@media (max-width: 991px) {
	#section0 .row {
		margin: 0 auto;
		text-align: center;
	}
	#section0 .container.flex-self-middle {
		margin-top: -150px;
	}
}
@media (max-width: 900px) {
	#section1 {
		background-size: 25%;
		background-position: left 50px top;
	}
}
@media (min-width: 501px) and (max-width: 820px) {
	.container-arrowss {
		z-index: 100;
		right: 30px;
	}
	#fp-nav.right {
		right: 36px !important;
	}
}
@media (max-width: 769px)  {
	#section0 {
		padding-top: 9em !important;
		padding-bottom: 350px !important;
		background-position: center bottom;
		background-size: 70%;
		text-align: center;
	}
}
@media (max-width: 767px)  {
	body {
		background-position: inherit;
	}
	#fp-nav {
		display: none;
	}
	.container-arrowss {
		display: none;
		z-index: 100;
		right: 10px;
	}
	#section1 {
		background-image: url('../img/conivaginali-mobile.png');
		background-position: center;
		background-size: 90%;
	}
	#section4 .row {
		margin-right: 0px;
	}
	#section6 .center-section,
	#section3 .center-section {
		text-align: center;
	}
	#section3 .center-section .button {
		display: inline-block;
		margin: 0 auto;
	}
	.inside-page .content .title-row,
	.inside-page .content .text-row,
	.inside-page .farmacia .row {
		padding-left: 45px;
		padding-right: 45px;
	}
	#section5 .row,
	.inside-page .footer .row {
		width: 120%;
	}
	.inside-page .footer form {
		width: 100%;
	}
	.inside-page .footer .footer-baseline {
		width: 100%;
	}
	#section5 .footer-baseline {
		width: 100%;
	}
	#perchePage .header-topp {
		background-size: cover;
		background-position: bottom left;
	}
	.flex-container-center-tablet {
		display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
		display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
		display: -ms-flexbox;      /* TWEENER - IE 10 */
		display: -webkit-flex;     /* NEW - Chrome */
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
	}

	#prodottiPage .prodottiPage-photo {
		padding: 0 30px;
	}
}
@media (max-width: 750px) {
	.section {
		height: auto !important;
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}
	#section0 .flex-self-middle {
		margin-top: 0px !important;
	}
	#section1 .right-section .description,
	#section2 .left-section .description,
	#section3 .center-section .description {
		display: none;
	}
	#section1 .right-section .description.mobile-only,
	#section2 .left-section .description.mobile-only,
	#section3 .center-section .description.mobile-only {
		display: block;
	}
	body {
		background-position: right bottom;
	}
	#section5 .before-left {
		padding-top: 20px;
	}
	#comePage .text-row .image .normal {
		display: none;
	}
	#comePage .text-row .image .mobile-only {
		display: block;
		margin: 0 auto;
	}
}
@media (max-width: 501px) {
	.br-mobil {
		display: none;
	}
	.inside-page .header .row-header {
		height: auto;
	}
	#section0 {
		background-size: 90%;
	}
	#section4 .center-section {
		width: 304px;
		height: 304px;
		padding-top: 10px;
	}
	.arrows {
		height: 400px;
	}
	.arrows .arrow {
		height: 44px;
		width: 44px;
	}
	.arrows .arrow span {
		font-size: 22px;
	}
	.footer-baseline .designby img {
		height: 15px;
	}
	.footer-baseline h3,
	.footer-baseline p,
	.footer-baseline a {
		font-size: 12px !important;
	}
	.inside-page .content .title-row,
	.inside-page .content .text-row,
	.inside-page .farmacia .row {
		padding-left: 0px;
		padding-right: 0px;
	}
	.inside-page .footer {
		text-align: center;
	}
}
@media (max-width: 400px) {
	.header .row-header {
		height: 102px;
	}
	#section2 {
		background-size: cover;
	}
}
@media (max-width: 350px) {
	body{
		background-image: none;
		background-color: #7CC377;
	}
}

#contactForm.ng-dirty.ng-invalid .send-btn,
#contactForm.ng-submitted.ng-invalid .send-btn {
	background-color: red;
	color: white;
}

#contactForm.ng-dirty.ng-invalid .forinvalid,
#contactForm.ng-submitted.ng-invalid .forinvalid {
	display: block !important;
}

#contactForm.ng-dirty.ng-invalid .forvalid,
#contactForm.ng-submitted.ng-invalid .forvalid {
	display: none;
}
