@charset "utf-8";
/*====CSS Document====*/

body {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
	background: #ffffff;
	color: #000000;
	text-align: center;
    font-family: 'Inter';
	font-weight: 400;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin: 0;padding: 0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border: 0;}
a {outline: none;color: inherit;text-decoration: none;}
img {border: none; height: auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.img-full {max-width: 100%;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}

/*-----------------------
FONTS
------------------------*/
@font-face {
    font-family: 'Inter';
    src: url('Inter-SemiBold.woff2') format('woff2'),
        url('Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Bold.woff2') format('woff2'),
        url('Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Light.woff2') format('woff2'),
        url('Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Regular.woff2') format('woff2'),
        url('Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Medium.woff2') format('woff2'),
        url('Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



/*-----------------------
MAIN CSS START
------------------------*/

.container {
	width:1030px;
	margin:0 auto;
	padding:0;
	position:relative;
	}

/*-----TOP STRIP---*/
.top_strip{
	float:left;
	width:100%;
	padding:10px 0;
	background:#EDF2EF;
	}
.top_strip_txt{
	font-size:12px;
	line-height:16px;
	color:#646464;
	letter-spacing:0.3px;
	position:relative;
	margin-bottom:30px;
	}
.top_strip_txt a{
	font-weight:600;
	text-decoration:underline;
	cursor:pointer;
	}
.top_strip_txt a span{
	opacity:0;
	visibility:hidden;
	position:absolute;
	font-weight:normal;
	right:0;
	top:30px;
	left:0;
	padding:15px;
	background:#fff;
	z-index:99;
	box-shadow:0 0 9px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow:0 0 9px 0 rgba(0,0,0,0.2);
	}
.top_strip_txt a span:before{
	position:absolute;
	right:60px;
	top:-8px;
	border-bottom:10px solid #fff;
	border-left:10px solid transparent;
	border-right:10px solid transparent;
	content:"";
	}
.top_strip_txt a:hover span{
	opacity:1;
	visibility:visible;
	}

/*------HEADER-------*/	
.header_section{
	float:left;
	width:100%;
    background: #fff;
	}
header{
	float:left;
	width:100%;
	margin-bottom:70px;
	position:relative;
	z-index:9;
	}
.header__inner{
	float:left;
	width:100%;
	height:70px;
	margin-top: -70px;
	top:70px;
	position:relative;
	z-index:1;
	}
.fixed-nav .header__inner{
	width:100%;
	background:#fff;
	position: fixed;
	transition: margin .3s ease-out;
	-webkit-transition: margin .3s ease-out;
	margin-top:0;
	top:0;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
    box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);	
	}			
.logo{
	float:left;
	width:197px;
	margin-top:16px;
	}
ul.mainMenu{
	float: left;
	margin-left: 60px;
	margin-top: 25px;
	}
ul.mainMenu li{
	display: inline-block;
    vertical-align: top;
	padding:0 20px;
	}
ul.mainMenu li:first-child:before{ display:none;}
ul.mainMenu li:last-child{ border:none;}
ul.mainMenu li a{
	color: #262626;
	font-size: 16px;
	line-height: 24px;
	font-weight:600;
	letter-spacing:0.2px;
	}

/*ul.mainMenu li a:hover{ padding-bottom:2px; border-bottom:2px solid #103f82;}
ul.mainMenu li a.active{ padding-bottom:2px; border-bottom:2px solid #103f82;}*/
	
/*MOBILE MENU CSS*/
.mob-mnu-ic{
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 31px;
	z-index: 16;
	height: 30px;
	}
.mob-mnu-ic button{
	outline: none;
	-webkit-appearance: none;
	background: none;
	padding:0;
	cursor: pointer;
	border: none;
	margin:0;
	}
.mob-mnu-ic span{
	color:#000;
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3 {
	width: 25px;
	height: 2px;
	background-color: #000;
	transition: 0.4s;
	}
.bar2{margin: 5px 0;}
.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-6px, 3px);
	transform: rotate(-45deg) translate(-6px, 3px);
	background:#000;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -4px);
	transform: rotate(45deg) translate(-7px, -4px);
	background:#000;
	}
.mobilemenu{
	left:0;
	position:fixed;
	top:112px;
	background:#fff;
	z-index:64;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	border-top:1px solid #ddd;
	}
.mobimenu-top{ top:80px;}
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #ddd;
	}
.mobilemenu li a{
	float:left;
	width:100%;
	padding:17px 20px;
	font-size:16px;
	letter-spacing:0.3px;
	color:#000;
	}
.mobilemenu li a.header-btn {
	float: left;
	width: 150px;
	font-size: 18px;
	color: #ffffff;
	height: 42px;
	line-height: 40px;
	font-weight: 600;
	margin:10px 0;
	border-radius: 20px;
	background: #19c354;
	padding:0;
	text-align:center;
	}
	
.fixed-nav .header .bar1{ background-color:#000;}
.fixed-nav .header .bar2{ background-color:#000;}
.fixed-nav .header .bar3{ background-color:#000;}
	

/*-------Banner------*/
.banner{
	float:left;
	width:100%;
	background:#EDF2EF;
    position: relative;
	overflow:hidden;
	}
.banner__row{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	}
.banner_left{
	width:61%;
    text-align: left;
	padding:50px 0 75px;
	position:relative;
	z-index: 2;
	}
.banner_top-list{
	display: flex;
    display: -webkit-flex;
	gap: 13px;
	}
.banner_top-list li{
	display: flex;
    display: -webkit-flex;
	align-items: center;
	column-gap: 5px;
	text-align: left;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    padding: 10px 10px;
    position: relative;
	}
.banner_top-list li img{
	width:15px;
	}
.banner_top-list li p{
	font-size:12px;
	line-height:15px;
	letter-spacing:0.2px;
	color:#000;
	font-weight:600;
	}
.banner_heading{
	font-size: 36px;
    line-height: 44px;
    font-weight: bold;
    color: #010233;
    margin-top: 15px;
	}
.banr_flag{
	display:inline-block;
	vertical-align:middle;
	width:38px;
	}
.banner_para{
	font-size: 17px;
    line-height: 26px;
	letter-spacing:0.2px;
    color: #1b1b1b;
    margin-top: 15px;
	}

.banner_prod{
	position:absolute;
	right:-130px;
	top:0;
	}

/*==========================*/
.top_picks-section{
	float:left;
	width:100%;
	padding:0 0 40px;
	border-bottom:1px solid #ddd;
	text-align:left;
	}
.date_box{
	display:inline-block;
	vertical-align:top;
	background:#fff;
	border-radius:10px;
	-webkit-box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
	padding:12px 45px 12px 45px;
	margin-top:-30px;
	position:relative;
	}
.calender-icn{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:15px;
	width:19px;
	}
.date_box p{
	color: #191919;
    font-size: 12px;
    line-height: 17px;
	letter-spacing:0.3px;
    text-align: left;
	}
.date_box p span{
	color:#010233;
	font-size:13px;
	font-weight:bold;	
	}
.top_pick-hdng{
	font-size:22px;
	line-height:30px;
	color:#010233;
	font-weight:bold;
	margin-top:30px;
	text-align:left;
	}
ul.top_comapny-list{
    display: flex;
	display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
	gap: 20px;
	margin-top:25px;
	}
ul.top_comapny-list li{
	display: flex;
    align-items: center;
    justify-content: space-between;
	width: 100%;
	border:1px solid #c2c2c2;
	border-radius:10px;
	}
ul.top_comapny-list li.active{
	min-width:360px;
	border:2px solid #1b7dd8;
	box-shadow:0 0 9px 2px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 0 9px 2px rgba(0,0,0,0.2);
	}
ul.top_comapny-list li a{
	display: flex;
    align-items: center;
    justify-content: space-between;
	width: 100%;
	gap: 25px;
	padding:10px 12px;
	}
.comapny-list-name{
	display: flex;
    align-items: center;
    justify-content: center;
	column-gap: 15px;
	text-align:left;
	}
.comapny-list-no{
	text-align:center;
	}
.comapny-list-no img{
	display:block;
	margin:0 auto;
	width:27px;
	}
.comapny-list-no span{
	font-size:26px;
	line-height:30px;
	font-weight:bold;
	color:#010233;
	}
.comapny-list-logo{
	text-align:left;
	}
.comapny-list-logo img{
	max-width:100%;
	width:155px;
	}
.comapny-list-logo img.comapny-list_remedymeds-logo{
	width:150px;
	}
.comapny-list-logo img.comapny-list_gplans-logo{
	width:100px;
	}
.comapny-list-logo p{
	font-size:14px;
	line-height:20px;
	color:#1b7dd8;
	font-weight:500;
	text-decoration:underline;
	}
.comapny-list-rating{
	display: flex;
    align-items: center;
    justify-content: center;
	width:65px;
	height:65px;
	text-align:center;
	border-radius:10px;
	font-size:26px;
	line-height:26px;
	font-weight:bold;
	color:#000;
	background:#efefef;
	flex-shrink: 0;
	}
ul.top_comapny-list li.active .comapny-list-rating{
	background:#1b7dd8;
	color:#fff;
	width:70px;
	height:70px;
	font-size:29px;
	line-height:29px;
	}
	
/*========sectionOne========*/
.sectionOne{
	float:left;
	width:100%;
    position: relative;
	padding:30px 0 30px;
	}
.medication_row{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width:100%;
	margin:0 auto;
	}
.medication_row-left{
	width:60%;
	text-align:left;
	}
.common_heading{
	color: #010233;
    font-size: 36px;
    line-height: 44px;
    font-weight: bold;
    text-align: left;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
	}
.common_text{
	font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #1b1b1b;
    margin-top: 30px;
	}
.medication_row-right{
	width:37%;
	}
.medication-rght-img{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
	
/*BEST_EDITER*/
.editor_choice-section{
	float:left;
	width:100%;
	margin-top:30px;
	}
.best-editor-row{
	float:left;
	width:100%;	
	transition:all ease 0.5s;
	border:1px solid #cccccc;
	border-radius:10px;
	padding:25px 20px 25px;
	margin-top:30px;
	background:#fff;
	
	display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
	position:relative;	
	}
.best-editor-row1{
	border:3px solid #1b7dd8;
	transition:all ease 0.5s;
	box-shadow:0px 0 25px -5px rgba(0,0,0,0.5);
	}
.free-tag{
	position:absolute;
    top:-1px;
    right:-1px;
	width:70px;
	height:70px; 
	color:#fff;
    font-size:14px;
    line-height:16px;
	font-weight:bold;
	text-transform:uppercase;
	border-radius:0 8px 0 0;
	background:#1b7dd8;
	clip-path:polygon(100% 0, 0 0, 100% 100%);
	padding:5px 0 0 30px;
	}
.best-editor-row-left{
    width:32%;
	position:relative;
	padding-right: 15px;
	}
.best-ribbon{
	position:absolute;
    top:15px;
    left:-14px;
	color:#fff;
    font-size:12px;
    line-height:12px;
	letter-spacing:0.3px;
	background:#1b7dd8;
    padding:11px 20px 11px 22px;
	}
.best-ribbon:before{
	content:'';
	position:absolute;
	top:0;
	right:-1px;
	bottom:0;
	clip-path: polygon(0% 50%, 105% 0, 105% 100%, 0% 50%);
    border-right:8px solid #fff;	
	}	
.best-ribbon:after{
	content:'';
	position:absolute;
	left:0;
	bottom:-12px;
	border-top:12px solid #1160aa;
    border-left:12px solid transparent;	
	}
.editor_logo-col{
	display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 25px;
    text-align: left;
	}
.num-bx{
	text-align:center;
	}
.num-bx p{
	color:#000;
	font-size:34px;
	line-height:37px;
	font-weight:500;
	}
.num-icn{
	width:27px;
	}
.best-logo{
	text-align:left;
	}
.best_com-logo{
	display:inline-block;
	vertical-align:top;
	max-width:100%;
	}
.best-logo p{
	font-size: 14px;
    line-height: 22px;
	margin-top:10px;
	}
.best-logo p img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 5px 0 0;
	}
.best-logo p a{
    color: #1b7dd8;
    font-weight: 500;
    text-decoration: underline;
	}

.best-editor-row-cntnt{
	width:31%;
	}	
.best-editor-list{
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
	}
.best-editor-list li{
	color:#010233;
	font-size:16px;
    line-height:24px;
	text-align:left;
    background: url(green-tik.png)no-repeat left 7px;
	background-size:15px;
    padding-left:25px;
	font-weight:500;
	}
.best-editor-list li img{
	display:inline-block;
	vertical-align:middle;
	margin:-5px 0 0;
	width:85px;
	}
.best-editor-row-rev{
	width:18%;
    text-align:center;
	padding:0 15px;
	}
.rev-txt1{
	color:#010233;
	font-size:18px;
	line-height:28px;
	margin-bottom:3px;
	}
.rating-txt{
	display:inline-block;
	vertical-align:middle;
	color:#000;
	font-size:36px;
	line-height:36px;
	font-weight:700;
	background:#efefef;
    border-radius:6px;
    padding:25px 16px
	}	
.best-editor-row1 .rating-txt{
	color:#fff;
	background:#1b7dd8;
	}
.rev-txt2{
	color:#636363;
	font-size:12px;
	line-height:20px;
	margin-top:5px;
	}
.best-editor-row-btn{
	width:210px;
    text-align:center;
	flex-shrink: 0;
	}
.best-btn-txt{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	max-width:167px;
	color:#000;
	font-size:12px;
	line-height:14px;
	border-radius:5px;
	background:#fffeed;
	border:2px dashed #eaca92;
	padding:6px 10px;
	letter-spacing:0.3px;
	font-weight:600;
	margin-bottom:10px;
	position:relative;
	}
.best-btn-txt:before{
    content:'';
    position:absolute;
    bottom:-5px;
    left:20px;
    width:6px;
    height:6px;
    border-top:2px dashed #eaca92;
    border-right:2px dashed #eaca92;
    transform:rotate(135deg);
    background:#fffeed;
	}
a.best-row-btn{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	height:45px;
	color:#000000;
	font-size:16px;
	line-height:41px;	
	font-weight:bold;
	text-align:center;
	border-radius:5px;
	background:#fff;
	border-radius:5px;
	border:2px solid #000000;
	position:relative;
	text-transform: uppercase;
	}
.best-editor-row1	 a.best-row-btn{
	background:#f05742;
	color:#fff;
	border:2px solid #f05742;
	font-weight:bold;
	}
.instock{
	font-size:11px;
	line-height:16px;
	color:#000;
	margin-top:5px;
	}
.instock:before{
	content:"";
	display:inline-block;
	vertical-align:middle;
	width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a9f39;
	margin:-1px 5px 0 0;
    animation: breath 1.3s infinite;
	}
@keyframes breath{
	0% { opacity:1;}
	50% { opacity:0.2;}
	100% { opacity:1;}
	}
.btn-slider {
	float: left;
	width:130%;
	height:55px;
	background: url(btn_flsh.png) no-repeat;
	animation: AnimationName 2s cubic-bezier(0.43, 0.61, 1, 1) infinite;
	-webkit-animation: AnimationName 2s cubic-bezier(0.43, 0.61, 1, 1) infinite;
	position: absolute;
	left:-50px;
	top:-5px;
	z-index: 9;
	}

@-webkit-keyframes AnimationName {
    100%{background-position:100% 50%}
   	0%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    100%{background-position:100% 50%}
   	0%{background-position:0% 50%}
}
@-o-keyframes AnimationName {
    100%{background-position:100% 50%}
   	0%{background-position:0% 50%}
}
@keyframes AnimationName {
    100%{background-position:100% 50%}
   	0%{background-position:0% 50%}
}
	
	
/*===weightloss_pick-sec===*/
.weightloss_pick-sec{
	float:left;
	width:100%;
	margin-top:55px;
	}
.weightloss_heading{
	color: #010233;
    font-size: 36px;
    line-height: 44px;
    font-weight: bold;
    text-align: left;
	}
.futurhealth_box{
	float:left;
	width:100%;
	border:3px solid #1b7dd8;
	border-radius:10px;
	padding:25px 35px;
	margin-top:40px;
	box-shadow:0 0 15px 1px rgba(0,0,0,0.2);
	}
.futurhealth_box-top{
	display: flex;
    display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
	}
.futurhealth_box-top_left{
	width:35%;
	text-align:left;
	display: flex;
    display: -webkit-flex;
	align-items: center;
	gap: 15px;
	}
.futurhealth_box-top_left span{
	font-size:40px;
	line-height:40px;
	color:#000;
	font-weight:700;
	}
.futurhealth_box-top_left img{
	max-width:100%;
	display:inline-block;
	}
.futurhealth_box-save{
	font-size:18px;
	line-height:24px;
	color:#018ad7;
	font-weight:500;
	text-decoration:underline;
	}
.futurhealth_box-save:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a9f39;
    margin: -1px 8px 0 0;
    animation: breath 1.3s infinite;
	}
.futurhealth_rating{
	display: flex;
    display: -webkit-flex;
	align-items: center;
	justify-content: end;
	gap: 7px;
	text-align:left;
	width:23%;
	}
.futurhealth_rating-txt1{
	display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
	width: 52px;
    height: 50px;
    color: #fff;
    font-size: 21px;
    line-height: 26px;
    font-weight: 700;
    background: #1b7dd8;
    border-radius: 4px;
    padding: 10px 5px;
    text-align: center;
	}
.futurhealth_rating-txt2{
	color: #636363;
    font-size: 11px;
    line-height: 17px;
	}
.futurhealth_rating-txt2 span{
	color:#010233;
	font-size:16px;
	font-weight:600;
	}
.futurhealth_box-mdl{
	display: flex;
    display: -webkit-flex;
	flex-wrap: wrap;
    justify-content: space-between;
	}
.futurhealth_box-mdl-left{
	width:50.50%;
	margin-top:30px;
	}
.futurhealth-banr{
	display:block;
	margin:0 auto;
	width:100%;
	border:2px solid #1b7dd8;
	}
.futurhealth_box-mdl-right{
	width:46%;
	text-align:left;
	}
.whats_include-text{
	font-size:16px;
	line-height:22px;
	color:#000000;
	font-weight:600;
	margin-top:20px;
	text-decoration: underline;
	}
ul.inlude_list{
	display: flex;
	display: -webkit-flex;
    flex-wrap: wrap;
    flex-direction: column;
	margin-top:20px;
    gap: 7px;
	}
ul.inlude_list li {
    color: #010233;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    background: url(black-tik.png) no-repeat left 7px;
    background-size: 15px;
    padding-left: 27px;
    font-weight: bold;
	letter-spacing:0.3px;
	}
.take_quiz-btnbox{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	margin-top:28px;
	}
.take_button{
	display: inline-block;
    vertical-align: middle;
    width: 100%;
    color: #fff;
    font-size: 22px;
    line-height: 24px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    background: #f05742;
    border-radius: 5px;
	letter-spacing:0.3px;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
	}
.take_button-slider {
    float: left;
    width: 114%;
    height: 75px;
    background: url(btn_flsh.png) no-repeat;
    animation: AnimationName 3s cubic-bezier(0.43, 0.61, 1, 1) infinite;
    -webkit-animation: AnimationName 3s cubic-bezier(0.43, 0.61, 1, 1) infinite;
    position: absolute;
    left: -50px;
    top: -5px;
    z-index: 9;
	}
/*=======sectionTwo========*/
.sectionTwo{
	float:left;
	width:100%;
	padding:30px 0 60px;
	}
.sec2_row{
	float:left;
	width:100%;
	}
.sec2_left{
	float:left;
	width:64%;
	text-align:left;
	}
.sec2_video-box{
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-top:30px;
	background:#000;
	border:1px solid #fff;
	box-shadow:0 0 9px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow:0 0 9px 0 rgba(0,0,0,0.2);
	}
.sec2_vdo-img{
	display:inline-block;
	vertical-align:top;
	width:100%;
	cursor:pointer;
	}
.sec2_video-box video{
	display:inline-block;
	vertical-align:middle;
	height:710px;
	object-fit: contain;
	}
ul.sec2_list{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 40px;
    gap: 35px;
	}
ul.sec2_list li{
	text-align:left;
	padding-left:32px;
	background: url(green-tik2.png) no-repeat left 8px;
    background-size: 18px;
	}
ul.sec2_list li h3{
	font-weight:bold;
	font-size:20px;
	line-height:28px;
	color:#000000;
	}
ul.sec2_list li p{
	font-size:18px;
	line-height:26px;
	letter-spacing:0.3px;
	color:#000000;
	margin-top:8px;
	}
.story_box{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	justify-content: space-between;
    margin-top: 30px;
    row-gap: 5px;
	}
.story_box-col{
	width:calc(25% - 4px);
	}
.story_box-col img{
	display:inline-block;
	vertical-align:middle;
	max-width:100%;
	border-radius:4px;
	}
.review_sec{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	width:100%;
	}
.review_sec-row{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	align-items: center;
	margin-top:40px;
	width:100%;
	}
.review_image-box{
	width:322px;
	display: flex;
    display: -webkit-flex;
	justify-content: space-between;
    flex-wrap: wrap;
	}
.review_image-box-col{
	width:49%;
	border:2px solid #fff;
	border-radius:10px;
	overflow:hidden;
	position:relative;
	box-shadow:0 0 9px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 0 9px 1px rgba(0,0,0,0.2);
	}
.review_image-box-col img{
	width:100%;
	display:block;
	margin:0 auto;
	}
.review_image-box-col p{
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.6);
	font-size:13px;
	font-weight:bold;
	color:#fff;
	padding:6px;
	text-align:center;
	}
.review_content{
	width:calc(100% - 322px);
	padding-left:25px;
	text-align:left;
	}
.review_text{
	font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.3px;
    color: #000000;
	}
.review_name{
	font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.3px;
    color: #000000;
	font-weight:500;
	margin-top:20px;
	}
.review_name span{
	font-size:13px;
	font-weight:400;
	padding-left:10px;
	}
.review_name span svg{
	display:inline-block;
	vertical-align:middle;
	width:17px;
	height: 17px;
	margin:-3px 3px 0;
	color:#62ba4a;
	}
.glp_medication{
	width:100%;
	display: flex;
    display: -webkit-flex;
	justify-content: space-between;
    flex-wrap: wrap;
	}
.glp_medication-left{
	width:50%;
	text-align:left;
	}
.glp_medication-right{
	width:45%;
	margin-top:30px;
	}
.glp-prod{
	display:block;
	margin:0 auto;
	max-width:100%;
	width:282px;
	}
ul.glp_medication-list{
	display: flex;
    flex-wrap: wrap;
	display: -webkit-flex;
    flex-direction: column;
    gap: 9px;
	margin-top:20px;
	}
ul.glp_medication-list li{
	color: #000;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    background: url(green-tik.png) no-repeat left 7px;
    background-size: 15px;
    padding-left: 26px;
    font-weight: 500;
	}
.sec2_right{
	float:right;
	width: 100% !important;
	}
.rating_system-box{
	float:left;
	width:100%;
	text-align:left;
	background:#fff;
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
	border-radius:10px;
	padding:25px 25px 28px;
	margin-top:70px;
	}
.rating_system-hdg{
	color:#010233;
	font-size:26px;
    line-height:34px;	
	font-weight:bold;
	}
.rating_system-para{
	color:#000;
	font-size:14px;
    line-height:22px;	
	font-weight:300;
	margin-top:13px;
	}
ul.rating_system-list{
	display: flex;
    flex-wrap: wrap;
    display: -webkit-flex;
    flex-direction: column;
    margin-top:15px;
	}
ul.rating_system-list li{
	color:#010233;
	font-size:14px;
    line-height:22px;
	font-weight:300;	
	text-align:left;
	padding-left:22px;
	margin-top:5px;
	position:relative;
	letter-spacing:0.2px;
	}
ul.rating_system-list li:before{
	content:'';
	position:absolute;
	top:7px;
	left:0;
	width:7px;
	height:7px;
	background:#1b7dd8;
	border-radius:50%;
	}	
	
	
.editor-choice-bx{
	float: left;
    width: 100%;
	border:3px solid #1b7dd8;
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
	border-radius:10px;
	margin-top:30px;
	position:relative;	
	}	
.choice-bx-top{
	float:left;
	width:100%;
	background:#fff;
	border-radius:10px 10px 0 0;
	padding:90px 20px 20px;
	}
.choice-ribbon-tag{
	position:absolute;
    top:20px;
    left:-18px;
	color:#fff;
    font-size:22px;
    line-height:22px;
	font-weight:bold;
	text-align:left;
	background:#1b7dd8;
    padding:9px 40px 9px 45px;
	}
.choice-ribbon-tag:before{
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	right:-1px;
	background:#1b7dd8;
	border-right:15px solid #fff;
	clip-path: polygon(0% 50%, 105% 0, 105% 100%, 0% 50%);
	}	
.choice-ribbon-tag:after{
	content:'';
	position:absolute;
	left:0;
	bottom:-15px;
	border-top:15px solid #1160aa;
    border-left:15px solid transparent;	
	}
.choice-bx-logo{
	display:block;
	margin:0 auto;
	}
.choice-rating-bx{
	float:left;
	width:100%;
	color:#636363;
	font-size:10px;
    line-height:20px;	
	margin-top:30px;
	}
.choice-complmt{
	color:#010233;
	font-size:15px;	
	font-weight:600;	
	}
.choice-rating-txt{
	display:inline-block;
	vertical-align:middle;
    color:#fff;
    font-size:16px;
    line-height:16px;
    font-weight:bold;
    background:#1b7dd8;
    border-radius:4px;
    padding:10px 8px;
	margin:-2px 5px 0 6px;
	}
.choice-bx-btm{
	float:left;
	width:100%;
	background:#f9f9f9;
	border-radius:0 0 10px 10px;
	padding:10px 25px 25px;
	}
ul.choice-bx-list{
	display: flex;
    flex-wrap: wrap;
    display: -webkit-flex;
    flex-direction: column;
	}
ul.choice-bx-list li{
	color:#010233;
	font-size:17px;
    line-height:23px;
	text-align:left;
    background: url(green-tik2.png)no-repeat left 7px;
	background-size:15px;
    padding-left:25px;	
	margin-top:15px;
	}
.choice-bx-btn{
	display:inline-block;
    vertical-align:middle;
	max-width:200px;
    width:100%;
	height:45px;
	color:#fff;
    font-size:16px;
    line-height:45px;
    font-weight:bold;
    text-align:center;
	text-transform:uppercase;
    background:#f05742;
    border-radius:5px;
	letter-spacing:0.3px;
    margin-top:25px;
    cursor:pointer;
	position:relative;
	}
.sec2_right-review{
	float:left;
	width:100%;
	margin-top:50px;
	}
.sec2_right-review-hdng{
	font-size:26px;
	line-height:32px;
	color:#010233;
	font-weight:bold;
	text-align:left;
	}
.sec2_right-review .review_sec-row{
	margin-top:25px;
	padding:0 7px;
	}
.sec2_right-review .review_content{
	width:100%;
	margin-top:20px;
	padding:0 5px 20px;
	border-bottom:1px solid #ddd;
	}
.sec2_right-review .review_sec-row:last-child .review_content{ border:none;}

/*sectionThree*/
.sectionThree{
	float:left;
	width:100%;
	padding:30px 0 60px;
	}
	

/*====footer====*/
footer{
	float:left;
	width:100%;
	padding:40px 0;
	border-top:1px solid #ddd;
	}
.footer_content{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	text-align:center;
	justify-content: center;
	}
.footer_logo{
	display:block;
	margin:0 auto 30px;
	width:197px;
	}
.footer_links{
	color:#000000;
	font-size:16px;
	line-height:22px;
	letter-spacing:0.5px;
	margin-bottom:15px;
	}
.footer_links a{color:#000000;}

.copyright_text{
	color:#000000;
	font-size:16px;
	line-height:26px;
	letter-spacing:0.3px;
	}	

		
/*-----------------------
MEDIA-QUERY
------------------------*/
.show-mob, .show-tab{display:none;}
.margin-50{ margin-top:50px;}

@media only screen and (max-width: 1200px){
.container{width:1004px;}



}

@media only screen and (max-width:1021px){	
.container{width:750px;}
.show-tab{ display:block;}
.show-desk{ display:none;}

ul.mainMenu li{ padding:0 15px;}
ul.mainMenu li a{ font-size:15px;}

.top_strip_txt a span{ top:40px;}

.banner_left{padding: 40px 0 60px;}
.banner_heading{font-size: 36px; line-height: 40px;}
.banner_para{font-size: 16px; line-height: 25px;}
.banner_prod{right: -130px;width: 430px;}

ul.top_comapny-list{gap: 10px;}
ul.top_comapny-list li a{gap: 15px;padding: 10px 10px;}
ul.top_comapny-list li.active{min-width: 270px;}
.comapny-list-name{column-gap: 10px;}
.comapny-list-rating{width: 50px;height: 50px;font-size: 18px;  line-height: 26px;border-radius: 6px;}
ul.top_comapny-list li.active .comapny-list-rating {width: 55px;height: 55px; font-size: 22px;line-height: 27px;border-radius: 6px;}
.comapny-list-no img{ width:20px;}
.comapny-list-logo p {font-size: 10px; line-height:12px;}

.medication_row{align-items: self-start;}
.common_heading{font-size: 30px; line-height: 36px;padding-bottom: 15px;}
.common_text{ margin-top:25px;font-size: 16px; line-height: 24px;}

.best-editor-row{ padding:25px 15px;}
.best-ribbon{ top:10px;}
.best-editor-row-left{width: 28%;}
.editor_logo-col{column-gap: 15px;}
.rev-txt1{ font-size:16px; line-height:22px;}
.rating-txt {font-size: 30px;line-height: 30px;padding: 24px 17px; }
.best-editor-row-btn{width: 180px;}
.best-editor-row-cntnt {width: 33%;}
.best-editor-list{gap: 7px;}
.best-editor-list li{font-size: 14px; line-height: 22px;padding-left: 22px;}

.futurhealth_box{padding: 25px 25px;}
.futurhealth_box-top_left{ width:26%;}
.futurhealth_box-save{font-size: 15px;line-height: 24px;}
.futurhealth_rating{width: 26%;}
.futurhealth_box-mdl-left{ width:100%;}
.futurhealth_box-mdl-right{ width:100%;}
.take_button-slider{width: 105%;left: -23px;}

ul.sec2_list li p{font-size: 16px;line-height: 24px;}

.review_content{ width:100%; padding:0; margin-top:25px;}
.review_text {font-size: 16px;line-height: 24px;}
.review_name{font-size: 16px; line-height: 25px;}
.review_name { font-size: 15px;line-height: 25px;margin-top: 15px;}
.review_name span{font-size: 11px; padding-left: 6px;}
.review_name span svg { width: 13px;height: 13px; margin: -1px 0px 0;}

.rating_system-box{padding: 20px 20px 25px;}
.rating_system-hdg {font-size: 20px;line-height: 24px;}


.choice-bx-top{padding:65px 15px 15px;}
.choice-ribbon-tag{top:10px; font-size:14px; line-height:24px; padding:8px 28px 8px 30px;}
.choice-bx-logo{width:160px;}
.choice-rating-bx{margin-top:20px;}
.choice-complmt{font-size:10px;}
.choice-rating-txt{font-size:14px; line-height:13px; padding:10px 5px; margin:-2px 3px 0;}
.choice-bx-btm{padding:10px 20px 25px;}
ul.choice-bx-list li{font-size: 15px;line-height: 22px;margin-top: 10px;}



}

@media only screen and (max-width:767px){
.container{ max-width:600px; width:100%; padding:0px 15px; box-sizing:border-box;}
.show-mob{ display:block;}
.hide-mob{ display:none;}

.top_strip{ padding:5px 0;}
.top_strip_txt a span{ padding:10px; font-size:10px; line-height:14px; top:58px;}

header{margin-bottom: 60px;}
.header__inner{height: 60px;margin-top: -60px;top: 60px;}
.logo {width: 156px; margin-top: 13px;}
.mob-mnu-ic{ top:22px;}
.mobilemenu{top: 70px;}
.mobimenu-top {top: 60px;}
.mobilemenu li a{ font-size:14px;}


.banner_prod{ display:none;}
.banner_left{ width:100%; padding:20px 0 0;}
.banner_top-list{gap: 10px;}
.banner_top-list li{ padding:5px 10px;column-gap: 7px;}
.banner_top-list li img {width: 18px;}
.banner_top-list li p { font-size: 10px; line-height: 12px; letter-spacing: 0.3px;}
.banner_heading {font-size: 30px; line-height: 36px;}
.banr_flag {width: 30px;}
.banner_prod-mob{ display:inline-block; vertical-align:top;width: calc(100% + 30px);margin-left: -15px;max-width: none; margin-top:-20px;}


.top_picks-section{ padding:0 0 20px;}
.date_box{ margin-top:-15px;padding: 5px 25px 5px 45px;border-radius: 5px;}
.date_box p{ font-size:11px; line-height:14px;}
.date_box p span{ font-size:12px;}
.calender-icn{ left:13px;}
.top_pick-hdng{font-size: 18px; line-height: 20px;}


ul.top_comapny-list{float:none;	margin-top:5px;	display:block; width:calc(100% + 30px);	margin-left:-15px;	padding-left:5px; overflow-x:scroll; overflow-Y:hidden;	white-space: nowrap; padding-bottom:10px; -ms-overflow-style:none; scrollbar-width:none; padding-right:10px;}
ul.top_comapny-list li{width:280px;margin-top:16px; display:inline-block;vertical-align: middle; white-space:normal; margin-left:3%;}
ul.top_comapny-list li a{padding: 15px 10px;}
ul.top_comapny-list li.active {min-width: auto;margin-top:15px;}
ul.top_comapny-list::-webkit-scrollbar { display: none;}

.comapny-list-name{ width:calc(100% - 60px);float: left;column-gap: 15px;justify-content: flex-start; min-height:50px;}
.comapny-list-no img {width: 18px;}
.comapny-list-no span {font-size: 24px; line-height: 23px;}
.comapny-list-rating{ float:right;}
.comapny-list-logo img {width: 130px;}
ul.top_comapny-list li.active .comapny-list-rating{width: 50px; height: 50px;  font-size: 20px;line-height: 26px;}


.medication_row-left{ width:100%;}
.common_heading {font-size: 28px;line-height: 34px;padding-bottom: 15px;}
.common_text{font-size: 15px; margin-top:20px;}
.medication_row-right{ width:100%; margin-top:20px;}

.sectionOne{ padding:30px 0 20px;}

.editor_choice-section{ margin-top:15px;}
.best-editor-row{padding:20px 15px; margin-top:20px;justify-content: center;flex-wrap: wrap;}
.best-editor-row1{border-radius:0 10px 10px 10px; padding-top:25px; margin-top:45px;}
.best-ribbon{top:-25px; left:-3px; padding:7px 12px 5px 15px; border-radius:3px 3px 0 0;}
.best-ribbon:after,.best-ribbon:before{ display:none;}
.free-tag{width: 55px;height: 52px;font-size: 11px; line-height: 12px;padding: 6px 0 0 30px;}

.best-editor-row-left{width:100%; padding-left:0;display: -webkit-flex; display: flex;justify-content: space-between; flex-wrap: wrap;align-items: center; padding-bottom:15px; border-bottom:1px solid #ddd; padding-right:0;}

.editer-para-m{ margin-top:10px;color: #010233;font-size: 15px;line-height: 24px;text-align: left;}
.editor_logo-col{ width:calc(100% - 145px);   align-items: center;}
.best_com-logo{height: 30px;width: auto;object-fit: contain;}

.num-bx { width: 20px;display: flex;align-items: center;justify-content: center;flex-direction: column;}
.num-icn {width: 15px;}
.num-bx p {font-size: 22px;line-height: 22px;}
.best-logo p {font-size: 9px; line-height: 18px;margin-top: 3px;}
.best-logo p img {width: 13px;}

.mob-rev-bx{float:right;width:100px;display: -webkit-flex; display: flex; flex-wrap: wrap;align-items: center;}
.rate-txt{display:inline-block; vertical-align:middle; width:30px; color:#000; font-size:14px; line-height:16px; font-weight:700; background:#efefef; border-radius:4px; padding:7px 3px 8px;}
.best-editor-row1 .rate-txt{background:#1b7dd8; color:#fff;}
.rev-txt{width:calc(100% - 30px); padding-left:7px;	text-align:left; color:#636363;	font-size:9px; line-height:12px;}
.rev-txt span{color:#010233; font-size:13px; font-weight:600;}

.best-btn-txt {font-size: 13px;padding: 8px 8px; max-width:100%;}
.best-editor-row-cntnt{width:100%; margin-top:5px;}
.best-editor-list{ margin:15px auto 0; width:260px;}
.best-editor-list li{ letter-spacing:0.2px;}
.best-editor-row-rev{width:100%; margin-top:20px;}
.rev-txt1{font-size:16px; line-height:26px;}
.best-editor-row-btn{width:100%; margin-top:18px; max-width:100%; padding:0 10px; max-width:324px;}
.btn-slider{width: 120%;left: -10%;}

.weightloss_pick-sec{ margin-top:30px;}
.weightloss_heading {font-size: 29px; line-height: 33px;}
.futurhealth_box{ margin-top:25px;padding: 20px 15px;}
.futurhealth_box-top_left {width: 42%;gap: 10px;}
.futurhealth_box-top_left span {font-size: 30px;line-height: 30px;}
.futurhealth_rating {width: 43%;}
.futurhealth_rating-txt1{width: 32px;height: 32px;padding: 5px 5px;font-size: 13px; line-height: 20px;}
.futurhealth_rating-txt2 {font-size: 9px;line-height: 15px;}
.futurhealth_rating-txt2 span {font-size: 13px;}
.futurhealth_box-mdl-left{ margin-top:20px;}
ul.inlude_list li{ font-size: 15px;}
.take_button{padding: 15px 0;font-size: 16px;}
.take_button-slider{width: 110%;left: -5%;}
.futurhealth_box-save{ text-align:center; margin-top:15px;}


.sectionTwo{ padding:20px 0 0;}
.sec2_left{ width:100%;}
.sec2_video-box{ margin-top:20px;}
.sec2_video-box video{ height:390px;}
ul.sec2_list{ margin-top:25px;gap: 25px;}
ul.sec2_list li h3{ font-size:17px; line-height:23px;}
ul.sec2_list li p { font-size: 15px;line-height: 23px;}
.story_box{ margin-top:20px;}
.review_sec-row{justify-content: center;margin-top: 30px;}
.review_content {  margin-top: 25px; text-align: center; padding: 0 5px 20px; border-bottom: 1px solid #ddd;}
.review_sec-row:last-child .review_content {border: none; padding-bottom:0;}
.review_name span{ font-size:12px;}
.review_name span svg { width: 17px;height: 17px;margin: -3px 0px 0;}
.sec2_right-review .review_sec-row{margin-top: 30px;}

.glp_medication {flex-direction: column-reverse;}
.glp_medication-left{ width:100%;}
ul.glp_medication-list{gap: 7px;margin-top: 15px;}
ul.glp_medication-list li{ font-size:15px; letter-spacing:0.3px;}
.glp_medication-right{ width:100%;margin-top: 20px;}
.glp-prod{ width:200px;}

.sec2_right{width:100%;}
.rating_system-box{ margin-top:30px;width: 94%;margin-left: 3%;}
.editor-choice-bx{width: 94%;margin-left: 3%;}
.choice-rating-bx{font-size: 13px;}
.choice-complmt {font-size: 14px;}
.choice-ribbon-tag {top: 10px;font-size: 14px;line-height: 24px;padding: 5px 25px 6px 15px;left: -15px;}
.choice-ribbon-tag:after{border-left: 12px solid transparent;}

.sectionThree{ padding:30px 0 40px;}

.margin-50 {margin-top: 35px;}

footer{ padding:30px 0;}
.footer_logo{ width:150px;margin: 0 auto 20px;}
.footer_links{font-size: 13px;line-height: 22px;margin-bottom: 8px;}
.copyright_text { font-size: 14px; line-height: 20px;}


}