@font-face {
    font-family: 'Product Sans';
    src: url('../font/ProductSans-Light.woff2') format('woff2'),
        url('../font/ProductSans-Light.woff') format('woff'),
        url('../font/ProductSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/ProductSans-Black.woff2') format('woff2'),
        url('../font/ProductSans-Black.woff') format('woff'),
        url('../font/ProductSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/ProductSans-Bold.woff2') format('woff2'),
        url('../font/ProductSans-Bold.woff') format('woff'),
        url('../font/ProductSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/ProductSans-Medium.woff2') format('woff2'),
        url('../font/ProductSans-Medium.woff') format('woff'),
        url('../font/ProductSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/ProductSans-Regular.woff2') format('woff2'),
        url('../font/ProductSans-Regular.woff') format('woff'),
        url('../font/ProductSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Product Sans';
    src: url('../font/ProductSans-Thin.woff2') format('woff2'),
        url('../font/ProductSans-Thin.woff') format('woff'),
        url('../font/ProductSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

body {

	font-family: var(--ff-body);
	color: var(--clr-primary);
}

* {
	text-decoration: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
	box-sizing:border-box;
    -webkit-font-smoothing: antialiased;
}


:root {
	--ff-body: 'Product Sans';
	--ff-heading: 'Product Sans';
	--clr-primary: #eafbff;
	--clr-secondary: #f8ffee;
	--clr-blue: #00ccff;
	--clr-accent: #050715;
	--clr-white: #fff;
	--clr-black: #000;
	--clr-light-blue: #eff7f9;
    --clr-gray: #707070;
}

::selection {
    background-color: var(--clr-blue);
    color: var(--clr-white);
}

dl, ol, ul {
    padding: 0;
	margin: 0;
}
a {
    color: var(--clr-primary);
    transition: 0.5s all;
}
a:hover {
	text-decoration: none;
}

p {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.3px;
	color: var(--clr-black);
}

p:last-child{
	margin: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-family: var(--ff-heading);
    font-weight: 700;
    margin: 0;
    line-height: normal;
    color: var(--clr-black);
}


h1 {
	font-size: 95px;
}
h2 {
	font-size: 60px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 25px;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 18px;
}

section, header, footer {
    width: 100%;
    float: left;
}

section {
    padding: 100px 0;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-30 {
	margin-top: 30px;
}


.title  {
    margin-bottom: 40px;
}

.title.center  {
    text-align: center;
}

.title h2 {
	letter-spacing: 0.4px;
    font-weight: 900;
    color: var(--clr-black);
}

.primary-btn a {
    display: inline-block;
    padding: 12px 26px;   
    color: var(--clr-white);
    font-size: 20px;
    border-radius: 8px;
    margin-top: 40px;
	transition: 0.5s all;
	text-transform: capitalize;
	background-color: var(--clr-blue);
}

.primary-btn a:hover {
	color: var(--clr-black);
    background-color: var(--clr-primary);
}

.header.fixed-top.addsticky {
    background-color: rgb(255 255 255 / 94%);
}

.splash_page_layout {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/*******  header  *******/

.navigation {
    width: 100%;
    padding: 25px 0;
	display: flex;
    align-items: center;
	justify-content: space-between;
}

.mynav ul {
    display: flex;
    align-items: center;
}

.mynav ul li  {
    position: relative;
}

.mynav ul li:not(:last-child)  {
    margin-right: 60px;
}

.mynav ul li a {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-black);
    text-transform: capitalize;
}

.mynav ul li:hover a,
.mynav ul li.active a{
    color: var(--clr-blue);
}

.mynav ul li a i {
    font-size: 12px;
}

/*******  banner    *******/

.banner {
    width: 100%;
    height: 790px;
    overflow: hidden;
    position: relative;
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

.shape_img {
    position: absolute;
    left: -60px;
    top: 0;
    width: 165px;
}

.banner-content h1 {
    font-size: 90px;
    line-height: 100px;
    margin: 30px 0 50px;
    letter-spacing: -0.5px;
}

.banner-content  p {
    font-size: 24px;
    font-weight: 400;
	line-height: 34px;
	color: #050715b3;
}

.banner-images {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.banner-images .imgbx{
    overflow: hidden;
}

.banner-images .imgbx img{
    width: 100%;
    height: 100%;
	transition: 0.5s;
}

.banner-images .imgbx img:hover{
   transform: scale(1.1);
}

.socialmedia-icon {
    margin-top: 70px;
}

.socialmedia-icon ul {
    display: flex;
    align-items: center;
    justify-content: left;
}

.socialmedia-icon ul li {
    margin: 0 10px 0 0;
}

.socialmedia-icon ul li {
    margin: 0 10px 0 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
    background-color: var(--clr-white);
}

.socialmedia-icon ul li:hover {
    transform: translateY(-5px);
    background-color: var(--clr-primary);
}

.text_summary {
    position: relative;
	padding: 0 30px;
}

.text_summary::before {
    top: 0;
    left: 0;
    content: "";
    position: absolute;
    height: 100%;
    border-left: 5px solid var(--clr-light-blue);
}

.text_summary::after {
	top: 0;
    right: 0;
    content: "";
    position: absolute;
    height: 100%;
    border-left: 5px solid var(--clr-light-blue);
}

.text_summary p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.statement-card-list {
    width: 100%;
    height: 100%;
    padding: 30px;
	transition: 0.5s;
    text-align: center;
    border-radius: 35px;
    border: 4px solid var(--clr-primary);
}

.statement-card-list.colm-1 {
    border-top-left-radius: 0;
}

.statement-card-list.colm-3 {
    border-bottom-right-radius: 0;
}

.statement-card-list h3{
    font-size: 25px;
    line-height: 32px;
    font-weight: 500;
	margin: 15px 0;
}

.statement-card-list:hover {
	transform: translateY(-15px);
    box-shadow: 0px 10px 20px -10px rgb(0 0 0 / 35%);
}

.img_bx {
    width: 100%;
    min-height: 193px;
    overflow: hidden;
}

.img_bx img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.img_bx img:hover {
    transform: scale(1.1);
}

.secondary-btn a {
    display: inline-flex;
    padding: 10px 15px;
    color: #0a0f03;
    font-size: 20px;
    border-radius: 15px;
    margin-top: 40px;
    opacity: 0.5;
    width: 150px;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s all;
    text-transform: capitalize;
    border: 2px solid var(--clr-blue);
}

.secondary-btn a:hover {
    border: 2px solid transparent;
	background-color: var(--clr-primary);
}

.news_media {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 80px 0 0;
    margin: 100px 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.ser-colm {
    width: 100%;
    padding: 15px;
    background-color: var(--clr-white);
    -webkit-box-shadow: 0 20px 10px -10px #f4fbf9;
    -moz-box-shadow: 0 20px 10px -10px #f4fbf9;
    box-shadow: 0 20px 10px -10px #f4fbf9;
}

.news_colm h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #c5c7c4;
}

.news_colm h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
	padding: 15px 0;
}

.news_colm p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #c5c7c4;
}

.read_more_btn a {
    color: var(--clr-black);
    font-size: 16px;
	font-weight: 500;
    line-height: 22px;
    margin-top: 10px;
    opacity: 0.5;
    transition: 0.5s all;
    text-transform: capitalize;
	border-bottom: 1px solid #c5c7c4;
}

.read_more_btn a:hover {
	color: var(--clr-blue);
}

.home-contact-page {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-form {
    width: 65%;
    margin: 0 auto;
    text-align: center;
}

.contact-form .form-group input[type="text"], .contact-form .form-group input[type="email"], .contact-form .form-group textarea {
    width: 100%;
    height: 80px;
    border-radius: 20px;
    outline: none;
    font-size: 20px;
    font-weight: 500;
	letter-spacing: 0.4px;
    padding: 0 20px;
    color: var(--clr-accent);
    border: 2px solid #e9eeed;
}

.contact-form .form-group textarea {
    padding: 20px 20px;
    height: 200px;
}

.contact-form .form-group input[type="submit"] {
    display: inline-block;
    padding: 12px 35px;   
    color: var(--clr-white);
    font-size: 20px;
    border-radius: 20px;
    margin-top: 20px;
	outline: none;
	border: none;
	transition: 0.5s all;
	text-transform: capitalize;
	background-color: var(--clr-blue);
}

.contact-form .form-group input[type="submit"]:hover {
	color: var(--clr-black);
    background-color: var(--clr-primary);
}

.socialmedia-tab {
    width: 75%;
    margin: 50px auto 0;
    text-align: center;
}

.socialmedia-tab ul{
	display: flex;
    align-items: center;
    justify-content: center;
}

.social_logo {
    width: auto;
    height: 80px;
    min-width: 260px;
    padding: 25px;
    margin: 0 10px;
	transition: 0.5s;
    border-radius: 8px;
    border: 2px solid #e4effc;
}

.socialmedia-tab ul li .social_logo:hover {
	transform: translateY(-5px);
    background-color: var(--clr-primary);
}

.footer-now {
    width: 100%;
    padding: 75px 0;
    background: rgb(235,251,254);
    background: linear-gradient(90deg, rgba(235,251,254,1) 48%, rgba(248,255,238,1) 70%, rgba(248,255,238,1) 100%);
}

.footer-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer._navbar ul li {
    display: inline-block;
    padding-left: 30px;
}

.footer._navbar ul li a{
	font-size: 18px;
    font-weight: 500;
    color: #666e65;
	line-height: 30px;
    text-transform: capitalize;
}

.footer._navbar ul li a:hover{
    color: var(--clr-blue);
}

.copyright {
    width: 100%;
    padding: 9px 0;
    text-align: center;
}

.copyright p{
    font-size: 14px;
    font-weight: 500;
    color: #666e65;
	line-height: 30px;
}


/**** inner-pages ****/

.banner.inner_banner {
    height: 100%;
    padding-bottom: 0;
}
.inner.banner-images {    display: grid;    grid-gap: 15px;    grid-template-columns: repeat(1, 1fr);}

.banner-content-now h6 {
    color: #0a0f0380;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    font-weight: 700;
}

.banner-content-now h1 {
    font-size: 90px;
    line-height: 100px;
    padding: 10px 0 25px;
    letter-spacing: -0.5px;
}

.banner-content-now h1 span{
	z-index: 1;
	position: relative;
}

.banner-content-now h1 span::before {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 0;
    height: 62px;
    z-index: -1;
    width: calc(100%  + 200px);
    background-color: var(--clr-blue);
}

.banner-content-now  p {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
	color: #050715b3;
}

.company-story .text_summary_colm {
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 20px;
    border: 5px solid var(--clr-primary);
}

.text_summary_colm p{
	color: #595b56;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.text_summary_colm h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 28px;
    margin: 40px 0 20px;
}

.news_media.details_page {
    height: 457px;
    width: 100%;
    padding: 0;
    margin: 93px 0 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
}

.news_media.details_page .ser-colm {
    padding: 0;
	bottom: 40px;
    box-shadow: none;
    position: absolute;
    background-color: transparent;
}

.news_media.details_page .ser-colm h6 {
    color: #9fa090;
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
	letter-spacing: -0.2px;
}

.news_media.details_page .ser-colm h4 {
    color: var(--clr-white);
    font-size: 42px;
    line-height: 55px;
    font-weight: 700;
	letter-spacing: -0.2px;
}

.news-story {
    padding: 50px 0;
}

.abt_mydecine {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.abt_mydecine h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 60px;
	margin-bottom: 15px;
	letter-spacing: -0.2px;
}

.abt_mydecine p {
	color: #050715;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
	letter-spacing: -0.2px;
}

.contact_page {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

.contact-form.form_colm {
    width: 100%;
    text-align: left;
}

.contact_now h1 {
    font-size: 90px;
    line-height: 95px;
    padding: 0 0 25px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.contact_now p {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #0a0f0399;
	letter-spacing: 0.5px;
}

.address_detail {
    padding-top: 15px;
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 2px solid #e6e7e5;
}

.address_detail ul li{
    margin: 10px 0; 
}

.address_detail ul li a, .address_detail ul li i, .address_detail ul li p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    transition: 0.5s;
    color: #0a0f03;
	letter-spacing: 0.5px;
}

.address_detail ul li a:hover{
	color: var(--clr-blue);
}

.address_detail ul li i {
    width: 50px;
    height: 50px;
	margin-right: 10px;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    color: var(--clr-blue);
    background-color: var(--clr-primary);
}

.contact_page .contact-form .form-group textarea {
    height: 280px;
}

.contact_page .contact-form .form-group input[type="submit"]{
	width: 100%;
}

.company-future {
    padding: 0 0 100px;
}

.bk_layout {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

.banner.company_layout {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

.banner-content-now p span {
    font-weight: 500;
	font-size: 22px;
    color: var(--clr-blue);
}

.banner-content-now.text.center {
    text-align: center;
}

.banner-content-now.text.center {
    text-align: center;
}

.bk-white-layout {
    width: 100%;
    border-radius: 25px;
    padding: 40px 60px 0px 60px;
    background-color: var(--clr-white);
}

.license-colm.colm_1 {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e6e7e5;
}

.license-colm .title {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid var(--clr-blue);
}

.title h3 {
    font-size: 42px;
    font-weight: 500;
    padding-bottom: 5px;
	letter-spacing: 0.5px;
}

.title h4 {
    font-size: 42px;
    font-weight: 500;
	letter-spacing: 0.5px;
    padding-bottom: 5px;
	color: var(--clr-blue);
}

.title h4 span{
    font-size: 24px;
	color: #8f908e;
}

.intellectual_property ul li {
	position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e6e7e5;
}

.intellectual_property ul li:last-child {
    border: none;
}

.intellectual_property ul li::before {
    content: url(../images/dot.png);
    top: 2px;
    left: 0;
    position: absolute;
}

.intellectual_property ul li p {
    padding-left: 30px;
    font-size: 20px;
    line-height: 30px;
    color: #0a0f0399;
}

.leader_colm h2 {
    font-size: 42px;
	letter-spacing: 0.5px;
    padding-bottom: 10px;
}

.news_colm {
    margin: 40px 0;
	transition: 0.5s;
	cursor: pointer;
}

.news_colm:hover {
    transform: translateY(-10px);
}

.article_layout {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-bottom: 6px solid;
    border-image-slice: 1;
	padding-bottom: 0;
    border-image-source: linear-gradient(90deg, rgba(24,208,221,1) 40%, rgba(76,215,149,1) 70%, rgba(130,222,75,1) 100%);
}

.article_layout .title h2 {
    font-weight: 700;
    line-height: 70px;
}

.article_layout ul {
    padding-top: 34px;
}

.article_layout ul li {
    display: inline-block;
    color: #050715;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding-right: 20px;
}

.article_summary_detail {
    padding: 50px 0;
}

.article_summary_detail .text_summary_colm h3 {
    font-size: 40px;
	margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.text_summary_colm h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.article_summary_detail .text_summary_colm p {
    padding-left: 25px;
    font-size: 16px;
    line-height: 28px;
    border-left: 5px solid var(--clr-light-blue);
}

.intellectual_property.article_list {
    width: 100%;
    margin-top: 40px;
    border-radius: 25px;
    padding: 30px 30px 15px;
    border: 5px solid var(--clr-primary);
}

.article_list ul li p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.bluesun_mycology_group {
    padding: 50px 0;
}

.bluesun_mycology_group .title h2 {
    font-weight: 700;
	line-height: 70px;
}

.mycology_group_left {
    padding: 148px 0;
}

.vision_spores {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.vision_spores .title h2 {
    font-weight: 700;
    line-height: 70px;
}

.vision_text p {
	font-size: 16px;
    line-height: 24px;
	font-weight: 400;
    letter-spacing: 0.5px;
}

.our_leadership {
    width: 100%;
    margin-top: 80px;
    padding: 15px;
    border: 1px solid;
    border-radius: 20px;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, rgba(24,208,221,1) 40%, rgba(76,215,149,1) 70%, rgba(130,222,75,1) 100%);
}

.our_founder {
    width: 100%;
}

.our_founder h3 {
    float: left;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.5px;
    line-height: 45px;
    position: relative;
    padding: 25px;
    min-width: 320px;
    border-radius: 26px;
    background: rgb(251,253,253);
    background: linear-gradient(90deg, rgba(251,253,253,1) 75%, rgba(161,236,248,1) 100%);
}

.founder-left {
    width: calc(100% - 298px);
    display: grid;
    position: absolute;
	z-index: -1;
    right: 30px;
    padding: 20px 100px;
    border-radius: 20px;
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    background: rgb(24,208,221);
    background: linear-gradient(90deg, rgba(24,208,221,1) 40%, rgba(76,215,149,1) 70%, rgba(130,222,75,1) 100%);
}

.founder-colm.colm-1 {
    margin-right: 50px;
    border-right: 1px solid #eaece9;
}

.founder-colm h4 {
    font-size: 26px;
    line-height: 42px;
    font-weight: 400;
	margin-bottom: 5px;
    letter-spacing: 0.5px;
    color: var(--clr-white);
}

.founder-colm p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    font-weight: 400;
	color: var(--clr-white);
}

.leadership-colm {
    width: 100%;
    padding: 50px 100px;
    display: inline-block;
}

.leadership-colm ul {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.leadership-colm ul li {
    margin-right: 50px;
    border-right: 1px solid #eaece9;
}

.leadership-colm ul li:last-child {
    border-right: none;
}

.leadership-colm ul li h6 {
    font-size: 22px;
    line-height: 42px;
    font-weight: 700;
	letter-spacing: 0.5px;
}

.leadership-colm ul li p {
    color: #757871;
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 0;
    font-weight: 400;
}

.leadership-colm ul li a {
    color: #757871;
	transition: 0.5s;
}

.leadership-colm ul li a:hover {
    color: var(--clr-blue);
}