
@font-face {
	font-family: 'Conv_Helvetica-Light';
	src: url('../fonts/Helvetica-Light.eot');
	src: local('☺'), url('../fonts/Helvetica-Light.woff') format('woff'), url('../fonts/Helvetica-Light.ttf') format('truetype'), url('../fonts/Helvetica-Light.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Conv_Helvetica';
	src: url('../fonts/Helvetica.eot');
	src: local('☺'), url('../fonts/Helvetica.woff') format('woff'), url('../fonts/Helvetica.ttf') format('truetype'), url('../fonts/Helvetica.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Conv_Helvetica-Bold';
	src: url('../fonts/Helvetica-Bold.eot');
	src: local('☺'), url('../fonts/Helvetica-Bold.woff') format('woff'), url('../fonts/Helvetica-Bold.ttf') format('truetype'), url('../fonts/Helvetica-Bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
:root{scroll-behavior:smooth}
body {
  font-family: 'Conv_Helvetica';
  font-size: 24px;
	line-height: 1;
	color: #282828;
}
ul {
  margin: 0;
  padding:0;
  list-style-type: none;
}
img {
  max-width: 100%;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a {
	color: inherit;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.btn {
	border-radius: 0;
	font-size: 24px;
	font-family: 'Conv_Helvetica-Bold';
	line-height: 1;
	padding: 8px 30px;
}
.btn-primary {
	color: #fff;
	background-color: #61aa31;
	border-color: #61aa31;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle,
.btn-primary.focus, .btn-primary:focus,
.btn-primary:hover {
	color: #fff;
	background-color: #559c26;
	border-color: #559c26;
}

.xlTitle {
	font-size: 55px;
	font-family: 'Conv_Helvetica-Bold';
}
.lgTitle {
	font-size: 40px;
	font-family: 'Conv_Helvetica-Bold';
}
.mdTitle  {
	font-size: 32px;
	font-family: 'Conv_Helvetica-Bold';
}
.ls2 {
	letter-spacing: 2px;
}
.ls3 {
	letter-spacing: 3px;
}
.primaryColor {
  color: #61aa31;
}
.inheritColor {
  color: inherit;
}
.text-underline , a.text-underline {
	text-decoration: underline;
}
.fwLight {
	font-family: 'Conv_Helvetica-Light';
}
.fwNormal {
	font-family: 'Conv_Helvetica';
}
.fwBold {
	font-family: 'Conv_Helvetica-Bold';
}
.colHide {
	opacity: 0;
}
.colHide, .bannerLogo {
	-webkit-transition: all 600ms ease-in-out;
	-o-transition: all 600ms ease-in-out;
	transition: all 600ms ease-in-out;
}
.bannerTextShow .bannerLogo {
  /* opacity: 0; */
}
.bannerTextShow .colHide {
	opacity: 1;
}
.headerCol {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	padding: 30px 0;
	z-index: 99;
	background-color: black;
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
.stickyHeader .headerCol {
	padding-top: 10px;
	padding-bottom: 10px;
}
.stickyHeader .headerCol.colHide {
  opacity: 1;
}

.logoCol {
	width: 60px;
}
.navCol a {
	color: #fff;
	font-size: 16px;
}
.navCol a:hover, .navCol a.active {
	color: #61aa31;
}
.navCol .nav-item.dLink {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.searchTrigger {
	display: inline-block;
	width: 30px;
	margin-right: 20px;
	cursor: pointer;
}
.searchCol {
  position: relative;
  padding-right: 20px;
}
.searchIcon {
	border: none;
	background: none;
	padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.searchIcon img {
	width: 50px;
}
.searchCol .form-control {
	padding-right: 35px;
	border: none;
}
.searchStyle2 .form-control {
	background-color: #eeeeee;
}
.searchCloseTrigger {
	width: 25px;
	margin-left: 20px;
}

/* menu trigger */

.target-burger {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.target-burger:hover {
  cursor: pointer;
  -webkit-opacity: 0.45;
  -moz-opacity: 0.45;
  opacity: 0.45;
}
.navToggled .target-burger span.buns span.bun {
  -webkit-transform: rotate(45deg) translateZ(0);
  transform: rotate(45deg) translateZ(0);
}
.navToggled .target-burger span.buns span.bun:last-child {
  -webkit-transform: rotate(-45deg) translateZ(0);
  transform: rotate(-45deg) translateZ(0);
}
.target-burger span.buns {
  width: 24px;
  height: 24px;
  list-style: none;
  margin: -12px 0 0 -12px;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1), color 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), color 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.target-burger span.buns span.bun {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.75px;
  -webkit-transform: translateY(-3.75px) translateZ(0);
  transform: translateY(-3.75px) translateZ(0);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1), background-color 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), background-color 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.target-burger span.buns span.bun:last-child {
  -webkit-transform: translateY(3.75px) translateZ(0);
  transform: translateY(3.75px) translateZ(0);
}
/*   /menu trigger */

.bannerCol {
  padding: 150px 0 300px;
  background-color: #fff;
}
.bannerContent {
  text-align: center;
	margin: 0 auto;
	max-width: 900px;
}


.bannerCol {
	background-color: #010102;
	/* background-image: url('../images/banner-bg.jpg'); */
	background-repeat: no-repeat;
	background-position: center;
	min-height: 100vh;
	padding: 220px 0 350px;
	color: #fff;
	position: relative;
}
.bannerCol.bannerTextShow {
	background-image: url('../images/banner-bg.jpg');
}
.bannerCol::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 25%;
	background-image: url('../images/banner-btm-shaddow.png');
	background-repeat: repeat-x;
	background-position: center bottom;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
}
.bannerLogo {
	margin: 30px auto 0 auto;
	position: relative;
	max-width: 250px;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.bannerLogo a {
	display: block;
	position: relative;
	z-index: 2;
}
.stage {
	transform-style: preserve-3d;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	display: block;
}
.text {
		width: 200px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		white-space: nowrap;
		animation: rotate1 6s linear infinite;
		backface-visibility: hidden;
		-webkit-animation-delay: 600ms;
		animation-delay: 600ms;
}
@keyframes rotate1 {
		0% {
				transform: rotateY(360deg) translateZ(125px);
				opacity: 1;
		}
		35% {
			opacity: 1;
		}
		48% {
				transform: rotateY(270deg) translateZ(125px);
				opacity: 0;
		}
		52% {
				transform: rotateY(90deg) translateZ(125px);
				opacity: 0;
		}
		58% {
				opacity: 0;
		}
		100% {
				transform: rotateY(0deg) translateZ(125px);
		}
}

/* @keyframes rotate {
  0%   {
		background-position: -250px 0;
	}
  100% {
		background-position: 250px 0;
	}
} */
.bannerLogo a > img {
	/* opacity: 0; */
}
.bannerSmConainer {
	margin: 0 auto;
	max-width: 700px
}
.smText {
	font-size: 19px;
	line-height: 1.3;
}
.mdContainer {
	margin: 0 auto;
	max-width: 800px;
}
.contentSection {
	text-align: center;
	letter-spacing: 2px;
	background-image: url('../images/bg-1.jpg');
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: 100%  auto;
	background-size: 100%  auto;
	/* border-top: 1px solid #cccacb; */
}
.sectionSpace {
	padding: 100px 0;
}
.sectionSpaceLg {
	padding: 150px 0;
}
.topContentCol > p + p {
	margin-top: 140px;
}
.lightBg {
	background-color: #e5e5e5;
}
.cardStyle1 {
	padding: 20px 20px;
	position: relative;
	min-height: 450px;
	height: 100%;
	letter-spacing: 3px;
}
.cardStyle1.overlay::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(223,221,221,0.8);
}
.cs1ContentCol {
	margin: 0 auto;
	max-width: 440px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.cardBg1, .cardBg2 {
	background-image: url('../images/card-bg-1.jpg');
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.cardBg2 {
	background-image: url('../images/card-bg-2.jpg');
}

.aboutSection {
	color: #1a212f;
}
.pmLogoCol {
	padding: 20px 0 40px;
}
.aboutQuote {
	font-size: 43px;
	line-height: 1.15;
	padding: 60px 270px 60px 0;
	background-image: url('../images/quotation-mark_1.png');
	background-repeat: no-repeat;
	background-position: right center;
}

.medsListSlider {
	margin: 0 auto;
	max-width: 580px;
	text-align: center;
	font-size: 15px;
}
.medsList {
	padding: 20px 40px;
}
.medsList > li + li {
	margin-top: 10px;
}
.downloadBtn {
	text-align: center;
}

.sliderStyle1 .swiper-button-next, .sliderStyle1 .swiper-button-prev {
	background-color: #000;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	color: #fff;
}
.sliderStyle1 .swiper-button-next::after, .sliderStyle1 .swiper-button-prev::after {
	font-size: 15px;
	font-weight: bold;
}

.contactCol {
	background-color: #dfdddd;
	border-bottom: 10px solid #61aa31;
}
.contactLeftCol {
	padding: 60px 0;
}
.contactMapCol {
	height: 100%;
	position: relative;
}
.contactCol {
	overflow: hidden;
}
.mapCol {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50vw;
}
.mapCol iframe {
	width: 100%;
	height: 100%;
}
.fullLink {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}


.footerCol {
	padding: 60px 0 150px;
	text-align: center;
	color: #878787;
	font-size: 16px;
	letter-spacing: 2px;
}
.footerLogo {
	text-align: center;
	margin: 0 auto;
	max-width: 300px;
}
.socialLinks {
	padding: 20px 0;
}
.socialLinks li, .footerLinks li {
	display: inline-block;
	vertical-align: middle;
}
.socialLinks li {
	padding: 5px;
}
.footerLinks li {
	padding: 5px 25px;
}
.footerLinks {
	padding-bottom: 20px;
}
.copyrightCol {
	font-size: 12px;
}
/* *********** */
.headerSearchCol {
	position: relative;
	padding-right: 20px;
}

.fadeOut {
	padding: 50px 0;
	position: relative;
}
.fOut {
	display: block;
	position: absolute;
	left: 0;
	top: -20vh;
	height: 1px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.fOut[data-scroll="out"] + *.aos-animate {
	opacity: 0;
}






@media (min-width:1200px) {
	.container {
		max-width: 1030px;
	}
}


@media (max-width:991px) {
	.bannerCol {
		padding: 150px 0 300px;
	}
	.xlTitle {
		font-size: 36px;
	}
	.lgTitle {
		font-size: 30px;
	}
	.mdTitle {
		font-size: 26px;
	}
	.smText {
		font-size: 16px;
		line-height: 1.5;
	}
	.medsListSlider {
		font-size: 13px;
	}
	.contactInfoIcon {
		width: 40px;
	}
	.socialLinks li {
		width: 50px;
	}
	.footerLinks li {
		padding: 5px 12px;
	}
	.logoCol {
		width: 40px;
	}
	body {
		font-size: 18px;
		line-height: 1.4;
	}
	.btn {
		font-size: 16px;
		padding: 12px 30px;
	}
	.footerCol {
		padding: 40px 0 60px;
		font-size: 14px;
		letter-spacing: 0.5px;
	}
	.cardStyle1 {
		min-height: 350px;
	}
	.sectionSpace {
		padding: 80px 0;
	}
	.footerLogo {
		max-width: 210px;
	}
	.socialLinks {
		padding: 10px 0;
	}
	.aboutQuote {
    font-size: 30px;
    padding: 60px 150px 60px 0;
    background-size: 40%;
	}
	.navCol {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 260px;
		padding: 30px;
		z-index: 3;
		background-color: #0A1A1F;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		-webkit-transition: transform 300ms ease-in-out 0s;
		-moz-transition: transform 300ms ease-in-out 0s;
		transition: transform 300ms ease-in-out 0s;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	.navToggled .navCol {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
	.navCol .nav {
		display: block;
	}
	.navCol .nav-fill .nav-item {
		text-align: left;
	}
	.navCol .nav-fill .nav-item + .nav-item {
		margin-top: 10px;
	}

	.headerSearch.searchCol {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		padding: 20px;
		z-index: 100;
		background-color: black;
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
		-webkit-transition: all 300ms ease-in-out 0s;
		-o-transition: all 300ms ease-in-out 0s;
		transition: all 300ms ease-in-out 0s;
	}
	.actSearch .headerSearch.searchCol {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.sectionSpace.lgTextCol {
	  padding: 40px 0;
	}
	.pmLogoCol {
	  padding: 10px 0 25px;
	}
}

@media (max-width:576px) {
	.aboutQuote {
	  font-size: 20px;
	  padding: 60px 0 60px 0;
	  background-size: 30%;
	}
	.bannerCol {
	    padding: 100px 0 300px;
	}
	body {
	    font-size: 16px;
	}
	.xlTitle {
	    font-size: 30px;
	}
	.lgTitle {
		font-size: 24px;
	}
	.mdTitle {
		font-size: 22px;
	}
	.smText {
		font-size: 15px;
	}
	.cardStyle1 {
	    min-height: 280px;
	}
	.btn {
    font-size: 15px;
    padding: 12px 20px;
    letter-spacing: 0.5px;
	}
	.medsList {
	   padding: 20px 20px;
	}
	.sliderStyle1 .swiper-button-next, .sliderStyle1 .swiper-button-prev {
    width: 30px;
    height: 30px;
	}
	.sliderStyle1 .swiper-button-next {
		right:0;
	}
	.sliderStyle1 .swiper-button-prev {
		left: 0;
	}
}
