@charset "utf-8";
/**--------------------------------------------------------
 * CSS Information
 * File Name	:  style.css
 * Theme Name   :  Eisai Singapore
 * Author       :  Elly & Shashikant
 * Description  :  April 2021
 -----------------------------------------------------------*/
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-Thin.woff') format('woff'),
		 url('fonts/Poppins-Thin.woff2') format('woff2');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-ThinItalic.woff') format('woff'),
		 url('fonts/Poppins-ThinItalic.woff2') format('woff2');
	font-weight: 100;
	font-style: italic;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-Light.woff') format('woff'),
		 url('fonts/Poppins-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-LightItalic.woff') format('woff'),
		 url('fonts/Poppins-LightItalic.woff2') format('woff2');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
	}

@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-Regular.woff') format('woff'),
         url('fonts/Poppins-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-Italic.woff') format('woff'),
		 url('fonts/Poppins-Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
	}
	
@font-face {
  	font-family: 'Poppins';
  	src: url('fonts/Poppins-Medium.woff') format('woff'),
		 url('fonts/Poppins-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
  	font-family: 'Poppins';
  	src: url('fonts/Poppins-MediumItalic.woff') format('woff'),
		 url('fonts/Poppins-MediumItalic.woff2') format('woff2');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
	}

@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-SemiBold.woff') format('woff'),
		 url('fonts/Poppins-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-SemiBoldItalic.woff') format('woff'),
         url('fonts/Poppins-SemiBoldItalic.woff2') format('woff2');
	font-weight: 600;
	font-style: italic;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-Bold.woff') format('woff'),
         url('fonts/Poppins-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-BoldItalic.woff') format('woff'),
		 url('fonts/Poppins-BoldItalic.woff2') format('woff2');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
	}

@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-ExtraBold.woff') format('woff'),
		 url('fonts/Poppins-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-ExtraBoldItalic.woff') format('woff'),
         url('fonts/Poppins-ExtraBoldItalic.woff2') format('woff2');
	font-weight: 800;
	font-style: italic;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-Black.woff') format('woff'),
         url('fonts/Poppins-Black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
	font-family: 'Poppins';
  	src: url('fonts/Poppins-BlackItalic.woff') format('woff'),
		 url('fonts/Poppins-BlackItalic.woff2') format('woff2');
	font-weight: 900;
	font-style: italic;
	font-display: swap;
	}
		
/* Global Styles */

*, *:after, *:before {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}

html {
    height: 100%;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
	}
	
html, body {
	height: 100%;
	}
	
body {
	font-family: Poppins, Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #231f20;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	background: #ffffff url(../images/ajax-loader.gif) center center no-repeat;
	overflow-x: hidden;
	}
	
::selection {
	background: #666666; /* Safari */
	color: #fff;
	}
	
::-moz-selection {
	background: #666666; /* Firefox */
	color: #fff;
	}
		
img {
    width: auto\9;
  	/*height: auto;*/
  	max-width: 100%;
  	vertical-align: middle;
  	-ms-interpolation-mode: bicubic;
	}
	
a, a:focus, a:hover {
	color: #d50080;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
	}
	
a:hover {
	color: #231f20;
	outline: none;
	text-decoration: none;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
	}

:focus, ::-moz-focus-inner {
	border: none;
	outline: none !important;
	}

fieldset, a img {
	border: none;
	}

ol, ul {
	margin: 0px auto;
	padding-left: 15px;
    list-style-position: outside;
    /*list-style-type: none;*/
	}
	
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
	}
	
/* ClearFix */
.clear {
	clear: both;
	height: 0px;
	overflow: hidden;
	}

.container:after {
	content: " ";
	clear: both;
	display: block;
	}
	
.clearfix:after {
    content: ".";
    height: 0px;
    clear: both;
    display: block;
    visibility: hidden;
	}
	
.clearfix {
	display: inline-table;
	}

/* Hides from IE-mac \*/
.clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
	
/* wrapper */
	
#wrapper {
    position: relative;
    height: auto !important;
    min-height: 100%;
    height: 100%;
    width: 100%;
	display: block;
	margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
	background: #ffffff;
	}
	
body, #wrapper, .footer-wrapper {
	opacity: 0;
	}
	
.container, .header-container {
	position: relative;
	width: 100%;
	max-width: 1460px;
	padding: 0px 30px;
	}
	
.header-container {
	margin: 0px auto;
	}

/* Header Styles */

#pageHeaderWrapper {
	position: absolute;
    left: 0px;
    top: 0px;
	width: 100%;
	z-index: 100;
	display: block;
	margin: 0px auto;
	}

.nobanner #pageHeaderWrapper {
	position: relative;
    left: auto;
    top: auto;
	}

#pageHeader {
	position: relative;
	width: 100%;
	float: left;
	z-index: 101;
	display: block;
	margin: 0px auto;
	padding: 0px 0px;
	-webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
	-ms-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
	}

.is-sticky #pageHeader {
    left: 0px;
	background: #ffffff;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
	}

.headerTop {
	position: relative;
	z-index: 1002;
	width: 100%;
	float: left;
	display: block;
	margin: 0px auto;
	padding: 40px 0px;
	-webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
	-ms-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
	}

.is-sticky .headerTop {
    padding: 0px;
	}
	
/* Logo */
	
.logo {
	position: relative;
	display: block;
	float: left;
	width: 143px;
	height: 86px;
	z-index: 1001;
	overflow: hidden;
	padding: 0px 0px 0px;
	margin: 15px auto 15px;
    -webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
	-ms-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
	}

.is-sticky .logo {
	width: 83px;
	height: 50px;
	}

.logo a {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	overflow: hidden;
	}

.logo img {
	position: relative;
	display: block;
	height: auto;
	max-width: 100%;
	}
	
/* Top Right Header */
	
.topRightContainer {
	position: relative;
	float: right;
	display: block;
	margin: 0px auto;
	}

/* Nav */
	
.nav-wrapper {
    font-family: Poppins;
	position: relative;
	display: block;
	float: left;
	margin: 38px auto;
    -webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
	-ms-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
	}

.is-sticky .nav-wrapper {
    margin: 15px auto;
	}
	
.nav-container {
	position: relative;
	display: block;
	}
	
.nav {
	position: relative;
	width: 100%;
	display: block;
	margin: 0px auto;
	text-align: center;
	}
	
.nav ul {
	position: relative;
	padding: 0;
	width: 100%;
	margin: 0 auto;
	display: block;
    text-transform: none;
	list-style-type: none;
	}
	
.nav>ul>li {
	position: relative;
	display: block;
	float: left;
	margin: 0px 25px 0px;
	}
	
.nav>ul>li:last-child {
    margin-right: 0px;
	}
	
.nav>ul>li>a {
	position: relative;
	display: block;
	color: #231f20;
    height: 50px;
	font-size: 20px;
    font-weight: 500;
    overflow: hidden;
	line-height: 20px;
	text-align: center;
	padding: 5px 0px 5px;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
	}

.nav>ul>li>a small,
.mean-container .mean-nav ul li a small {
	position: relative;
	display: block;
	font-size: 12px;
	line-height: 20px;
	}

.mean-container .mean-nav ul li a small {
	font-size: 10px;
	line-height: 16px;
	}
	
/*.nav>ul>li.menu-item-has-children>a {
	padding-right: 40px;
	}*/

.nav>ul>li span {
	position: relative;
	display: block;
	height: 100%;
	z-index: 2;
	}

/*.nav li.menu-item-has-children > a:after {
    font-family: 'Font Awesome 5 Free';
	position: absolute;
	content: "\f107";
	font-size: 12px;
	right: 25px;
	top: 50%;
	height: 14px;
	font-weight: 900;
	margin-top: -7px;
	line-height: 14px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	}*/

/*.nav-wrapper .nav>ul>li>a:before {
	position: absolute;
	display: block;
	bottom: 0px;
	right: 50%;
	left: 50%;
	width: 0px;
	content: '';
	height: 100%;
	overflow: hidden;
	background: #d50080;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
	}
	
.nav-wrapper .nav>ul>li:hover>a:before, .nav-wrapper .nav>ul>li.selected>a:before {
	left: 0px;
	right: 0px;
	width: 100%;
	}*/

.nav>ul>li:hover>a, .nav>ul>li.selected>a {
	color: #d50080;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
	}

.nav>ul ul, .nav>ul ul ul {
	position: absolute;
	font-size: 15px;
	left: 0%;
	top: 100%;
	opacity: 0;
	width: 100%;
	min-width: 220px;
	text-align: left;
	visibility: hidden;
	background: #ffffff;
    text-transform: none;
	margin: 30px 0px 0px 0px;
	box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.1);
	transition: all 0.4s ease-in;
	-moz-transition: all 0.4s ease-in;
	-webkit-transition: all 0.4s ease-in;
	}
	
.nav>ul ul ul {
	left: 100%;
	top: auto;
	margin: 0px;
	padding: 0px;
	}
	
.nav>ul>li:hover>ul, .nav>ul ul>li:hover>ul {
	opacity: 1;
	top: auto;
	margin-top: 0px;
	padding: 0px 0px;
	visibility: visible;
	}
	
.nav>ul ul>li:hover>ul {
	margin-top: -50px;
	}
	
.nav>ul ul a, .nav>ul ul ul a {
	position: relative;
	display: block;
	color: #231f20;
	line-height: 20px;
	padding: 15px 15px 15px;
	}
	
/*.nav>ul>li li.menu-item-has-children>a {
	padding-right: 35px;
	}

.nav>ul>li li.menu-item-has-children > a:after {
	right: 15px;
	}*/

.nav>ul ul li:last-child>a {
	}
	
.nav>ul ul li:first-child a {
	}
	
.nav>ul ul li:last-child>a:before {
	display: none;
	}
	
.nav>ul ul li:hover>a, .nav>ul ul li.selected>a, .nav>ul ul ul li:hover>a, .nav>ul ul ul li.selected>a {
	color: #ffffff;
	background: #d50080;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	}
	
.nav>ul ul li.selected>a, .nav>ul ul ul li.selected>a {
	}
	
/* Banner Styles */	

.bannerWrapper {
	position: relative;
	display: block;
	width: 100%;
	z-index: 2;
	height: 100%;
	margin: 0px auto 0px;
	}

.bannerWrapper:after {
	position: absolute;
	display: block;
    bottom: -102px;
    left: 5%;
    content: '';
	width: 229px;
    height: 202px;
    overflow: hidden;
	margin: 0px auto 0px;
    background: url("../images/Group-1639.png") center center no-repeat;
	}
	
.banner {
	position: relative;
	display: block;
	z-index: 0;
    min-width: 100%;
	margin: 0px -1px;
	}
	
.homeBannerSlider {
	position: relative;
	display: block;
	width: 100%;
	margin: 0px auto;
	}
	
[data-animation-in] {
	opacity: 0;
	}
	
.banner-slide {
	position: relative;
	display: block;
	width: 100%;
	padding: 0px;
	margin: 0px auto;
	}
	
.banner-slide figure {
	position: relative;
	display: block;
	width: 100%;
	z-index: 1;
	padding: 0px;
	margin: 0px auto;
	}
	
.banner-slide figure img {
	width: 100% !important;
	height: auto;
	}
	
.bg-img {
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	max-height: none;
	background-size: cover;
	background-position: center center;
	}

.bg-img img {
	display: none !important;
	}

.banner_caption {
    position: absolute;
	z-index: 7;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	color: #231f20;
	display: block;
	margin: 0px auto;
	-moz-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	}
	
.banner_caption .captionWrapper {
	position: relative;
	display: table;
	height: 100%;
	width: 100%;
	margin: 0px auto;
    max-width: 1460px;
    padding: 0px 30px;
	}
	
.banner_caption .captionContainer {
    position: relative;
	color: #231f20;
	display: table-cell;
	vertical-align: middle;
	}
	
.banner_caption .captionContainerInner {
	font-family: Poppins;
	position: relative;
	display: block;
	margin: 0px;
	width: 100%;
	max-width: 670px;
    font-weight: 400;
	padding: 0px 0px 0px;
	}

.banner_caption .captionContainer .bannerHeading1 {
	font-family: Poppins;
	font-size: 22px;
	color: #231f20;
	line-height: 1.1;
	font-weight: 400;
	padding-bottom: 10px;
	text-transform: none;
    letter-spacing: -0.44px;
	}

.banner_caption .captionContainer .bannerHeading1:after {
    position: relative;
    content: '';
    width: 52px;
    height: 5px;
    overflow: hidden;
    border-radius: 3px;
    vertical-align: top;
    display: inline-block;
    margin: 10px auto 10px 15px;
    background: url("../images/line-img1.png") center center no-repeat;
    background-size: 100% auto;
	}

.banner_caption .captionContainer .bannerHeading2 {
	font-family: Poppins;
	font-size: 68px;
	color: #231f20;
	line-height: 1.1;
	font-weight: 700;
    font-style: italic;
	padding-bottom: 0px;
	text-transform: none;
	}
	
.banner_caption .captionContainer p {
	}

/* Home Banner Dots */

.homeBannerSlider .slick-dots {
    width: 100%;
	left: 0%;
	bottom: 30px;
	margin: 0px auto;
    text-align: center;
	}
	
/* Container Style */
	
.pt0 { padding-top: 0px !important; }
.pt10 { padding-top: 10px !important; }
.pt15 { padding-top: 15px !important; }
.pt20 { padding-top: 20px !important; }
.pt30 { padding-top: 30px !important; }
.pt40 { padding-top: 40px !important; }
.pt50 { padding-top: 50px !important; }
.pt60 { padding-top: 60px !important; }
.pt100 { padding-top: 100px !important; }

.pb0 { padding-bottom: 0px !important; }
.pb10 { padding-bottom: 10px !important; }
.pb15 { padding-bottom: 15px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb100 { padding-bottom: 100px !important; }

.mt0 { margin-top: 0 !important; }
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt100 { margin-top: 100px !important; }

.mb0 { margin-bottom: 0 !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb100 { margin-bottom: 100px !important; }

.mg5 { margin: 5px !important; }
.p15 { padding: 15px !important; }
.ml15 { margin-left: 15px !important; }
.mr15 { margin-right: 15px !important; }
.ml20 { margin-left: 20px !important; }
.mr20 { margin-right: 20px !important; }

/* Main Content Wrapper */

.main-content-wrapper {
	position: relative;
    width: 100%;
    z-index: 3;
	margin: 0px auto;
	padding: 0px 0px;
    max-width: 1920px;
	}

/* Intro Section */

.intro-container {
	position: relative;
	display: block;
    width: 100%;
    z-index: 1;
	margin: 0px auto;
	padding: 100px 0px;
    }

.intro-container:after {
	position: absolute;
	display: block;
    right: -120px;
    z-index: -1;
    top: 50%;
    content: '';
	width: 368px;
    height: 871px;
    overflow: hidden;
	margin: -435px auto 0px;
    background: url("../images/shape1.png") center center no-repeat;
	}

.separator-line {
	position: relative;
	display: block;
    width: 52px;
    height: 5px;
    overflow: hidden;
	padding: 0px 0px;
	margin: 30px auto;
    border-radius: 3px;
    background: url("../images/line-img1.png") center center no-repeat;
    background-size: 52px 5px;
    }

.intro-container .separator-line {
	margin: 30px auto 60px;
    }

.intro-img-container {
    order: 1;
	}

.intro-text-container {
    order: 2;
	}

.mission-and-objective-row {
    margin-top: 100px;
	}

.mission-and-objective-row .intro-text-container {
    order: 1;
	}

.mission-and-objective-row .intro-img-container {
    order: 2;
	}
	
.intro-img-box, .intro-img-box figure, .intro-img-box figure img {
	position: relative;
	width: 100%;
	margin: 0px auto;
	}

.intro-img-box figure {
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
	}

.intro-img-box:before, .intro-img-box:after {
	position: absolute;
	display: block;
    z-index: -1;
    content: '';
    width: 148px;
    height: 91px;
    overflow: hidden;
	}

.intro-img-box:before {
    right: -42px;
    top: -22px;
    background: #ffe4f4;
    border-radius: 20px;
	}

.mission-and-objective-row .intro-img-box:before {
    opacity: 0.5;
    z-index: 2;
    right: auto;
    left: -42px;
    top: -22px;
    background: #008cb8;
    border-radius: 20px;
	}

.intro-img-box:after {
    opacity: 0.5;
    z-index: 2;
    left: -42px;
    bottom: -22px;
    background: #008cb8;
    border-radius: 20px;
	}

.mission-and-objective-row .intro-img-box:after {
    left: auto;
    opacity: 1;
    z-index: -1;
    right: -42px;
    bottom: -22px;
    background: #ffe4f4;
    border-radius: 20px;
	}
	
.intro-content {
	position: relative;
	display: block;
	width: 100%;
    padding: 0px 0px 0px 40px;
	}

.mission-and-objective-row .intro-content {
    padding: 0px 40px 0px 0px;
	}

hr {
	position: relative;
	display: block;
    width: 100%;
	margin: 30px auto;
    border-top: 1px solid #acacac;
    }

/* Element Text With Icon */

.element-text-row {
    position: relative;
    display: table;
    width: 100%;
    padding: 0px;
    margin: 0px auto 20px;
	}

.element-img-col {
    width: 73px;
    position: relative;
    display: table-cell;
    vertical-align: top;
	}

.element-img {
    position: relative;
    display: block;
    width: 73px;
	}

.element-img img {
	position: relative;
	display: block;
	height: auto;
	padding: 0px;
	max-width: 100%;
	margin: 0px auto;
	}

.element-text-col {
    text-align: left;
    position: relative;
    padding-left: 20px;
    display: table-cell;
    vertical-align: top;
	}

/* Philosophy Section */

.philosophy-container {
	position: relative;
	display: block;
    width: 100%;
    z-index: 2;
	margin: 0px auto;
    text-align: center;
	padding: 0px 0px 0px;
    }

.philosophy-banner, .philosophy-banner img {
	position: relative;
	width: 100%;
    padding: 0px;
	margin: 0px auto;
	}

.philosophy-banner {
	margin: 0px auto -15%;
	}

.philosophy-text-box {
    position: relative;
    z-index: 2;
    color: #ffffff;
    border-radius: 40px;
    background: #008cb8;
    margin: 0px 55px 0px;
    padding: 60px 60px 40px;
	}

.philosophy-text-box:before {
    position: absolute;
    content: '';
    right: 20px;
    z-index: -1;
    top: 20px;
    left: 20px;
    bottom: 20px;
    overflow: hidden;
    border-radius: 40px;
    border: 1px dashed #ffffff;
	}

.philosophy-text-box:after {
	position: absolute;
	display: block;
    right: -115px;
    bottom: -102px;
    content: '';
	width: 229px;
    height: 202px;
    overflow: hidden;
	margin: 0px auto 0px;
    background: url("../images/Group-1639.png") center center no-repeat;
	}

.philosophy-text-box h4 {
    color: #ffffff;
	}

/* Prodcuts Section */

.products-container {
	position: relative;
	display: block;
    width: 100%;
    z-index: 1;
	margin: 0px auto;
	padding: 100px 0px 100px;
    }

.products-container:before {
	position: absolute;
	display: block;
    left: -120px;
    z-index: -1;
    top: 0%;
    content: '';
	width: 368px;
    height: 871px;
    overflow: hidden;
	margin: -235px auto 0px;
    background: url("../images/shape2.png") center center no-repeat;
	}

.products-container:after {
	position: absolute;
	display: block;
    right: -238px;
    z-index: -1;
    bottom: 0%;
    content: '';
	width: 368px;
    height: 871px;
    overflow: hidden;
	margin: 0px auto 0px;
    background: url("../images/shape3.png") center center no-repeat;
	}

/* Product Slider */

.products-slider {
	position: relative;
	display: block;
	padding: 0px 0px;
	margin: 0px -15px 50px;
	}

.products-slider:last-child {
    margin-bottom: 0px;
    }

.product-item {
	position: relative;
	display: flex;
	float: left;
	margin: 0px;
	width: 25%;
	align-self: stretch;
	padding: 0px 15px 0px;
	}

.product-item-block, .product-item-block a {
	position: relative;
    display: block;
	width: 100%;
    height: 100%;
	padding: 0px;
	color: #231f20;
    overflow: hidden;
	}

.product-item-block a:hover {
	color: #231f20;
    }
	
.productPhotoContainer {
	position: relative;
	display: block;
	height: 0px;
	overflow: hidden;
    border-radius: 15px;
    background: #ffffff;
	padding-bottom: 70%;
	}
	
.productPhotoContainer figure {
	position: absolute;
	overflow: hidden;
	padding: 0px;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	display: block;
	text-align: center;
	margin: 0px auto !important;
	}

.productPhotoContainer figure:before {
	position: relative;
	content: '';
	clear: both;
	height: 100%;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	}
	
.productPhotoContainer figure img {
	position: relative;
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	vertical-align: middle;
	}
	
.product-item .product-description-box {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px auto;
	overflow: hidden;
    text-align: center;
	padding: 20px 0px 0px;
	}

.product-indication, .product-name, .product-contents {
    font-family: Poppins;
	position: relative;
	display: block;
	width: 100%;
	padding: 0px;
	color: #231f20;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	}

.product-indication {
	color: #008cb8;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
	}

.product-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
	}

.products-slider .slick-prev {
    left: -60px;
	}

.products-slider .slick-next {
    right: -60px;
	}

/* Promo Popup */
.fancybox-skin, .fancybox-outer, .fancybox-inner {
    border-radius: 40px;
    background: #008cb8 !important;
    }

#promoPopup {
    position: relative;
    display: none;
    width: 970px;
    margin: 0;
    z-index: 1;
    padding: 0px;
	overflow: hidden;
    border-radius: 40px;
	background: #008cb8 !important;
	}

#promoPopup:before {
    position: absolute;
    content: '';
    right: 20px;
    z-index: -1;
    top: 20px;
    left: 20px;
    bottom: 20px;
    overflow: hidden;
    border-radius: 40px;
    border: 1px dashed #ffffff;
	}

.promoContainer {
	position: relative;
	display: block;
	color: #ffffff;
	padding: 100px;
	text-align: center;
	}
	
.promoContainer h4 {
	color: #ffffff;
	}
	
.promoContainer p {
	text-align: center;
	}

.promoContainer .link-btn2 a {
    color: #d50080;
    background: #ffffff;
    }

.promoContainer .link-btn2 a:hover {
    color: #231f20;
    background: #ffffff;
    }

/* Main Section */

.main-container {
	position: relative;
	display: block;
    width: 100%;
    z-index: 1;
	margin: 0px auto;
	padding: 30px 0px;
    }

/* Content Style */

.pageTitle {
	position: relative;
	display: block;
    width: 100%;
	margin: 0px auto 0px;
	padding: 0px 0px 10px;
	}

.pageTitle h1, .pageTitle h2, .pageTitle h3, .pageTitle h4, .pageTitle h5, .pageTitle h6 {
	padding-bottom: 0px;
	}
	
.pageTitle h1, .pageTitle h2 {
    color: #d50080;
	font-size: 60px;
	line-height: 1.1;
	}
	
.uppercase {
	text-transform: uppercase !important;
	}
	
.NoUppercase {
	text-transform: none !important;
	}
	
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: Poppins, "sans-serif";
	position: relative;
	font-size: 45px;
	color: #231f20;
	line-height: 1.4;
	font-weight: 700;
	margin: 0px 0px 0px;
	text-transform: none;
	padding: 0px 0px 20px;
	}

.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #008cb8;
	}
	
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong, .h1 strong, .h2 strong, .h3 strong, .h4 strong, .h5 strong, .h6 strong {
	font-weight: 700;
	}
	
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .h1 span, .h2 span, .h3 span, .h4 span, .h5 span, .h6 span {
	font-weight: 400;
	}
	
h2, .h2 {
	font-size: 40px;
	}
	
h3, .h3 {
	font-size: 35px;
	}
	
h4, .h4 {
	font-size: 30px;
	}
	
h5, .h5 {
	font-size: 25px;
	}

h6, .h6 {
	font-size: 20px;
	}

p {
    margin: 0 0 25px;
	line-height: 1.6;
	/*text-align: justify;*/
	}

ul.ul-listing, ol.ol-listing {
	margin: 0px 0px 20px;
	display: block;
	padding: 0px;
	width: 100%;
	text-align: left;
	list-style-position: inside;
	}
	
ul.ul-listing.text-center, ol.ol-listing.text-center {
	text-align: center;
	}
	
ul.ul-listing li {
	position: relative;
	line-height: 26px;
    margin-bottom: 10px;
	list-style-type: none;
	padding: 2px 0px 2px 20px;
	}
	
ul.ul-listing li:before {
	position: absolute;
	content: '';
	left: auto;
	top: 10px;
	width: 7px;
	height: 7px;
	overflow: hidden;
	margin-left: -20px;
    border-radius: 100%;
	background: #008cb8 url(../images/bullet.png) center center no-repeat;
	}
	
ul.ul-listing ul {
	margin: 10px 0px 0px;
	}
	
ol.ol-listing {
	padding: 0px 0px 0px 15px;
	list-style-position: outside;
	}
	
ol.ol-listing li {
	line-height: 26px;
    margin-bottom: 10px;
	list-style-type: decimal;
	padding: 2px 0px 2px 0px;
	}
	
ol.ol-listing li ul.ul-listing li {
	list-style-type: none;
	}
	
.imgLeft {
	position: relative;
	float: left;
	width: auto;
    height: auto;
	max-width: 100%;
	clear: left !important;
	margin: 5px 40px 40px 0px;
	}
	
.imgRight {
	position: relative;
	float: right;
	width: auto;
    height: auto;
	max-width: 100%;
	clear: right !important;
	margin: 5px 0px 40px 40px;
	}
	
/* Slick Slider */

.slick-dotted.slick-slider {
	margin-bottom: 0px;
	}
	
.slick-slide img {
	display: inline-block;
	}
	
/* Slick Slider Arrow */

.slick-prev, .slick-next {
	background: none;
	z-index: 5;
	width: 51px;
	height: 51px;
	font-size: 0px;
	-webkit-transition: all 0s ease-out;
    -moz-transition: all 0s ease-out;
    -o-transition: all 0s ease-out;
    -ms-transition: all 0s ease-out;
    transition: all 0s ease-out;
	}
	
.slick-prev:before, .slick-next:before {
	display: none;
	}
	
.slider-nav {
	margin-left: 0px;
	margin-right: 0px;
	}
	
.slick-prev {
	left: 0px;
	padding: 0px 0px 0px 51px;
	background: url(../images/slick-nav.png) left top no-repeat;
	}
	
.slick-next {
	right: 0px;
	padding: 0px 51px 0px 0px;
	background: url(../images/slick-nav.png) right top no-repeat;
	}
	
.slick-prev:hover,
.slick-prev:focus {
	background: url(../images/slick-nav.png) left bottom no-repeat;
	-webkit-transition: all 0s ease-out;
    -moz-transition: all 0s ease-out;
    -o-transition: all 0s ease-out;
    -ms-transition: all 0s ease-out;
    transition: all 0s ease-out;
	}

.slick-next:hover,
.slick-next:focus {
	background: url(../images/slick-nav.png) right bottom no-repeat;
	-webkit-transition: all 0s ease-out;
    -moz-transition: all 0s ease-out;
    -o-transition: all 0s ease-out;
    -ms-transition: all 0s ease-out;
    transition: all 0s ease-out;
	}

/* Slick Slider Dots */

.slick-dots {
    width: 100%;
	z-index: 5;
	left: 0%;
	bottom: 0px;
	font-size: 0px;
	margin: 0px auto 0px;
	}
	
.slick-dots li {
    position: relative;
	border: none;
	width: 15px;
	height: 15px;
	margin: 0px 5px;
	overflow: hidden;
	border-radius: 100%;
	background: rgba(0,0,0,0.1);
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	}
	
.slick-dots li:hover, .slick-dots li.slick-active {
	background: rgba(0,0,0,0.5);
    border-color: rgba(0,0,0,0.5);
	}
	
.slick-dots li button {
    padding: 0px;
	width: 100%;
	height: 100%;
	}

.slick-dots li button:before, .slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	}

.slick-dots li button:before {
	line-height: 15px;
	font-size: 0px;
	top: 0px;
	left: 0px;
	width: 15px;
	height: 15px;
	overflow: hidden;
	border-radius: 100%;
	background: transparent;
	}
	
.slick-dots li:hover button:before, .slick-dots li.slick-active button:before {
	opacity: 1;
	background: transparent;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	}
	
/* Link Button */

.link-btn, .link-btn2 {
    font-family: Poppins;
	position: relative;
	z-index: 1;
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin: 0px auto 0px;
	text-transform: none;
	}

.link-btn a, .link-btn2 a {
	position: relative;
	text-align: center;
	color: #ffffff;
	overflow: hidden;
	line-height: 30px;
	padding: 10px 30px;
    background: #d50080;
	vertical-align: top;
    border-radius: 100px;
	display: inline-block;
	text-decoration: none !important;
	}
	
.link-btn a:hover, .link-btn a:focus {
	color: #ffffff;
    background: #92055a;
	}

.link-btn2 a {
    background: #008cb8;
	}

.link-btn2 a:hover, .link-btn2 a:focus {
	color: #ffffff;
    background: #01698a;
	}
	
.photoContainer {
	position: relative;
	display: block;
	width: 100%;
    overflow: hidden;
	margin: 0px 0px 40px;
	}

.round-border {
    border-radius: 10px;
	}

.photoContainer img {
	position: relative;
	display: block;
	width: 100%;
	}
	
/* Footer Styles */

.footer-wrapper {
    position: relative;
    width: 100%;
    display: block;
    margin: 0px auto;
    max-width: 1920px;
    padding-top: 390px;
	background: #008cb8 url("../images/footer-bg.png") center top no-repeat;
    background-size: 100% auto;
	}

.footer-wrapper.noform {
    padding-top: 100px;
	}

/* Footer Top */

.footer-top {
    position: relative;
    display: block;
	color: #ffffff;
	font-size: 16px;
    font-weight: 400;
	overflow: hidden;
	line-height: 24px;
    padding: 40px 0px 40px;
	}
	
.footer {
	position: relative;
	}
	
.footer .row {
	position: relative;
    align-items: center;
	justify-content: space-between;
	}

.footer a {
    color: #ffffff;
	}

.footer a:hover {
    color: #000000;
	}
	
.footer p {
	text-align: inherit;
	}

/* Footer Logo */
	
.footer-logo {
	position: relative;
	display: block;
	margin: 5px auto;
	}
	
.footer-logo a {
	position: relative;
	margin: 0px auto;
	max-width: 150px;
	max-height: 63px;
	display: inline-block;
	vertical-align: middle;
	}
	
.footer-logo img {
	position: relative;
	vertical-align: middle;
	}

.ftcol {
	position: relative;
	float: left;
	width: auto;
    max-width: 18%;
	padding: 0px 15px;
	}

.ftcol2 {
	max-width: 46%;
	}

.ftcol3 {
	max-width: 36%;
	}
	
/* Footer Nav */

ul.footer-nav {
	position: relative;
	display: block;
	padding: 0px;
	margin: 0px -10px;
	list-style-type: none;
	}
	
ul.footer-nav li {
    position: relative;
	font-size: 16px;
	padding: 0px 10px;
	line-height: 24px;
    vertical-align: top;
	margin: 5px auto 5px;
	display: inline-block;
	}

ul.footer-nav li a {
	position: relative;
	color: #ffffff;
	display: block;
	overflow: hidden;
	}
	
ul.footer-nav li a:hover, ul.footer-nav li.selected a {
	color: #000000;
	}

/* Copyright */

.copyright {
	position: relative;
	display: block;
	width: 100%;
	margin: 5px auto;
    line-height: 24px;
    text-align: center;
	}

/* Contact Form Wrapper */
	
.contactFormWrapper {
	position: relative;
	display: block;
    width: 100%;
    z-index: 5;
    padding: 50px 0px 0px;
    margin: 0px auto -390px;
	}

/* Contact Form */
	
.contactFormContainer, .contactForm {
	position: relative;
	display: block;
    width: 100%;
    padding: 0px;
    margin: 0px auto;
	}

.contactFormContainer:before {
	position: absolute;
	display: block;
    left: -115px;
    top: -62px;
    content: '';
	width: 229px;
    height: 202px;
    overflow: hidden;
	margin: 0px auto 0px;
    background: url("../images/Group-1639.png") center center no-repeat;
	}

.contactFormContainerInner {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    background: rgb(246,252,254);
    background: -moz-linear-gradient(top, rgba(246,252,254,1) 0%, rgba(182,219,227,1) 100%);
    background: -webkit-linear-gradient(top, rgba(246,252,254,1) 0%,rgba(182,219,227,1) 100%);
    background: linear-gradient(to bottom, rgba(246,252,254,1) 0%,rgba(182,219,227,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6fcfe', endColorstr='#b6dbe3',GradientType=0 );
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
	}

.contactForm {
    padding: 50px 40px;
	}

.contactForm h2 {
    padding: 0px;
    color: #008cb8;
    text-align: center;
	}
	
.control-label, .form-horizontal .control-label {
	font-family: Poppins;
	display: block;
	color: #acacac;
	font-size: 18px;
    font-weight: 400;
    line-height: 24px;
	}

.google-recaptch {
	position: absolute;
	bottom: 140px;
	right: -9px;
	}

.required-field {
	color: #d50080;
	}
	
.form-group, .form-check {
	margin-bottom: 20px;
	}
	
.form-control, .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control, .form-custom-select {
	font-family: Poppins;
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
	color: #231f20;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	padding: 9px 20px;
	border-radius: 100px;
	background-image: none;
	background-color: #ffffff;
    border: 1px solid #acacac;
	}

.form-group .bootstrap-select, .form-horizontal .bootstrap-select, .form-inline .bootstrap-select, .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	width: 100%;
	}
	
.bootstrap-select .dropdown-item.disabled, .bootstrap-select .dropdown-item:disabled {
	color: #acacac;
	}

.bootstrap-select .dropdown-item {
    white-space: normal;
	}
	
.bootstrap-select .dropdown-toggle:after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
    content: "\f107";
    font-size: 14px;
    border: 0;
	}
	
.bootstrap-select .dropdown-toggle[aria-expanded="true"]:after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
    content: "\f106";
    font-size: 14px;
    border: 0;
	}
	
.form-custom-select:hover {
	border-color: #fed54e;
	}
	
.form-horizontal .checkbox, .form-horizontal .radio {
    position: relative;
    min-height: 1px;
	font-weight: normal;
    display: inline-block;
    margin: 3px 5px 0px 0px;
	}

textarea.form-control {
	min-height: 190px;
	line-height: 24px;
    border-radius: 15px;
	height: auto !important;
	}
	
textarea {
	resize: none;
	}
	
.form-control:focus, .form-control:hover {
	outline: 0;
	border: 1px solid #fed54e;
	-webkit-box-shadow: none;
	box-shadow: none;
	}
	
.form-control::-webkit-input-placeholder, ::-webkit-input-placeholder {
	opacity: 1;
	color: #acacac;
	}

.form-control:-moz-placeholder, :-moz-placeholder { /* Firefox 18- */
	opacity: 1;
	color: #acacac;
	}

.form-control::-moz-placeholder, ::-moz-placeholder {  /* Firefox 19+ */
	opacity: 1;
	color: #acacac;
	}

.form-control:-ms-input-placeholder, :-ms-input-placeholder {
	opacity: 1;
	color: #acacac;
	}
	
.form-control:focus::-webkit-input-placeholder { color: transparent !important; }
.form-control:focus:-moz-placeholder { color: transparent !important; }
.form-control:focus::-moz-placeholder { color: transparent !important; }
.form-control:focus:-ms-input-placeholder { color: transparent !important; }

.btn-primary, .btn-secondary {
	font-family: Poppins;
    position: relative;
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	width: 100%;
	display: block;
    min-width: 200px;
	line-height: 20px;
    text-align: center;
    padding: 20px 30px;
	border-radius: 60px;
	border: none !important;
	text-transform: uppercase;
	}

.btn-primary { color: #ffffff; background: rgb(213,0,128); background: -moz-linear-gradient(top, rgba(213,0,128,1) 0%, rgba(146,5,90,1) 100%); background: -webkit-linear-gradient(top, rgba(213,0,128,1) 0%,rgba(146,5,90,1) 100%); background: linear-gradient(to bottom, rgba(213,0,128,1) 0%,rgba(146,5,90,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d50080', endColorstr='#92055a',GradientType=0 );  border-color: transparent; }
.btn-primary:hover, .btn-primary.focus, .btn-primary:focus { color: #ffffff; background: rgb(146,5,90); background: -moz-linear-gradient(top, rgba(146,5,90,1) 0%, rgba(213,0,128,1) 100%); background: -webkit-linear-gradient(top, rgba(146,5,90,1) 0%,rgba(213,0,128,1) 100%); background: linear-gradient(to bottom, rgba(146,5,90,1) 0%,rgba(213,0,128,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#92055a', endColorstr='#d50080',GradientType=0 ); border-color: transparent; }
.btn-primary.focus, .btn-primary:focus { box-shadow: none !important; }
.btn-primary.disabled, .btn-primary:disabled { color: #ffffff; background: rgb(213,0,128); background: -moz-linear-gradient(top, rgba(213,0,128,1) 0%, rgba(146,5,90,1) 100%); background: -webkit-linear-gradient(top, rgba(213,0,128,1) 0%,rgba(146,5,90,1) 100%); background: linear-gradient(to bottom, rgba(213,0,128,1) 0%,rgba(146,5,90,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d50080', endColorstr='#92055a',GradientType=0 ); border-color: transparent; opacity: 0.5; }
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle { color: #ffffff; background: rgb(213,0,128); background: -moz-linear-gradient(top, rgba(213,0,128,1) 0%, rgba(146,5,90,1) 100%); background: -webkit-linear-gradient(top, rgba(213,0,128,1) 0%,rgba(146,5,90,1) 100%); background: linear-gradient(to bottom, rgba(213,0,128,1) 0%,rgba(146,5,90,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d50080', endColorstr='#92055a',GradientType=0 ); border-color: transparent; }
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus { box-shadow: none !important; }

.btn-secondary { color: #231f20; background: rgb(246,252,254); background: -moz-linear-gradient(top, rgba(246,252,254,1) 0%, rgba(182,219,227,1) 100%); background: -webkit-linear-gradient(top, rgba(246,252,254,1) 0%,rgba(182,219,227,1) 100%); background: linear-gradient(to bottom, rgba(246,252,254,1) 0%,rgba(182,219,227,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6fcfe', endColorstr='#b6dbe3',GradientType=0 ); border-color: transparent; }
.btn-secondary:hover, .btn-secondary.focus, .btn-secondary:focus { color: #231f20; background: rgb(182,219,227); background: -moz-linear-gradient(top, rgba(182,219,227,1) 0%, rgba(246,252,254,1) 100%); background: -webkit-linear-gradient(top, rgba(182,219,227,1) 0%,rgba(246,252,254,1) 100%); background: linear-gradient(to bottom, rgba(182,219,227,1) 0%,rgba(246,252,254,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6dbe3', endColorstr='#f6fcfe',GradientType=0 ); border-color: transparent; }
.btn-secondary.focus, .btn-secondary:focus { box-shadow: none !important; }
.btn-secondary.disabled, .btn-secondary:disabled { color: #231f20; background: #f6fcfe; opacity: 0.5; }
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle { color: #231f20; background: rgb(246,252,254); background: -moz-linear-gradient(top, rgba(246,252,254,1) 0%, rgba(182,219,227,1) 100%); background: -webkit-linear-gradient(top, rgba(246,252,254,1) 0%,rgba(182,219,227,1) 100%); background: linear-gradient(to bottom, rgba(246,252,254,1) 0%,rgba(182,219,227,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6fcfe', endColorstr='#b6dbe3',GradientType=0 ); border-color: transparent; }
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus { box-shadow: none !important; }

/* Contact Info */

.contact-info-box {
	position: relative;
	display: block;
    width: 100%;
    font-size: 18px;
    background: #ffffff;
	margin: 0px auto 0px;
	}

.contact-group-box {
    position: relative;
    display: block;
    color: #ffffff;
    padding: 40px 30px;
    background: #008cb8;
    margin: 0px auto 0px;
	}

.contact-group-box h2 {
    color: #ffffff;
	}

.contact-location, .contact-phone, .contact-fax {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 16px;
	text-align: left;
    line-height: 24px;
    margin: 0px auto 0px;
    padding: 2px 0px 2px 30px;
    background: url(../images/location-icon.png) 0px 7px no-repeat;
	}
	
.contact-phone {
    background: url("../images/tel-icon.png") 0px 5px no-repeat;
	}
	
.contact-fax {
    background: url("../images/fax-icon.png") 0px 5px no-repeat;
	}

/* Map Container */

.map-container {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #acacac;
	margin: 0px auto 0px;
	}
	
.map-container iframe {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	overflow: hidden;
	}

/* Under Construction */

.under-construction {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
    text-align: center;
    padding: 100px 50px;
	margin: 0px auto 30px;
    border: 5px solid #eeeeee;
    }

.under-construction h2 {
    opacity: 0.3;
    }

/* Scroll To Top */

.scrollToTop {
	position: fixed;
	right: 20px;
	opacity: 0;
	z-index: 999;
	outline: none; 
	bottom: -150px;
	overflow: hidden;
	}

.scrollToTop_show {
	opacity: 1;
	bottom: 150px; 
	}

.scrollToTop_animating, .scrollToTop_animating * {
	pointer-events: none !important;
	}

@-webkit-keyframes scrollToTop_fade {
	0% {
		opacity: 0;
		}
	
	100% {
		opacity: 1;
		}
	}

@keyframes scrollToTop_fade {
	0% {
		opacity: 0;
		}
	
	100% {
		opacity: 1;
		}
	}

@-webkit-keyframes scrollToTop_slide {
	0% {
		bottom: -100px;
		}
	
	100% {
		bottom: 20px;
		}
	}

@keyframes scrollToTop_slide {
	0% {
		bottom: -100px;
		}
	
	100% {
		bottom: 20px;
		}
	}

/* skins */
.scrollToTop {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	width: 95px;
	height: 95px;
	text-indent: 100%;
	white-space: nowrap;
	text-decoration: none;
	text-transform: uppercase;
	background: no-repeat center center transparent;
	}

.scrollToTop_default {
	display: block;
	width: auto;
	height: auto;
	padding: 10px;
	text-indent: 0;
	background: #eee;
	border-radius: 10px;
	}

.scrollToTop_default:hover {
	background-color: #ddd;
	}

.scrollToTop_cycle {
	background: url(../images/ui.totop.png) center top no-repeat;
	-webkit-transition: all 0s ease-out;
    -moz-transition: all 0s ease-out;
    -o-transition: all 0s ease-out;
    -ms-transition: all 0s ease-out;
    transition: all 0s ease-out;
	}

.scrollToTop_cycle:hover {
	background: url(../images/ui.totop.png) center bottom no-repeat;
	-webkit-transition: all 0s ease-out;
    -moz-transition: all 0s ease-out;
    -o-transition: all 0s ease-out;
    -ms-transition: all 0s ease-out;
    transition: all 0s ease-out;
	}
	
.newsrelease-inner{padding:60px 0 0;}
.topRightContainer{padding-right:100px;}
.top-right{position:absolute; right:0; top:50%; transform:translateY(-50%);}
.nav>ul>li span{display:flex; align-items:center; justify-content:center;}
.header-social-icons ul{display:flex; align-items:center; list-style:none; padding:0; margin:-10px;}
.header-social-icons ul li{padding:10px;}
@media (max-width: 1699.98px) {
    .top-right{right:80px;}
}
 	
/* =Media Queries
-------------------------------------------------------------- */
@media (max-width: 1699.98px) {
    body, .nav > ul > li > a, .nav > ul ul, .nav > ul ul ul, .link-btn, .link-btn2, .form-control, .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control, .form-custom-select, .footer-top, ul.footer-nav li, .product-contents, .contact-location, .contact-phone, .contact-fax { font-size: 15px; }
    .container, .header-container, .banner_caption .captionWrapper { max-width: 1200px; }
    h1 { font-size: 40px; }
    h2 { font-size: 35px; }
    h3 { font-size: 30px; }
    h4 { font-size: 25px; }
    h5 { font-size: 20px; }
    h6 { font-size: 15px; }
    .pageTitle h1, .pageTitle h2 { font-size: 50px; }
    .banner_caption .captionContainerInner { max-width: 570px; }
    .banner_caption .captionContainer .bannerHeading1, .product-indication, .product-name { font-size: 18px; }
    .banner_caption .captionContainer .bannerHeading2 { font-size: 60px; }
	}

@media (max-width: 1399.98px) {
    .products-slider { margin-left: 60px; margin-right: 60px; }
    .scrollToTop { bottom: -100px; }
    .scrollToTop_show { bottom: 100px; }
	}
	
@media (max-width: 1199.98px) {
    .footer-top, ul.footer-nav li { font-size: 13px; }
	.imgLeft, .imgRight { max-width: 40%; }
	.google-recaptch { display: none !important; }
    #promoPopup { width: 900px; }
    .promoContainer { padding: 100px; }
	}

/* Portrait tablets and medium desktops */
@media (max-width: 991.98px) {
    .headerTop { padding: 20px 0px; }
	.topRightContainer { position: absolute; top: 0px; margin: 0px; display: block; clear: both; left: 0px; right: 0px; z-index: 5; }
    .nav-wrapper { float: none; margin: 33px auto; height: 50px; z-index: 1; position: absolute; left: 0px; right: 0px; }
    .nav-container { position: absolute; top: auto; margin: 0px; display: block; clear: both; left: 15px; right: 15px; }
    .nav-wrapper .nav { display: none !important; }
    .banner_caption .captionContainerInner { max-width: 470px; }
    .banner_caption .captionContainer .bannerHeading1, .product-indication, .product-name { font-size: 16px; }
    .banner_caption .captionContainer .bannerHeading2 { font-size: 50px; }
    .banner_caption .captionContainer .bannerHeading1:after { margin: 5px auto 5px 15px; }
    .intro-container, .products-container { padding: 60px 0px; }
    .footer-top { padding: 30px 0px 25px; }
    .ftcol { width: 100% !important; max-width: 100% !important; padding: 5px 15px; text-align: center; }
    ul.footer-nav li { display: inline-block; vertical-align: top; width: auto; }
    .ftcol2 { order: 3; }
    .ftcol3 { order: 2; }
    #promoPopup { width: 700px; }
    .promoContainer { padding: 70px; }
    .element-img-col, .element-img { width: 33px; }
    .footer-wrapper.noform { padding-top: 50px; }
	}
	
@media (max-width: 800px) {
	}

/* Landscape phones and portrait tablets */
@media (max-width: 767.98px) {
    #pageHeaderWrapper { position: relative; left: auto; top: auto; }
	.container, .header-container { padding: 0px 15px; }
    .headerTop { padding: 0px; }
    .bannerWrapper { background: #ffffff; }
    .bannerWrapper:after { display: none; }
    .banner_caption { position: relative; top: auto; left: auto; padding: 0px; }
    .banner_caption .captionWrapper { padding: 30px 15px 60px; }
    .banner_caption .captionContainerInner { max-width: 100%; text-align: center; }
    .intro-container { border-top: 1px solid #aeaeae; }
    .mission-and-objective-row { margin-top: 30px; }
    .intro-content, .mission-and-objective-row .intro-content { padding: 40px 0px 0px; }
    .mission-and-objective-row .intro-img-container { order: 1; }
    .mission-and-objective-row .intro-text-container { order: 2; }
    .philosophy-banner { margin: 0px auto -10%; }
    .philosophy-text-box { margin: 0px 30px; }
    #promoPopup { width: 100%; }
    .promoContainer { padding: 60px; }
    .mpb0 { padding-bottom: 0px !important; }
    .newsrelease-inner{padding:50px 0 0;}
	}

@media (min-width: 768px) {
	}
	
@media (max-width: 650px) {
	}
	
@media (max-width: 575.98px) {
    .philosophy-banner { margin: 0px auto; }
    .philosophy-text-box { margin: 0px auto; padding: 40px 20px 20px; }
    .philosophy-text-box::before { left: 10px; top: 10px; right: 10px; bottom: 10px; }
    .products-slider { margin: 0px auto 70px !important; }
    .products-slider .slick-dots { bottom: -40px; }
    .scrollToTop { width: 50px; height: 50px; }
    .scrollToTop_cycle { background: url(../images/ui.totop-small.png) center top no-repeat; }
    .scrollToTop_cycle:hover { background: url(../images/ui.totop-small.png) center bottom no-repeat; }
    .scrollToTop { bottom: -150px; }
    .scrollToTop_show { bottom: 150px; }
    #promoPopup:before { right: 10px; top: 10px; left: 10px; bottom: 10px; }
    .promoContainer { padding: 60px 30px; }
	}

@media (max-width: 480px) {
    h1, .pageTitle h1, .pageTitle h2 { font-size: 30px !important; }
	h2 { font-size: 27px !important; }
	h3 { font-size: 24px !important; }
	h4 { font-size: 21px !important; }
	h5 { font-size: 18px !important; }
	h6 { font-size: 15px !important; }
    .contactForm, .contact-group-box { padding: 30px 15px; }
    .scrollToTop { bottom: -170px; }
    .scrollToTop_show { bottom: 170px; }
    .promoContainer { padding: 60px 25px 40px; }
	}
	
@media (max-width: 400px) {
	}

@-ms-viewport{ width: auto !important; }