*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
	font-family: 'Open Sans', sans-serif;
}
:root{
	--baseColor: #177766;
	--lightColor: #FFFFFF;
	--grayColor: #F7F7F7;
	--darkColor: #232323;
	--blackColor: #1C212E;
	--borderColor: #D6D6D6;
	--fineColor: #e4e4e4;

	--baseFont: 'Open Sans', sans-serif;
}
/* ========== Custom CSS Starts ========== */

/* ===== CSS For "Common Cases" Starts Here ===== */
.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
}
/* ======================== */
.heading{
	margin-bottom: 10px;
}
.heading h3{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 0px;
}
.sub_heading{
	margin-bottom: 10px;
}
.sub_heading h4{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 0px;
}
/* ======================== */
.para_texts p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 15px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
.para_texts p .bold_texts{
	font-weight: 700;
}
.para_texts p a{
	color: var(--baseColor);
	font-weight: 700;
}
.para_texts p a:hover{
	text-decoration: underline;
}
/* ======================== */
.cta_btn_wrap{
	margin-top: 20px;
}
.cta_btn{
	color: var(--lightColor);
	background: #1B786A;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	border-bottom: 4px solid #0E4D3D;
	border-radius: 5px;
	min-width: 100%;
	text-align: center;
	display: block;
	padding: 12.5px 15px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;	
}
.cta_btn:hover{
	color: var(--lightColor);
	background: #0E4D3D;
	text-decoration: none;
	-webkit-transform: scale(1.025);
	-ms-transform: scale(1.025);
	transform: scale(1.025);
}
.cta_btn span{
	font-size: 30px;
	font-weight: 400;
	line-height: 20px;
	position: relative;
	top: 2px;
	margin-left: 3px;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== Humberger Menu Icon ===== */
.humbergur_icon{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.humbergur_icon span{
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.humbergur_icon span {
	background: var(--baseColor);
}
.humbergur_icon span:nth-child(1) {
	top: 0px;
}
.humbergur_icon span:nth-child(2),
.humbergur_icon span:nth-child(3) {
	top: 10px;
}
.humbergur_icon span:nth-child(4) {
	top: 20px;
}
.humbergur_icon.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}
.humbergur_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.humbergur_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.humbergur_icon.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}
/* ===== Humberger Menu Icon ===== */

.navbar-toggler{
	padding: 0px;
}
.navbar{
	background: #F8F8F8;
	padding: 5px 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-brand{
	text-decoration: none;
	padding: 0px;
}
.navbar .navbar-brand img{
	max-width: 200px;
}
.navbar .navbar-nav .nav-item {
	margin-right: 15px;
}
.navbar .navbar-nav .nav-item:last-child{
	margin-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 15px;
	padding: 0px;
	padding-right: 15px;
	border-right: 1px solid #D6D6D6;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
	color: var(--baseColor);
}
.navbar .navbar-nav .nav-item.active .nav-link{
	color: var(--baseColor);
}
.navbar .navbar-nav .nav-item:last-child .nav-link{
	border-right: none;
	padding-right: 0px;
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Header" Starts Here ===== */
.header{
	background: #fffefe;
	padding: 5px 0px;
	text-align: center;
}
.header p{
	color: var(--fineColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 0px;
	line-height: 1;
}
/* ===== CSS For "Header" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Middle Content" Starts Here ===== */
.middle_content_wrap{
	padding: 20px 0px;
}
.middle_content{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 290px;
	grid-template-columns: 1fr 290px;
	grid-auto-rows: auto;
	gap: 30px;
}
.middle_content .single_part{
	margin-bottom: 30px;
}
.middle_content .single_part:last-child{
	margin-bottom: 0px;
}
/* ===== CSS For "Middle Content" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Indicator Menu" Starts Here ===== */
.indicator_menu ul{
	margin-bottom: 10px;
}
.indicator_menu ul li{
	list-style: none;
	display: inline-block;
	margin-right: 10px;
}
.indicator_menu ul li a{
	color: #232323;
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 14px;
	display: block;
	padding-right: 10px;
	position: relative;
	text-decoration: none;
}
.indicator_menu ul li a:after{
	content:"\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 12px;
	color: #232323;
	position: absolute;
	right: -7px;
	top: 2.5px;
}
.indicator_menu ul li:last-child a:after{
	display: none;
}
/* ===== CSS For "Indicator Menu" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Article" Starts Here ===== */
.main_article .top_part{
	margin-bottom: 15px;
}
.main_article .top_part h2{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 15px;
}
.main_article .top_part h4{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 15px;
}
.main_article .top_part .banner_image{
	text-align: center;
}
.main_article .top_part .banner_image img{
	width: 100%;
}
.main_article .top_part .caption{
	background: #DAE2E8;
	padding: 7.5px 10px;
}
.main_article .top_part .caption p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 15px;
	font-style: italic;
	margin-bottom: 0px;
}
.main_article .top_part .caption p .bold_texts{
	display: block;
	font-weight: 700;
}

.main_article .single_part .previw_image{
	margin-bottom: 15px;
	position: relative;
}
.main_article .single_part .previw_image span{
	color: var(--lightColor);
	background: var(--baseColor);
	width: 100px;
	display: inline-block;
	padding: 3px 10px;
	text-align: center;
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	position: absolute;
	top: 0px;
}
.main_article .single_part .previw_image .before{
	left: 0px;
}

.main_article .single_part .effect_compare_wrap{
	max-width: 600px;
	margin: 0px auto;
	text-align: center;
}
.main_article .single_part .effect_compare_wrap .heading{
	margin-bottom: 10px;
	background: #DAE2E8;
	padding: 10px 15px;
	border: 1px solid var(--borderColor);
}

.main_article .single_part .previw_image .after{
	right: 0px;
}

.main_article .single_part .effect_compare{
	max-width: 600px;
	margin: 0px auto;
}
.main_article .single_part .effect_compare .previw_image{
	border: 1px solid var(--baseColor);
	margin-bottom: 40px;
}
.main_article .single_part .effect_compare .previw_image:last-child{
	margin-bottom: 0px;
}
.main_article .single_part .effect_compare .previw_image img{
	width: 100%;
}

.main_article .single_part .clinical_photos{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 25px;
	margin-top: 15px;
}
.main_article .single_part .clinical_photos .previw_image{
	margin-bottom: 0px;
}
.main_article .single_part .clinical_photos .previw_image img{
	width: 100%;
	height: 175px;
	-o-object-fit: cover;
	object-fit: cover;
	border: 1px solid var(--baseColor);
}
.main_article .single_part .clinical_photos span {
	width: 70px;
	padding: 2px 8px;
	font-size: 12px;
}


.main_article .weekly_report{
	margin-top: 15px;
}
.main_article .week_box{
	margin-bottom: 20px;
}
.main_article .week_box:last-child{
	margin-bottom: 0px;
}
.main_article .week_box .box_head{
	background: #DAE2E8;
	padding: 5px 15px;
	border: 1px solid var(--borderColor);
	text-align: center;
}
.main_article .week_box .box_head h4{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 0px;
}
.main_article .week_box .box_body{
	padding: 15px;
	border: 1px solid var(--borderColor);
	border-top: none;
	background: #F7F7F7;
}

.middle_content .left_image_texts{
	overflow: hidden;
}
.middle_content .left_image_texts .left_image{
	width: 300px;
	float: left;
	margin-right: 20px;
	margin-bottom: 1px;
	margin-top: 5px;
}
.middle_content .left_image_texts .left_image img{
	width: 100%;
}

.middle_content .bullet_points h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 10px;
}
.middle_content .bullet_points ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.middle_content .bullet_points ul li{
	list-style: none;
	margin-bottom: 5px;
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	position: relative;
	padding-left: 25px;
}
.middle_content .bullet_points ul li:last-child{
	margin-bottom: 0px;
}
.middle_content .bullet_points ul li:before{
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 16px;
	color: var(--baseColor);
	position: absolute;
	left: 0px;
	top: 0px;
}


.main_article .product_box {
	border: 2px dashed #CCCCCC;
	padding: 20px;
	text-align: center;
	padding-top: 5px;
	max-width: 580px;
	margin: 20px auto;
}
.main_article .product_box .product_image img{
	max-width: 300px;
}


/* ===== CSS For "Article" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Comments" Starts Here ===== */
.comments_wrap{
	margin-top: 20px;
}
.comments_wrap .title{
	background: #DAE2E8;
	padding: 10px 15px;
	border: 1px solid var(--borderColor);
	border-bottom: none;
}
.comments_wrap .title h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 0px;
}
.all_comments{
	border: 1px solid var(--borderColor);
	padding: 10px;
}
.all_comments .single_comment{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 10px 1fr;
    grid-template-columns: 50px 1fr;
    grid-auto-rows: auto;
    gap: 10px;
	border-bottom: 1px solid #DBDCDD;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.all_comments .single_comment:last-child{
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.all_comments .single_comment .profile_pic img{
	width: 50px;
	height: 50px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-top: 4px;
}
.all_comments .single_comment .the_comment{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;	
}
.all_comments .single_comment .the_comment h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 0px;
}
.all_comments .single_comment .the_comment p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	margin-bottom: 3px;
}
.all_comments .single_comment .the_comment ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.all_comments .single_comment .the_comment ul li{
	list-style: none;
	margin-right: 15px;
	display: inline-block;
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 12px;
}
.all_comments .single_comment .the_comment ul li:last-child{
	margin-right: 0px;
}
.all_comments .single_comment .the_comment ul li time{
	color: #666666;
}
.all_comments .single_comment .the_comment ul li a{
	color: var(--baseColor);
	font-weight: 400;
}
.all_comments .single_comment .comment_image{
	max-width: 450px;
	margin-bottom: 10px;
	margin-top: 5px;
}
.all_comments .single_comment .comment_image img{
	width: 100%;
}
/* ===== CSS For "Comments" Ends Here ===== */

/* ============================== */
/* ============================== */


.leave_a_comment{
	background: #F0F0F0;
	padding: 20px;
	border: 1px solid var(--borderColor);
	border-top: none;
}
.leave_a_comment .form_texts{
	margin-bottom: 15px;
}
.leave_a_comment h4{
	color: #000000;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 0px;
}
.leave_a_comment p{
	color: #000000;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0px;
}
.leave_a_comment .form-group{
	margin-bottom: 10px;
}
.leave_a_comment .form-control{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 15px;
	border: 1px solid #DBDCDD;
	border-radius: 3px;
	padding: 7.5px 10px;
	height: inherit;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.leave_a_comment .form-control:active,
.leave_a_comment .form-control:focus{
	box-shadow: none;
	border: 1px solid var(--baseColor);
}
.leave_a_comment .submit_button{
	text-align: right;
}
.leave_a_comment .submit_button .btn{
	color: #FFFFFF;
	background: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 16px;
	border-radius: 3px;
	border: none;
	padding: 7.5px 15px;
	min-width: 120px;
}

/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Sidebar" Starts Here ===== */
.sidebar .side_product_wrap{
	padding-top: 15px;
}
.sidebar .product_box{
	border: 1px solid var(--borderColor);
	padding: 15px;
	margin-bottom: 15px;
	text-align: center;
}
.sidebar .product_box .product_name{
	margin-bottom: 10px;
}
.sidebar .product_box .product_name a{
	color: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	display: block;
	text-decoration: none;
}
.sidebar .product_box .cta_btn{
	font-size: 18px;
	padding: 10px 15px;
}
.sidebar .product_box .cta_btn span {
	font-size: 24px;
	font-weight: 400;
	line-height: 20px;
	position: relative;
	top: 0px;
	margin-left: 3px;
}
/* ===== CSS For "Sidebar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	background: #353535;
	padding: 15px 0px;
	text-align: center;
}
.footer .site_links{
	margin-bottom: 10px;
}
.footer .site_links ul{
	margin-bottom: 0px;
	font-size: 0px;
}
.footer .site_links ul li{
	list-style: none;
	display: inline-block;
	margin-right: 15px
}
.footer .site_links ul li:last-child{
	margin-right: 0px;
}
.footer .site_links ul li a{
	color: #F0F0F0;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 13px;
	border-right: 1px solid #666666;
	padding-right: 15px;
}
.footer .site_links ul li:last-child a{
	border-right: none;
	padding-right: 0px;
}

.footer .copyright p{
	color: #F0F0F0;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 13px;
	margin-bottom: 0px;
	line-height: 1;
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */