
:root {
	--theme-color-green: #23F197;
	--theme-color-red: #B31F24;
}

html body .bg-gray-light {
	background-color: #ededed;
}

html body .bg-theme {
	background-color: #161c2e;
	color: #ffffff;
}

html body .bg-black {
	background-color: #111423;
	color: #ffffff;
}

html body .bg-red {
	background-color: #ac1027;
	color: #ffffff;
}

html body .bg-white {
	background-color: #ffffff;
}

html body .bg-green {
	background-color: var(--theme-color-green);
	color:#051C3A;
}

html body .bg-gradient-black-red {
	background: linear-gradient(103deg, #121628 20%, #B31F24 100%);
	color: #ffffff;
}

html body .bg-gradient-black-blue {
	background: linear-gradient(103deg, #121628 20%, #212F72 100%);
	color: #ffffff;
}

html body .bg-gradient-black-blue-red-animated {
	background: #212F72;
	background: linear-gradient(103deg, #121628 20%, #212F72 100%);
	color: #ffffff;
	position: relative;
}

html body .bg-gradient-black-blue-red-animated:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(103deg, #121628 20%, #B31F24 100%);
	animation: bgAnimation 8s linear infinite;
}

@keyframes bgAnimation {
	0% {
		opacity: 0;
	}
	55% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/*  */

html body .color-theme {
	color: #151b2f;
}

html body .color-red {
	color: #ac1027;
}

html body .color-green {
	color: var(--theme-color-green);
}

html body .color-gray {
	opacity: .6;
}

/*  */

.center {
	width: 100%;
	max-width: 1390px;
	min-width: 250px;
	margin: 0 auto;
	padding: 0 15px
}

/*  */

header + .box-item {
	margin-top: 100px;
}

.box-item {
	padding: 60px 0 60px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.box-item a {
	color: inherit;
	transition: all .3s ease;
}

.box-item h1 {
	font-size: 35px;
	letter-spacing: .1em;
	padding: 0 0 0;
	margin: 15px 0 15px;
}

.box-item h2 {
	font-size: 30px;
	letter-spacing: .1em;
	padding: 0 0 0;
	margin: 15px 0 15px;
}

.box-item img {
	max-width: 100%;
	max-height: none;
	display: inherit;
}

.box-item .block-header img {
	margin: 0 auto 0;
	display: inherit;
}

/*  */

.btn {
	height: 70px;
	padding: 0 30px 0 50px;
	background: #16ab67;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 1px;
	animation: shadow-pulse 3s infinite;
	transition: all .3s;
	position: relative
}

.btn span {
	position: relative;
	top: 2px
}

.btn:after {
	content: '';
	display: inline-block;
	width: 35px;
	min-width: 35px;
	height: 35px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .2) url(/assets/img/ic-arr.png) no-repeat 15px 10px;
	background-size: auto 14px;
	margin-left: 20px;
	transition: all .3s;
	z-index: 2;
	opacity: .7;
}

.btn:hover:after {
	background-color: #8e0b1b
}

.btn:before {
	content: '';
	display: block;
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s;
	background: #1fe08c
}

.btn:hover, a.btn:hover {
	background-color: #16ab67;
	color: inherit;
}

.btn:hover:before {
	width: 100%
}

@keyframes shadow-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0,0,0,.7)
	}

	50% {
		box-shadow: 0 0 0 0 rgba(0,0,0,.3)
	}

	to {
		box-shadow: 0 0 0 20px transparent
	}
}

/*  */

.fade-scale {
	/*transition: transform 2s cubic-bezier(.19, 1, .22, 1), opacity 1.9s;*/
}

.scrolled.fade-scale {
	animation: fade-scale .6s ease-in-out both
}

@keyframes fade-scale {
	0% {
		transform: scale(.3);
		opacity: 0
	}

	100% {
		transform: scale(1);
		opacity: 1
	}
}

/*  */

.box-blog-nav {
	padding: 30px 0 22px;
	margin: 0 0 0;
}

.blog-nav {
	padding: 0 0 0;
	margin: 0 0 0;
}

.blog-nav li {
	padding: 0 0 0;
	margin: 0 0 0;
	list-style: none;
	display: inline-block;
}

.blog-nav a {
	padding: 8px 10px 4px;
	margin: 3px 13px 10px;
	color: inherit;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .01em;
	font-weight: 600;
	display: inline-block;
	line-height: 1.2;
	border-radius: 5px;
}

.blog-nav .active a, .blog-nav a:hover {
	color: #ffffff;
	background: #ac1027;
}

/*  */

.blog-header {
	padding: 0 0 0;
	margin: 0 0 0;
	display: flex;
}

.blog-header .img-wr {
	padding: 0 0 0;
	margin: 0 53px 0 70px;
	width: 300px;
	overflow: hidden;
}

.blog-header .img-wr img {
	padding: 0 0 0;
	margin: 0 0 0;
	display: block;
	width: 100%;
	border-radius: 300px;
	border-radius: 50%;
}

.blog-header .text-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

.blog-header h1 {
	line-height: 1.3;
	margin: 5px 0 0;
}

.blog-header p {
	font-size: 16px;
}

.tag-item {
	display: inline-block;
	border-radius: 5px;
	font-size: 10px;
	letter-spacing: .02em;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 2;
	padding: 2px 8px 1px;
	margin: 13px 10px 10px 0;
}

/*  */

.doctor-label {
	padding: 20px 20px 20px;
	margin: 20px 0 0;
	display: flex;
	width: 300px;
	border-radius: 10px;
	align-items: center;
	justify-content: space-between;
}

.doctor-label .text-label {
	padding: 0 0 0;
	margin: 0 0 0;
}

.doctor-label .img-label {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 52px;
	height: 52px;
	border-radius: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #a3341e;
}

.doctor-label .img-label img {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 100%;
	height: 100%;
	display: block;
}

.doctor-label .text-label i {
	padding: 0 0 0;
	margin: 0 2px 0 0;
	display: inline-block;
	width: 20px;
	vertical-align: middle;
	line-height: 1;
}

.doctor-label h5 {
	padding: 0 0 0;
	margin: 3px 0 3px;
	line-height: 1.5;
}

.doctor-label p {
	padding: 0 0 0;
	margin: 0 0 0;
	line-height: 1.5;
	letter-spacing: .02em;
}

/*  */

.add-item {
	display: block;
	padding: 0 0 0;
	margin: 0 0 40px;
}

.add-item img {
	max-width: 100%;
	padding: 0 0 0;
	margin: 0 auto 0;
	display: block;
}

/*  */

.grid-main-area {
	padding: 10px 70px 0 125px;
	line-height: 1.95;
	letter-spacing: .05em;
	margin: 0 0 0 0;
}

.grid-main-area p {
	margin: 0 0 35px;
	padding: 0 0 0;
}

.grid-main-area h2 {
	margin: 40px 0 15px;
	letter-spacing: 0;
	line-height: 1.3;
}

.grid-sidebar-right {
	padding: 0 0 0 0;
	margin: 0 auto;
	max-width: 300px;
}

/*  */




/* SIDEBAR */

.doctor-image-rounded {
	margin: 30px auto 40px;
	padding: 0 0 0;
	width: 302px;
	height: 302px;
	border-radius: 500px;
	border-radius: 50%;
	position: relative;
	border: 3px solid #ac1027;
}

.doctor-image-rounded img {
	left: -10px;
	right: 0;
	bottom: -1px;
	position: absolute;
	margin: auto;
	padding: 0 0 0;
}

.sidebar-item {
	padding: 0 0 0;
	margin: 0 0 30px;
	position: relative;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

body .sidebar-links h5 {
	font-size: 24px;
	padding: 0 0 10px;
	margin: 0 0 0;
	line-height: 1.15;
	font-weight: 600;
}

.sidebar-item .img-overlay {
	padding: 140px 30px 30px;
}

.sidebar-item.tx-center .img-overlay {
	padding: 60px 30px 60px;
}

.sidebar-item.tx-left-bottom .img-overlay {
	padding: 357px 35px 36px;
}

.sidebar-item.tx-center h4 {
	line-height: 1.15;
}

body .btn.btn-small {
	padding: 4px 18px;
}

.sidebar-links {
	padding: 0 0 15px;
	margin: 0 -15px 0;
	position: relative;
}

.sidebar-links ul {
	padding: 8px 0 0;
	margin: 0 0 0;
	position: relative;
	border-top: 2px solid #ac1027;
}

.sidebar-links li {
	padding: 0 0 0;
	margin: 0 0 0;
	display: block;
	position: relative;
	list-style: none;
}

.sidebar-links li + li {
	border-top: 1px solid #d9d9d9;
}

body .sidebar-link-item {
	padding: 22px 0 22px;
	margin: 0 0 0;
	display: flex;
	position: relative;
	color: inherit;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	transition: all .3s ease;
	left: 0;
}

body .sidebar-link-item:hover {
	left: 10px;
}

.sidebar-link-item i {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 50px;
	font-size: 22px;
	font-weight: 600;
	font-style: normal;
}

.sidebar-link-item p {
	padding: 0 10px 0 10px;
	margin: 0 0 0;
}

.sidebar-link-item .img-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 212px;
}

.sidebar-link-item .img-wr img {
	padding: 0 0 0;
	margin: 0 0 0;
}

body .sidebar-item-doctor-connect {
	/*width: 300px;*/
	padding: 0 0 0;
	margin: 0 auto 0;
	color: #ffffff;
}

body .sidebar-item-doctor-connect .btn-item {
	display: block;
	padding: 21px 20px 19px;
	margin: 0 -10px 10px;
}

body .sidebar-item-doctor-connect p {
	font-size: 18px;
	letter-spacing: .02em;
	line-height: 1.7;
	padding: 0 0 20px;
}

body .sidebar-item-doctor-connect .img-overlay {
	padding: 325px 30px 30px;
	text-align: center;
}

body .sidebar-item-doctor-connect .btn {
	padding: 14px 20px;
	margin: 0 -10px 10px;
	font-weight: 500;
}

body .position-sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 200px;
	right: 0;
}
/*  */

.btn-item i {
	display: inline-block;
	vertical-align: middle;
}

.btn-item .icon-message {
	margin: -2px 5px 0 0;
}

.icon-message {
	height: 16px;
	width: 16px;
	background-image: url(/assets/img/icon-message.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	transition: all .5s ease;
	left: 0;
	position: relative;
}

.btn-item .icon-phone {
	margin: -2px 5px 0 0;
}

.icon-phone {
	height: 16px;
	width: 16px;
	background-image: url(/assets/img/icon-phone.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	transition: all .5s ease;
	left: 0;
	position: relative;
}

/*  */

html body .btn-item {
	padding: 10px 20px 10px;
	margin: 0 0 0;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	transition:  all .3s ease;
	display: inline-block;
}

html body .btn-item:hover {
	opacity: .7;
}

/*  */

.box-blog-sources {
	padding: 0 0 50px;
}

.box-blog-sources ul {
	padding: 6px 0 33px 20px;
	margin: 0 0 0;
	letter-spacing: .05em;
	line-height: 1.9;
}

.box-blog-sources li {
	padding: 0 0 16px;
	margin: 0 0 0;
	list-style: square;
	transition: all .3s ease;
	position: relative;
	left: 0;
}

.box-blog-sources li a {
	padding: 0 0 0;
	margin: 0 0 0;
	font-weight: 600;
	display: block;
	transition: all .3s ease;
}

.box-blog-sources li:hover {
	left: -8px;
}

.box-blog-sources .center {
	max-width: 1140px;
}

/*  */

.btn-item.btn-small {
	font-size: 12px;
	letter-spacing: .1em;
	border-radius: 0;
	padding: 18px 25px 16px;
	font-weight: 700;
}

/*  */

.box-blog-recommended .center {
	max-width: 1370px;
}

.box-blog-recommended h2 {
	letter-spacing: .2em;
	font-size: 32px;
}

.blog-thumbs-wr {
	padding: 32px 0 0;
	margin: 0 0 0;
}

.blog-thumb-item {
	padding: 0 0 50px;
	margin: 0 auto 0;
	max-width: 406px;
	position: relative;
	text-align: left;
}

.blog-thumb-item .img-wr {
	padding: 0 0 0;
	margin: 0 0 22px;
}

.blog-thumb-item .img-wr img {
	padding: 0 0 0;
	margin: 0 auto 0;
	display: block;
	width: 100%;
}

.blog-thumb-item .text-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

body .blog-thumb-item h6 {
	padding: 0 0 0;
	margin: 0 0 0;
	text-transform: uppercase;
}

body .blog-thumb-item h3 {
	padding: 13px 0 13px;
	margin: 0 0 0;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1.35;
}

body .blog-thumb-item p {
	padding: 0 0 27px;
	margin: 0 0 0;
	letter-spacing: .05em;
	line-height: 1.95;
}

html body .btn-read-more {
	display: inline-block;
	position: relative;
	padding: 0 0 0;
	margin: 0 0 0;
	font-weight: 700;
	letter-spacing: .1em;
	font-size: 12px;
}

html body .btn-read-more:after {
	width: 30px;
	height: 20px;
	padding: 0 0 0;
	margin: 0 0 0 5px;
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	left: 0;
	background: url('/assets/img/arrow-right.svg') no-repeat center;
	background-size: contain;
	transition: all .3s ease;
}

html body .btn-read-more:hover:after {
	left: 6px;
}

/*  */

.box-item .disclaimer {
	font-size: 12px;
	max-width: 1060px;
	margin: 0 auto 0;
	text-align: center;
	letter-spacing: .075em;
	padding: 3px 0 35px;
	line-height: 1.9;
}

.hr {
	border: 0;
	height: 2px;
	margin: 30px 0;
	background-image: -webkit-linear-gradient(right,#fff,#ccc,#fff);
	background-image: -moz-linear-gradient(right,#fff,#ccc,#fff);
	background-image: -ms-linear-gradient(right,#fff,#ccc,#fff);
	background-image: -o-linear-gradient(right,#fff,#ccc,#fff);
	background-image: linear-gradient(right,#fff,#ccc,#fff);
}

/* BEGIN CSS of Erectile-Dysfunction.html */

body .h00 {
	font-size: 180px;
	font-weight: 700;
	line-height: .75;
	letter-spacing: 0;
	padding: 0 0 0;
	margin: 15px 0 15px;
}

body .h0 {
	font-size: 70px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	padding: 0 0 0;
	margin: 15px 0 15px;
}

body .h1 {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
	padding: 0 0 0;
	margin: 15px 0 15px;
}

body .h2 {
	font-size: 45px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	padding: 0 0 0;
	margin: 15px 0 15px;
}

.align-items-center {
	align-items: center;
}

/*  */

.box-image-with-text {
	padding: 50px 0 50px;
	font-size: 21px;
}

.box-image-with-text .img-wr {
	margin: 0 0 0 -200px;
	padding: 0 0 0;
}

.box-image-with-text .img-wr img {
	margin: 0 0 0 auto;
}

.box-image-with-text .text-wr {
	padding: 30px 0 30px;
	max-width: 710px;
	margin: 0 0 0 auto;
}

.box-image-with-text h5 {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.45;
	margin: 0 0 0;
	padding: 0 0 20px;
}

.box-image-with-text .btn {
/*     max-width: 370px; */
	border-radius: 0;
}

body .list-styled-checkmarks {
	padding: 0 0 0;
	margin: 0 0 45px;
}

body .list-styled-checkmarks li {
	padding: 0 0 0 35px;
	margin: 0 0 12px;
	position: relative;
	font-weight: 500;
	list-style: none;
}

body .list-styled-checkmarks li:before {
	content: "";
	padding: 0 0 0;
	margin: auto;
	width: 22px;
	height: 22px;
	line-height: 22px;
	background: url('/assets/img/icon-check-circle-green.svg') no-repeat center;
	background-size: contain;
	position: absolute;
	left: 0;
	top: -3px;
	bottom: 0;
}

/*  */

.box-about-ed {
	padding: 100px 0 100px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.box-about-ed .text-wr {
	max-width: 710px;
	border-radius: 20px;
	padding: 75px 60px 65px;
	margin: 0 0 0;
	position: relative;
}

.box-about-ed h4 {
	font-size: 22px;
	line-height: 40px;
	font-weight: 300;
	padding: 0 0 0;
	margin: 0 0 0;
}

.box-about-ed h4 strong {
	font-weight: 600;
}

body .tag-item {
	padding: 5px 20px 5px;
	margin: 0 10px 15px;
	font-size: 15px;
	font-weight: normal;
	text-transform: none;
	background: rgba(18, 22, 40, 0.1);
	display: inline-block;
	border-radius: 10px;
}

.box-why .tag-item {
	margin-left: 0;
}

/*  */

.block-header {
	padding: 0 0 35px;
	margin: 0 0 0;
	position: relative;
}

.block-header p:last-child,
.block-header h5:last-child {
	margin-bottom: 0;
}

.block-header h5 {
	font-weight: normal;
}

/*  */

.accordion-wr {
	font-size: 21px;
	font-weight: 300;
	padding: 0 0 0;
	margin: 0 0 0;
}

.accordion-items-wr {
	padding: 16px 0 0;
	margin: 0 0 0;
}

.accordion-item {
	padding: 0 0 0;
	margin: 0 0 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.accordion-item a h3 {
	font-size: inherit;
	line-height: inherit;
}

.color-white .accordion-item {
	border-color: rgba(255,255,255,.3);
}

body .accordion-item-nav {
	padding: 15px 30px 13px 0;
	margin: 0 0 0;
	position: relative;
	font-weight: 600;
	display: block;
	cursor: pointer;
}

body .accordion-item-nav:after {
	content: "";
	display: block;
	position: absolute;
	width: 25px;
	height: 25px;
	padding: 0 0 0;
	margin: auto;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url('/assets/img/icon-arrow-down.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all .3s ease;
}

.color-white .accordion-item-nav:after {
	background-image: url('/assets/img/icon-arrow-down-white.svg');
}

.accordion-item-content {
	padding: 0 0 0 30px;
	margin: 0 0 0;
	display: none;
}

.accordion-item-content p {
	padding: 0 0 20px;
	margin: 0 0 0;
}

.accordion-item.active .accordion-item-nav:after {
	transform: rotate(180deg);
}

/*  */

body .accordion-items-wr + h6 {
	margin-top: 30px;
	font-weight: 500;
	font-size: 90%;
}

/*  */

.box-ed-thumbs {
	padding: 65px 0 65px;
}

.box-ed-thumbs [class*="col-"] {
	padding: 0 20px;
}

.ed-thumb-item {
	padding: 0 0 0;
	margin: 0 0 30px;
	position: relative;
}

.ed-thumb-item .img-wr {
	padding: 0 0 0;
	margin: 0 0 35px;
}

.ed-thumb-item .img-wr img {
	display: block;
	width: 100%;
	margin: 0 auto 0;
	padding: 0 0 0;
	object-fit: cover;
	max-height: 300px;
}

.ed-thumb-item .text-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.ed-thumb-item .btns-wr {
	margin: 5px 0 15px;
	display: flex;
	gap: 15px;
	justify-content: space-between;
	align-items: center;
}

.ed-thumb-item .btn {
	height: 50px;
	padding: 0 20px 0 20px;
	font-size: 14px;
	width: 50%;
	background-color: #23F197;
	text-transform: uppercase;
	animation: none;
}

.ed-thumb-item .btn:after {
	width: 25px;
	min-width: 25px;
	height: 25px;
	background-position: center;
	background-size: auto 10px;
	margin-left: 20px;
}

body .btn.bg-white {
	border: 2px solid rgba(17, 20, 35, 0.2);
	color: inherit;
	background-color: #fff;
}

body .btn.bg-white:after {
	background-color: rgba(18, 22, 40, 0.1);
}

.ed-thumb-item p {
	padding: 0 0 0;
	margin: 0 0 12px;
}

.ed-thumb-item p.ed-thumb-descr {
	padding: 0 0 0;
	margin: 0 0 12px;
	min-height: 75px;
	letter-spacing: 0;
	font-weight: 300;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ed-thumb-item i {
	font-style: normal;
}

.ed-thumb-item h3 {
	padding: 0 0 0;
	margin: 0 0 5px;
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 0;
}

.ed-thumb-item h6 {
	padding: 0 0 0;
	margin: 0 0 0;
	font-weight: 300;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
}

/*  */

.box-faqs {
	padding: 70px 0 70px;
}

.box-faqs h4 {
	font-weight: 500;
	font-size: 21px;
}

.box-faqs h6 {
	font-size: 15px;
	font-weight: normal;
}

.box-faqs .accordion-items-wr {
	margin: 10px auto 50px;
	padding: 0 0 0;
	max-width: 1080px;
}

.box-faqs .accordion-item-nav {
	font-size: 24px;
	font-weight: 500;
}

.box-faqs .accordion-item-nav:after {
	content: "+";
	font-size: 20px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50px;
	border-radius: 50%;
	font-weight: 500;
	text-align: center;
	background: #000;
}

.box-faqs .accordion-item.active .accordion-item-nav:after {
	content: "-";
}

.box-faqs .accordion-item {
	border-bottom: 1px solid #DDBD7C;
}

/*  */

.box-ed-steps {
	padding: 70px 0 70px;
}

.box-ed-steps .h0 {
	padding: 60px 0 80px;
	margin-left: auto;
	max-width: 500px;
}

.ed-step-items-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.ed-step-items-wr:before {
	content: "";
	display: block;
	width: 1px;
	left: 0;
	top: 150px;
	bottom: 70px;
	padding: 0 0 0;
	margin: 0 0 0;
	position: absolute;
	border-left: 1px solid #23F197;
}

.ed-step-item {
	padding: 0 0 0;
	margin: 0 auto 50px;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 300;
	text-align: center;
}

.ed-step-item h5 {
	padding: 0 0 10px;
	margin: 0 auto 0;
	font-weight: 600;
	font-size: 20px;
}

.ed-step-item p {
	padding: 0 0 0;
	margin: 0 auto 0;
}

.ed-step-item .text-wr {
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 420px;
}

.ed-step-item .img-wr {
	padding: 0 0 0;
	margin: 0 auto 40px;
}

.ed-step-item .img-wr::before {
	content: "";
	display: block;
	position: absolute;
	left: -8px;
	top: 140px;
	width: 16px;
	height: 16px;
	background: #23F197;
	border-radius: 50px;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 5px rgba(17, 20, 35, 0.1);
	animation: pulsate-an 3s ease-out infinite;
}

@-webkit-keyframes pulsate-an {
	0%   { box-shadow: 0px 0px 0px 0px rgba(17, 20, 35, 0.1); }
	50%  { box-shadow: 0px 0px 0px 5px rgba(17, 20, 35, 0.1); }
	100% { box-shadow: 0px 0px 0px 10px rgba(17, 20, 35, 0.0); }
}

.ed-step-item .img-wr img {
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	width: 400px;
	border-radius: 20px;
}

/*  */

.box-ed-reviews {
	padding: 70px 0 70px;
	overflow: hidden;
}

.ed-review-items-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	display: flex;
	gap: 15px;
	transform: translate3d(0, 0, 0);
	flex-direction: row;
	justify-content: flex-start;
	animation: moveSlideshow 90s linear infinite;
}

@keyframes moveSlideshow {
	100% {
		transform: translateX(-100%);
	}
}

.ed-review-item {
	padding: 50px 40px 25px;
	margin: 0 0 0;
	width: 360px;
	min-width: 360px;
	min-height: 390px;
	position: relative;
	border-radius: 10px;
	background: #fff;
	color: #111423;
}

.ed-review-item h3 {
	padding: 0 0 30px;
	margin: 0 0 0;
	font-size: 21px;
}

.ed-review-item blockquote {
	font-size: 19px;
	line-height: 1.55;
	font-weight: normal;
	padding: 0 0 0;
	margin: 0 0 0;
}

body .icon-verified {
	display: inline-flex;
	width: 25px;
	height: 25px;
	vertical-align: middle;
	padding: 0 0 0;
	margin: 0 8px 0;
	background: url('/assets/img/icon-verified.svg') no-repeat center;
	background-size: contain;
}

/*  */

.box-options {
	padding: 70px 0 70px;
}

.box-options .text-wr {
	max-width: 680px;
}

.radio-option-item {
	padding: 25px 20px 25px;
	border: 1px solid #111423;
	text-align-last: left;
	display: flex;
	cursor: pointer;
	font-weight: 500;
	font-size: 21px;
	gap: 15px;
	margin: 0 auto 10px;
	align-items: center;
}

.radio-option-item:hover .radio-icon {
	background: #000;
}

.radio-icon {
	width: 25px;
	height: 25px;
	position: relative;
	border: 5px solid #23F197;
	background: #23F197;
	display: inline-block;
	vertical-align: middle;
	transition: all .3s ease;
}

/* END CSS of Erectile-Dysfunction.html */
/* BEGIN CSS of product-viagra.html */

body .padding-0 {
	padding: 0 0 0;
}

body .padding-top-0 {
	padding-top: 0;
}

body .padding-bottom-0 {
	padding-bottom: 0;
}

body .display-flex {
	display: flex;
	align-items: center;
	gap: 30px;
}

.tdu {
	text-decoration: underline;
}

.img-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease !important;
	transition: all .5s ease !important;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*  */

.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}

.display-block {
	display: block;
}

body .display-inline-flex {
	display: inline-flex;
	align-items: center;
}

.img-wr img {
	padding: 0 0 0;
	margin: 0 auto 0;
	position: relative;
	display: block;
}

.row-reverse {
	flex-direction: row-reverse;
}

.img-wr.img-half-width {
	margin-left: -600px;
}

.img-wr.img-half-width img {
	margin: 0 0 0 auto;
}

.row-reverse .img-wr.img-half-width {
	margin-left: 0;
	margin-right: -600px;
}

.row-reverse .img-wr.img-half-width img {
	margin: 0 0 0;
}

.overflow-hidden {
	overflow: hidden;
}

/*  */

.box-product-main-info {
	padding: 70px 0 70px;
}

.box-product-main-info .img-wr {
	border-radius: 15px;
	padding: 0 0 0;
	margin: 0 auto 0;
	max-width: 720px;
	overflow: hidden;
}

.box-product-main-info .text-wr {
	padding: 0 0 0 35px;
}

.box-product-main-info .h0 {
	margin: 0 0 20px;
	padding: 0 0 0;
}

.box-product-main-info h5 {
	font-weight: 300;
	font-size: inherit;
	padding: 0 0 0;
	margin: 0 0 12px;
}

.box-product-main-info p+p {
	margin-top: 12px;
}

.box-product-main-info .display-flex {
	margin: 35px 0 25px;
}

.box-product-main-info .btn:after {
	margin-left: 15px;
}

.box-product-main-info .btn {
	padding: 0 20px 0 20px;
}

.box-product-main-info .display-flex h5 {
	font-size: 15px;
	margin: 0 0 0;
}

.box-product-main-info .tdu {
	text-decoration-color: var(--theme-color-green);
}

.box-product-main-info h6 {
	font-size: 14px;
}

.box-product-main-info .img-wr-thumbs {
	padding: 0 0 0;
	margin: 30px auto 30px;
	display: flex;
	gap: 10px;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
}

.box-product-main-info .img-wr-thumbs .img-item {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 90px;
	height: 90px;
	border-radius: 500px;
	border-radius: 50%;
	border: 2px solid var(--theme-color-red);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all .3s ease;
}

.box-product-main-info .img-wr-thumbs .img-item img {
	padding: 0 0 0;
	margin: 0 auto 0;
	display: block;
	width: auto;
	position: relative;
	max-height: 90px;
	height: auto;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.box-product-main-info .img-wr-large {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.box-product-main-info .img-wr-large .img-item {
	padding: 0 0 100%;
/* 	padding: 0 0 110%; */
	margin: 0 0 0;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}

/*  */

.box-thumbs {
	border-top: 1px solid rgba(0, 0, 0, .2);
	border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.box-thumbs [class*="col-"] {
	padding: 0 20px;
}

.thumb-item-simple .img-wr {
	margin: 0 auto 25px;
	border-radius: 15px;
	overflow: hidden;
}

.thumb-item-simple .img-wr img {
	width: 100%;
}

.thumb-item-simple h4 {
	font-size: 24px;
	margin: 0 0 8px;
}

.bg-green.btn:after {
	background-color: rgba(0, 0, 0, .15);
}

/*  */

.box-image-half-width .btns-wr {
	margin: 30px 0 20px;
}

.box-image-half-width {
	border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.box-why .btns-wr {
	margin: 40px 0 0;
}

/*  */

body .list-with-icons {
	padding: 0 0 0;
	margin: 20px 0 20px;
	position: relative;
}

body .list-with-icons li {
	padding: 0 0 0;
	margin: 15px 0 15px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

body .list-with-icons li i {
	max-width: 64px;
}

body .list-with-icons li img {
	display: block;
}

body .list-with-icons p {
	margin: 0 0 0;
}

.box-item i {
	font-style: normal;
}

.h6 {
	padding: 0 0 0;
	margin: 0 0 0;
	font-weight: 300;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
}

/*  */

.box-how-get .h0 {
	font-weight: 500;
}

.box-how-get .block-footer {
	margin: 40px auto 0;
}

.block-footer {
	margin: 50px auto 0;
}

.thumb-with-icon {
	padding: 0 0 0;
	margin: 15px auto 15px;
	max-width: 370px;
	position: relative;
}

.thumb-with-icon .img-wr {
	padding: 0 0 0;
	max-width: 100px;
	margin: 0 auto 30px;
}

.thumb-with-icon h3 {
	padding: 0 0 15px;
	font-size: 21px;
}

/*  */

.box-faqs-simple .h2 {
	max-width: 365px;
}

/*  */

.block-safety-cta {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
	overflow: hidden;
	box-shadow: 3px 9px 15px 6px rgba(0, 0, 0, 0.10);
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.block-safety-cta .h2 {
	font-size: 40px;
	font-weight: 500;
	margin: 8px 0 8px;
}

.block-safety-cta .text-wr {
	padding: 85px 0 0 65px;
	margin: 0 0 0;
	position: relative;
}

.block-safety-cta .img-wr {
	padding: 25px 0 0;
	margin: 0 0 0;
	position: relative;
}

.block-safety-cta .btns-wr {
	padding: 40px 40px 0 0;
	margin: 0 0 0;
	position: relative;
}

.btn.btn-small {
	font-size: 15px;
	height: 50px;
	padding: 0 10px 0;
	text-transform: uppercase;
}

.btn.btn-small:after {
	width: 30px;
	min-width: 30px;
	height: 30px;
	margin: 0 0 0 10px;
	background-size: auto 10px;
	background-color: rgba(0, 0, 0, .20);
	background-position: center;
}

.btn.btn-small.bg-black:after {
	background-color: rgba(255,255,255, .20);
}

.btn.bg-transparent {
	border: 2px solid rgba(17, 20, 35, 0.20);
}

body .popup-overlay.active {
	display: none;
}

/* END CSS of product-viagra.html */



/* BEGIN VIDEO reviews */
.reviews {
	padding: 45px 0 100px 0;
	background-color: #151b2f;
	color: #fff;
	min-height: 715px;
	position: relative;
}
.reviews .crown {margin-bottom: 45px;}
.reviews h2.title {
	margin-bottom: 20px;
	color: #fff;
}
.reviews h2.title + p {font-size: 28px;}

.reviews-slider {
	max-width: 630px;
	margin-left: auto;
	margin-right: auto;
}
.reviews-slider__item {
	display: flex !important;
	align-items: center;
}
.reviews-slider__img {
	flex: none;
	width: 140px;
	height: 140px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	padding: 10px;
}
.reviews-slider__img img {
	width: 120px;
	height: 120px;
	border: 1px solid #b4975a;
	background-color: #ffffff;
	border-radius: inherit;
}
.reviews-slider__content {
	padding-left: 40px;
	width: 80%;
}
.reviews-slider__content p {
	font-weight: 300;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 0.12rem;
}
.reviews-slider__name {
	font-size: 24px;
	line-height: 36px;
	letter-spacing: 0.12rem;
	margin-bottom: 13px;
	font-weight: 300;
}
.reviews-slider .slick-dots {
	margin-top: 94px;
}

.reviews .pills {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	margin-bottom: -70px;
}

/* VIDEO GALLERY
-------------------------------------- */
.wrap-video {
	max-width: 1000px;
	margin: 0 auto;
}

[data-src="crown"] {
	max-width: 850px;
	height: 100px;
	width: 100%;
	margin-bottom: 50px;
}

.wrap-video {padding-top: 40px;}
.video {
	margin-bottom: 35px;
	position: relative;
	z-index: 1;
	display: block;
}
.video video {
	display: block;
	width: 100%;
	min-height: 563px;
	cursor: pointer;
	object-fit: cover;
	object-position: center;
}
.play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	background: rgba(0,0,0,.2);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	border-radius: 50%;
	cursor: pointer;
	transition: all .3s;
	margin-top: -65px;
	margin-left: -65px;
}
.play:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: block;
	background: rgba(0,0,0,.2);
	border-radius: 50%;
	animation: pulse-border 3000ms ease-out infinite;
}
.play:after {
	content: '';
	display: inline-block;
	border-top: 30px solid transparent;
	border-left: 45px solid #fff;
	border-bottom: 30px solid transparent;
	position: relative;
	left: 7%;
}
.pause {
	width: 130px;
	height: 130px;
	background: rgba(255, 255, 255, .3);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -65px;
	margin-left: -65px;
}
.pause:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: block;
	background: rgba(0,0,0,.2);
	border-radius: 50%;
}
.pause span {
	display: block;
	width: 10px;
	height: 50px;
	background: #fff;
	position: relative;
	z-index: 2;
}
.pause span:first-child {
	margin-right: 15px;
}

.pause,
.play {
	opacity: 0;
	display: none;
	pointer-events: none;
}

.pause-video .pause,
.play-video .play {
	display: inline-flex;
	animation: anVideoBtn 0.3s linear forwards !important;
}
@keyframes anVideoBtn {
	0% {opacity: 1;}
	100% {opacity: 0; transform: scale(0.5); visibility: hidden;}
}

.video:not(.playing) .play,
.king-video:not(.playing) .play {
	display: inline-flex;
	animation: anVideoBtn2 0.3s linear forwards !important;
}
@keyframes anVideoBtn2 {
	0% {opacity: 0; transform: scale(0.5); visibility: visible;}
	100% {opacity: 1; transform: scale(1); visibility: visible;}
}

.video .popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	background: rgba(0,0,0,.2);
	border-radius: 50%;
	transition: all 0.3s;
	display: none;
	align-items: center;
	justify-content: center;
}
.video.playing .popup-close {
	display: flex;
	animation: opacity 0.5s forwards;
}
.video .popup-close svg {
	fill: #fff;
	width: 25px;
	height: 25px;
}
.video .popup-close:hover {
	background: #091938;
	transform: scale(0.95);
}

.splide {
	margin-bottom: 70px;
	margin-left: -15px;
	margin-right: -15px;
	position: relative;
	z-index: 1;
}
.splide__slide {
	padding: 0 10px;
}
.splide__slide .thumb {
	border-radius: 15px;
	min-height: 180px;
	overflow: hidden;
	border: 6px solid transparent;
	transition: all 0.3s;
	display: flex;
	position: relative;
	cursor: pointer;
}
.splide__slide .thumb:hover,
.splide__slide .thumb.focus {border-color: #73ed9f;}
.splide__slide .thumb img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.splide__slide .thumb .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	object-fit: cover;
	height: 100%;
}
.splide__slide .thumb:hover .overlay {display: block;}

.splide__slide .play-inner {
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background: rgba(0,0,0,.2);
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.splide__slide .play-inner:after {
	content: '';
	display: inline-flex;
	border-top: 8px solid transparent;
	border-left: 13px solid #fff;
	border-bottom: 8px solid transparent;
	position: relative;
	left: 2px;
}

.splide__slide .play-inner:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: block;
	background: rgba(0,0,0,.2);
	border-radius: 50%;
}
.splide__slide .thumb:hover .play-inner:before {
	animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

.splide__slide h3 {
	font-weight: 500;
	font-size: 13px;
	margin-top: 20px;
	text-align: center;
}

.splide__arrow {
	background: transparent;
	margin-top: -1.5%;
}
.splide__arrow--next {
	right: -30px;
}
.splide__arrow--prev {
	left: -30px;
}
.splide__arrow svg {
	fill: #25f197;
	height: 30px;
	width: 25px;
	transition: all 0.3s;
}
.splide__arrow:hover svg {fill: #d8be85;}

.splide__pagination {display: none;}

/* REAL
-------------------------------------- */
.real {
	padding: 95px 0 75px 0;
	background: #f3f3f3;
	overflow: hidden;
}
.real-row {
	display: flex;
	margin-top: 65px;
	margin-bottom: 65px;
}
.real-item {
	width: 33.33%;
	padding: 0 15px;
	text-align: center;
}
.real-item .image {
	margin-bottom: 25px;
	min-height: 387px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.real-item h3 {
	font-size: 21px;
	line-height: 30px;
	color: #000;
	margin-bottom: 10px;
}
.real-item p {
	font: 15px/30px 'Campton-Book', sans-serif;
}

/* KING VIDEO
-------------------------------------- */
.king {
	padding-top: 45px;
	background: #111422;
	position: relative;
}
.king:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #111422;
	height: 50px;
}
.king .crown {margin-bottom: 60px;}
.king h2.title {color: #fff;}
.king .subtitle {color: #fff;}

.king-video {
	margin-top: 45px;
	margin-left: auto;
	margin-right: auto;
	opacity: 1 !important;
	width: 1000px;
	position: relative;
}
.king-video:before {
	content: '';
	display: block;
	width: 1528px;
	height: 98px;
	background: url(/assets/img/shadow-top.png);
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	margin-top: -50px;
}
.king-video:after {
	content: '';
	display: block;
	width: 1558px;
	height: 98px;
	background: url(/assets/img/shadow-bottom.png);
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	margin-bottom: -60px;
}
.king-video video {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
	cursor: pointer;
}
.btn-pause {
	display: none;
	opacity: 0;
}
.btn-stop {
	display: none;
	opacity: 0;
}
.king-video.playing {z-index: 99999;}
.king-video.playning .btn-play {display: none;}
.king-video.playing .btn-stop,
.king-video.playning .btn-pause {
	display: flex;
	opacity: 1;
}
.king-video.playning .btn-pause {
	display: flex;
	opacity: 0;
}
.king-video.playning:hover .btn-pause {opacity: 1;}

.btn-play {
	display: inline-block;
	width: 131px;
	height: 131px;
	background: url(/assets/img/arr-video.png) no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	transform: translate(-50%, -50%);
	animation-name: pulse-two;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	border-radius: 50%;
	cursor: pointer;
	border: 2px solid #23f197;
	transition: all 0.3s;
}
.btn-play:hover {
	animation-play-state: paused;
	border-color: #e1b987;
}

.btn-stop {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 35px;
	height: 35px;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.2);
}
.btn-stop svg {
	fill: #fff;
	width: 25px;
	height: 25px;
}
.btn-stop:hover {
	background: #091938;
	transform: scale(0.95);
}

@keyframes pulse-two{0%{transform:scale(.95) translate(-50%, -50%)}50%{transform:scale(1) translate(-50%, -50%)}100%{transform:scale(.95) translate(-50%, -50%)}}

.btn-pause {
	width: 131px;
	height: 131px;
	background: rgba(255,255,255,.3);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
	animation-name: pulse-two;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
}
.btn-pause span {
	display: block;
	width: 10px;
	height: 50px;
	background: #fff;
}
.btn-pause span:first-child {margin-right: 15px;}
.btn-pause:hover {
	animation-play-state: paused;
	border-color: #a10e1c;
}

/* END VIDEO reviews */

.connected-slider-thumb-img .slide-item {
	padding: 0 3px;
}

.connected-slider-thumb-img .slide-item.slick-current.slick-active .img-item {
	border-color: var(--theme-color-green);
}

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

.border-radius-15px {
	border-radius: 15px;
}

.border-radius-20px {
	border-radius: 20px;
}

.border-radius-25px {
	border-radius: 25px;
}

.border-radius-30px {
	border-radius: 30px;
}

/*  */

.list-simple {
	list-style: disc;
	padding: 0 0 20px 20px;
}

/*  */

.slider-3-per-row {
	margin: 0 -15px 30px;
}

.slider-3-per-row .slide-item {
	padding: 0 15px;
}

.slider-3-per-row .slick-dots button {
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .25);
}

.slider-3-per-row .slick-arrow {
	font-size: 0;
}

/*  */

.thumb-item-simple .img-wr.bg-black {
	margin: 0 auto 25px;
	border-radius: 500px;
	border-radius: 50%;
	width: 160px;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 25px 20px;
	background: linear-gradient(160deg, #0A2542 0%, #014079 100%);
}

.thumb-item-simple .img-wr.bg-black img {
	min-height: 80px;
	width: auto;
}

.thumb-item-simple h6 {
	font-weight: 300;
	font-size: 95%;
	margin: 0 auto;
	max-width: 320px;
}

/*  */

.box-thumbs + .box-image-half-width {
	padding-top: 0;
}

.box-item sup {
	top: 0;
}

/*  */

.block-bordered-left {
	font-size: 110%;
	padding: 0 0 0 30px;
	margin: 0 0 0;
	border-left: 5px solid var(--theme-color-red);
	position: relative;
}

.gap-50px .text-wr {
	padding-left: 50px;
}

.gap-50px .accordion-item h3 {
	font-size: 130%;
}

.gap-50px .accordion-item.active .accordion-item-nav {
	color: var(--theme-color-red);
}

/*  */

.plan-thumb-item {
	padding: 0 0 0;
	margin: 25px 0 25px;
	border-radius: 15px;
	position: relative;
	border: 1px solid #ccc;
}

.plan-thumb-item .img-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.plan-thumb-item .text-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.plan-thumb-item .img-wr img {
	display: block;
	margin: 0 auto 0;
}

body .plan-thumb-item .btn.btn-small {
	padding: 4px 18px;
	letter-spacing: .1em;
	margin: 0 0 10px;
	font-weight: 600;
}

.plan-thumb-item h5 {
	padding: 0 0 0;
	margin: 0 0 0;
}

.plan-thumb-item h3 {
	font-size: 30px;
	padding: 0 0 0;
	margin: 0 0 0;
}

.plan-thumb-item ul {
	padding: 0 0 0;
	margin: 0 0 15px;
}

.plan-thumb-item h6 {
	padding: 0 0 0;
	margin: 0 0 0;
	font-weight: normal;
}

.plan-thumb-item h6.color-green {
	font-size: 110%;
}

.plan-thumb-item .display-inline-flex {
	padding: 0 3px 0;
}

.plan-thumb-item .plan-thumb-item-header {
	padding: 8px 5px 8px;
	margin: 0 0 0;
	position: relative;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.plan-thumb-item .plan-thumb-item-header h5 {
	font-weight: 600;
	letter-spacing: 0;
}

.plan-thumb-item .plan-thumb-item-header h6 {
	font-weight: 300;
}

.plan-thumb-item .plan-thumb-item-body {
	padding: 25px 0 25px 30px;
	line-height: 1.35;
	letter-spacing: 0;
	margin: 0 0 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.plan-thumb-item .plan-thumb-item-body .img-wr {
	width: 40%;
	padding: 0 10px 0 0;
}

.plan-thumb-item .plan-thumb-item-body .text-wr {
	width: 60%;
	padding: 0 10px 0 0;
}

.plan-thumb-item .plan-thumb-item-body h5 {
	margin: 0 0 5px;
	font-weight: normal;
	font-size: 130%;
}

.plan-thumb-item .plan-thumb-item-body h6 {
	letter-spacing: 0;
	font-size: 75%;
	margin: 0 0 10px;
	font-weight: 300;
}

.plan-thumb-item .plan-thumb-item-body:first-child {
	border-top: none;
}

.plan-thumb-item .plan-thumb-item-body:last-child {
	border-bottom: none;
}

.plan-thumb-item .plan-thumb-item-footer {
	padding: 15px 5px 10px;
	margin: 0 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.plan-thumb-item .plan-thumb-item-footer h6 {
	letter-spacing: 0;
	font-size: 80%;
	margin: 0 0 0;
	font-weight: 300;
}

.plan-thumb-item .plan-thumb-item-label {
	padding: 4px 10px 0px;
	margin: 0 auto 0;
	text-align: center;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	min-width: 190px;
	font-weight: 500;
	font-size: 90%;
	max-width: 200px;
	border-radius: 10px 10px 0px 0px;
}

.tdl {
	text-decoration: line-through;
	font-size: 110%;
}

/*  */

.img-rounded {
	border-radius: 500px;
	border-radius: 50%;
}

.icon-thumb-horizontal {
	padding: 15px 20px 15px;
	margin: 0 10px 30px;
	min-height: 135px;
	display: flex;
	align-items: center;
	position: relative;
}

.icon-thumb-horizontal .img-wr {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 100px;
	min-width: 100px;
}

.icon-thumb-horizontal .img-wr img {
	display: block;
	padding: 0 0 0;
	margin: 0 0 0;
	width: 100%;
}

.icon-thumb-horizontal .text-wr {
	padding: 5px 10px 5px 30px;
}

.icon-thumb-horizontal h5 {
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 300;
	padding: 0 0 0;
	margin: 0 0 0;
}

/*  */











































/* ------------------------------------------------------------- */

@media screen and (max-width: 1359px) {
.grid-main-area {
	padding: 10px 50px 20px 0;
}
.grid-sidebar-right {
	padding: 0 0 0 0;
	margin: 0 0 0 -40px;
}
.doctor-image-rounded {
	margin: 30px auto 40px;
	padding: 0 0 0;
	width: 260px;
	height: 260px;
}
.doctor-image-rounded img {
	left: -10px;
	right: 0;
	bottom: -1px;
	width: 212px;
}
header + .box-item {
	margin-top: 80px;
}

	/* review */

	.reviews {
		padding: 35px 0 50px 0;
		min-height: 550px;
	}
	.reviews-slider .slick-dots {margin-top: 40px;}
	.reviews .pills {
		margin-bottom: -50px;
		max-width: 400px;
	}

	/* real */
	.real {
		padding: 60px 0 50px 0;
	}
	.real-row {
		margin-top: 35px;
		margin-bottom: 50px;
	}
	.real-item .image {
		margin-bottom: 20px;
		min-height: 280px;
		max-width: 250px;
		margin-left: auto;
		margin-right: auto;
	}
	.real-item h3 {
		font-size: 16px;
		line-height: 25px;
		margin-bottom: 5px;
	}
	.real-item p {
		font-size: 12px;
		line-height: 27px;
	}

	/* king */
	.king {padding-top: 30px;}
	.crown:before,
	.crown:after {
		width: 300px;
		height: 2px;
		background-size: 300px;
	}
	.crown i {
		width: 70px;
		height: 48px;
		background-size: 70px;
	}

	.king-video {
		margin-top: 30px;
		width: 700px;
	}
	.king-video:before {
		width: 800px;
		height: 70px;
		background-size: 800px;
		margin-top: -30px;
	}
	.king-video:after {
		width: 900px;
		height: 60px;
		background-size: 900px;
		margin-bottom: -35px;
	}

	/* real-members */
	.real-members {
		padding-top: 40px;
		padding-bottom: 35px;
	}
	.real-members h3 {
		font-size: 26px;
		line-height: 32px;
		margin-bottom: 15px;
	}
	.real-members .subtitle {
		font-size: 16px;
		line-height: 31px;
		margin-bottom: 30px;
	}












}

/* ------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
.blog-header .img-wr {
	padding: 0 0 0;
	margin: 0 40px 0 0;
	width: 300px;
	height: auto;
}
header + .box-item {
	margin-top: 80px;
}
.grid-main-area p {
	margin: 0 0 20px;
	padding: 0 0 0;
}
.grid-main-area h2 {
	margin: 15px 0 15px;
}
.blog-nav a {
	padding: 8px 10px 4px;
	margin: 3px 2px 10px;
	color: inherit;
	font-size: 13px;
}
.sidebar-links {
	padding: 0 0 15px;
	font-size: 12px;
	margin: 0 0 0;
}
body .sidebar-item-doctor-connect p {
	font-size: 14px;
	padding: 0 0 15px;
}
body .sidebar-item-doctor-connect .btn-item {
	display: block;
	padding: 20px 10px 15px;
	margin: 0 -10px 10px;
}
html body .btn-item {
	padding: 10px 20px 10px;
	margin: 0 0 0;
	border-radius: 8px;
	font-size: 14px;
}
body .sidebar-item-doctor-connect .img-overlay {
	padding: 275px 30px 30px;
}
.box-image-with-text {
	padding: 40px 0 40px;
	font-size: 14px;
}
.box-image-with-text h5 {
	font-size: 15px;
	padding: 0 0 15px;
}
body .h00 {
	font-size: 100px;
	line-height: 1;
}
body .h0 {
	font-size: 40px;
}
body .h1 {
	font-size: 35px;
}
body .h2 {
	font-size: 30px;
}
body .list-styled-checkmarks {
	margin: 0 0 20px;
}
body .tag-item {
	padding: 5px 20px 5px;
	margin: 0 10px 15px;
	font-size: 12px;
}
.box-about-ed {
	padding: 50px 0 50px;
}
.box-about-ed h4 {
	font-size: 18px;
	line-height: 30px;
}
.box-about-ed .text-wr {
	border-radius: 20px;
	padding: 30px 35px 25px;
}
.accordion-wr {
	font-size: 15px;
}
.ed-thumb-item .img-wr {
	padding: 0 0 0;
	margin: 0 0 15px;
}
.ed-thumb-item h3 {
	margin: 0 0 5px;
	font-size: 20px;
}
.ed-thumb-item p {
	padding: 0 0 5px;
}
.ed-thumb-item .btns-wr {
	margin: 5px 0 15px;
	gap: 5px;
}
.box-faqs .accordion-item-nav {
	font-size: 18px;
}
.ed-step-item .img-wr {
	margin: 0 auto 20px;
}
.ed-step-item .img-wr::before {
	left: -32px;
}
.ed-step-item {
	padding: 0 25px 0;
	margin: 0 auto 30px;
	font-size: 14px;
}
.radio-option-item {
	padding: 15px 15px 15px;
	font-size: 15px;
	gap: 10px;
	margin: 0 auto 10px;
}
.ed-review-item blockquote {
	font-size: 15px;
}
.ed-review-item {
	padding: 30px 25px 15px;
	margin: 0 0 0;
	width: 280px;
	min-width: 280px;
	min-height: 300px;
}
.ed-review-item h3 {
	padding: 0 0 15px;
	margin: 0 0 0;
}
.ed-thumb-item .btn {
	height: 50px;
	padding: 0 13px 0 13px;
	font-size: 12px;
	width: 50%;
	line-height: 1.2;
}
.ed-thumb-item .btn:after {
	width: 18px;
	min-width: 18px;
	height: 18px;
	background-position: center;
	background-size: auto 8px;
	margin-left: 8px;
	margin-right: -5px;
}
.block-header {
	padding: 0 0 15px;
}
.box-product-main-info .text-wr {
	padding: 20px 0 0 0;
}
.box-product-main-info .display-flex {
	margin: 20px 0 15px;
	flex-wrap: wrap;
}
.block-safety-cta .h2 {
	font-size: 18px;
}
.icon-thumb-horizontal h5 {
    font-size: 18px;
}
.icon-thumb-horizontal .text-wr {
    padding: 5px 0 5px 20px;
}
.icon-thumb-horizontal {
    padding: 15px 15px 15px;
    margin: 0 0 15px;
    min-height: 130px;
}



















}

/* ------------------------------------------------------------- */

@media screen and (max-width: 991px) {
.box-item p {
	margin: 0 0 15px;
}
.box-item {
	padding: 45px 0 45px;
}
.box-item h1 {
	font-size: 30px;
	line-height: 1.2;
}
.box-item h2 {
	font-size: 25px;
	line-height: 1.2;
}
.blog-nav a {
	padding: 8px 10px 4px;
	margin: 0 0 10px;
	font-size: 11px;
}
.blog-header p {
	font-size: 13px;
}
.doctor-image-rounded {
	margin: 30px auto 40px;
	padding: 0 0 0;
	width: 200px;
	height: 200px;
}
.doctor-image-rounded img {
	left: -10px;
	right: 0;
	bottom: -1px;
	width: 165px;
}
body .sidebar-item-doctor-connect .img-overlay {
	padding: 275px 20px 30px;
}
.box-blog-content {
	padding: 40px 0 0;
}
.box-blog-sources {
	padding: 0 0 0;
}
.blog-thumb-item {
	padding: 0 0 30px;
}
.box-product-main-info {
	padding: 40px 0 40px;
}
.box-product-main-info .img-wr-thumbs .img-item {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 60px;
	height: 60px;
}
.box-product-main-info .img-wr-thumbs {
	margin: 20px auto 20px;
	gap: 5px;
}
.box-product-main-info .img-wr {
	padding: 0 0 0;
	max-width: 720px;
}
.box-product-main-info .img-wr-large {
	padding: 0 0 0;
}
.box-product-main-info h6 {
	font-size: 12px;
}
.accordion-item-content {
	padding: 0 0 0 20px;
}
.row-reverse .img-wr.img-half-width {
	margin-left: -15px;
	margin-right: -15px;
}
.img-wr.img-half-width {
	margin-left: -15px;
}
.box-why {
	padding: 35px 0 40px;
}
.box-why .btns-wr {
	margin: 15px 0 0;
}

	/* reviews */
	.reviews {min-height: 600px;}

	.splide {
		margin-left: -10px;
		margin-right: -10px;
	}

	[data-src="crown"] {
		max-width: 600px;
		height: 85px;
		width: 100%;
		margin-bottom: 25px;
	}

	.play,
	.pause {
		width: 60px;
		height: 60px;
		margin-top: -30px;
		margin-left: -30px;
	}
	.play:after {
		border-top: 10px solid transparent;
		border-left: 15px solid #fff;
		border-bottom: 10px solid transparent;
		left: 4%;
	}
	.pause span {
		width: 5px;
		height: 25px;
	}
	.pause span:first-child {
		margin-right: 8px;
	}

	/* real */
	.real {
		padding: 75px 0 75px 0;
	}
	.real-row {
		flex-direction: column;
		align-items: center;
	}
	.real-item {width: 100%;}
	.real-item + .real-item {margin-top: 75px;}
	.real-item .image {
		max-width: 360px;
		margin-bottom: 30px;
	}
	.real-item h3 {
		font-size: 32px;
		line-height: 32px;
		margin-bottom: 15px;
	}
	.real-item p {
		font-size: 20px;
		line-height: 30px;
	}

	/* king */
	.king {
		padding-top: 40px;
	}
	.crown i {
		width: 100%;
		height: 50px;
	}
	.crown:before, 
	.crown:after {
		width: 225px;
		height: 2px;
		background-size: 225px;
	}
	.king .crown {
		margin-bottom: 50px;
	}
	.king-video {
		margin-top: 60px;
		width: 100%;
	}
	.btn-play {
		width: 75px;
		height: 75px;
		background-size: 75px 75px;
	}
	.btn-pause {
		width: 75px;
		height: 75px;
	}
	.btn-pause span {
		width: 5px;
		height: 35px;
	}
	.btn-pause span:first-child {
		margin-right: 10px;
	}

	/* real members */
	.real-members {
		padding-top: 60px;
		padding-bottom: 0;
	}
	.real-members h3 {
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 20px;
	}
	.real-members .subtitle {
		font-size: 22px;
		line-height: 37px;
		margin-bottom: 45px;
	}
	.real-members .subtitle br {display: none;}
	.real-members h2.title {
		font-size: 40px;
		line-height: 50px;
	}


























}

/* ------------------------------------------------------------- */

@media screen and (max-width: 767px) {
.box-item .col-1, .box-item .col-2, .box-item .col-3, .box-item .col-4, .box-item .col-5, .box-item .col-6, .box-item .col-7, .box-item .col-8, .box-item .col-9, .box-item .col-10, .box-item .col-11 {
	padding: 0 15px;
	width: 100%;
}
.grid-sidebar-right {
	padding: 0 0 0 0;
	margin: 0 auto 0;
	max-width: 500px;
}
.doctor-image-rounded {
	margin: 30px auto 40px;
	padding: 0 0 0;
	width: 260px;
	height: 260px;
}
.doctor-image-rounded img {
	left: -10px;
	right: 0;
	bottom: -1px;
	width: 212px;
}
.add-item {
	padding: 0 0 0;
	margin: 0 auto 15px;
}
body .sidebar-item-doctor-connect {
	width: 300px;
	margin: 0 auto 15px;
}
body .sidebar-item-doctor-connect .img-overlay {
	padding: 320px 30px 30px;
}
.blog-nav {
	padding: 0 0 0;
	margin: 0 -13px 0;
	display: block;
	white-space: nowrap;
	overflow: auto;
}
.blog-nav a {
	padding: 6px 6px 4px;
	margin: 0 5px 5px;
	font-size: 11px;
}
/* width */
.blog-nav::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
/* Track */
.blog-nav::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: inset 0px 0px 6px 0px transparent;
  border-radius: 5px;
}
/* Handle */
.blog-nav::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 5px;
}
/* Handle on hover */
.blog-nav::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
.box-blog-nav {
	padding: 30px 0 2px;
	margin: 0 0 0;
}
.box-image-with-text .text-wr {
	padding: 0 0 30px;
}
body .tag-item {
	padding: 5px 20px 5px;
	margin: 0 10px 5px;
	font-size: 12px;
}
body .h0 {
	font-size: 40px;
}
body .h00 {
	font-size: 100px;
	padding-top:20px;
}
	.box-image-with-text .img-wr{
		margin: 0px 0 0 -40px;
	}
.box-faqs {
	padding: 40px 0 40px;
}
.box-ed-thumbs {
	padding: 20px 0 20px;
}
.box-ed-reviews {
	padding: 40px 0 40px;
}
.box-ed-steps {
	padding: 40px 0 40px;
}
.box-options {
	padding: 40px 0 40px;
}
.box-faqs .accordion-items-wr {
	margin: 10px auto 40px;
}
.box-ed-steps .h0 {
	margin: 0 0 15px;
}
.thumb-item-simple {
	margin: 0 auto 30px;
	max-width: 300px;
}
.block-safety-cta .text-wr {
	padding: 30px 25px 50px;
	margin: 0 0 0;
	position: relative;
	text-align: center;
	width: 100%;
}
.block-safety-cta .img-wr {
	padding: 15px 0 0;
}
.block-safety-cta .btns-wr {
	padding: 0 0 0;
	position: absolute;
	text-align: center;
	margin: 0 auto 0;
	left: 0;
	right: 0;
	top: 100px;
}
.block-safety-cta {
	flex-wrap: wrap;
}
.box-safety-cta {
	padding: 10px 0 10px;
}

	/* reviews */
	.reviews {min-height: 600px;}

	.splide {
		margin-left: -10px;
		margin-right: -10px;
	}

	[data-src="crown"] {
		max-width: 600px;
		height: 85px;
		width: 100%;
		margin-bottom: 25px;
	}

	.play,
	.pause {
		width: 60px;
		height: 60px;
		margin-top: -30px;
		margin-left: -30px;
	}
	.play:after {
		border-top: 10px solid transparent;
		border-left: 15px solid #fff;
		border-bottom: 10px solid transparent;
		left: 4%;
	}
	.pause span {
		width: 5px;
		height: 25px;
	}
	.pause span:first-child {
		margin-right: 8px;
	}

	/* real */
	.real {
		padding: 75px 0 75px 0;
	}
	.real-row {
		flex-direction: column;
		align-items: center;
	}
	.real-item {width: 100%;}
	.real-item + .real-item {margin-top: 75px;}
	.real-item .image {
		max-width: 360px;
		margin-bottom: 30px;
	}
	.real-item h3 {
		font-size: 32px;
		line-height: 32px;
		margin-bottom: 15px;
	}
	.real-item p {
		font-size: 20px;
		line-height: 30px;
	}

	/* king */
	.king {
		padding-top: 40px;
	}
	.crown i {
		width: 100%;
		height: 50px;
	}
	.crown:before, 
	.crown:after {
		width: 225px;
		height: 2px;
		background-size: 225px;
	}
	.king .crown {
		margin-bottom: 50px;
	}
	.king-video {
		margin-top: 60px;
		width: 100%;
	}
	.btn-play {
		width: 75px;
		height: 75px;
		background-size: 75px 75px;
	}
	.btn-pause {
		width: 75px;
		height: 75px;
	}
	.btn-pause span {
		width: 5px;
		height: 35px;
	}
	.btn-pause span:first-child {
		margin-right: 10px;
	}

	/* real members */
	.real-members {
		padding-top: 60px;
		padding-bottom: 0;
	}
	.real-members h3 {
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 20px;
	}
	.real-members .subtitle {
		font-size: 22px;
		line-height: 37px;
		margin-bottom: 45px;
	}
	.real-members .subtitle br {display: none;}
	.real-members h2.title {
		font-size: 40px;
		line-height: 50px;
	}
.ed-step-item .img-wr::before {
	left: -32px;
}
.box-image-with-text .row.align-items-center {
	flex-direction: column-reverse;
}
.box-ed-steps .h0 {
	padding: 30px 0 30px;
	text-align: center;
	font-size: 34px;
}
.box-why .img-wr {
	padding: 0 0 0;
	margin: 0px -22px 10px;
}
.box-why {
	text-align: center;
}
.block-bordered-left {
	font-size: 100%;
	padding: 0 0 0 20px;
	margin: 0 0 0;
	border-left: 3px solid var(--theme-color-red);
}
.gap-50px .text-wr {
	padding-left: 0;
}
.gap-50px .accordion-item h3 {
	font-size: 115%;
	line-height: 1.2;
}
.box-why .accordion-item {
	text-align: left;
}
.box-why .display-flex {
	justify-content: center;
}
.plan-thumb-item .plan-thumb-item-body {
	padding: 15px 0 15px 15px;
	line-height: 1.35;
	font-size: 90%;
}


























}

/* ------------------------------------------------------------- */

@media screen and (max-width: 550px) {
.grid-main-area {
	padding: 0 0 30px;
}
.blog-header {
	padding: 0 0 0;
	margin: 0 0 0;
}
.doctor-label {
	padding: 20px 20px 20px;
	margin: 20px auto 0;
}
.box-blog-nav h1 {
	font-size: 22px;
	margin: 0 0 10px;
}
.blog-header p {
	font-size: 12px;
}
.tag-item {
	padding: 3px 8px 1px;
	margin: 0 5px 5px 0;
}
.box-blog-header h1 {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: .025em;
}
.blog-header .img-wr {
	margin: 0 15px 10px 0;
	width: 300px;
	min-width: 100px;
}
.doctor-label {
	padding: 10px 15px 10px;
	margin: 15px auto 0;
	width: 230px;
}

	/* reviews */
	.reviews {
		padding: 30px 0 50px 0;
		min-height: 770px;
	}
	.reviews h2.title {margin-bottom: 13px;}
	.reviews h2.title br {display: block;}
	.reviews-slider__item {flex-direction: column;}
	.reviews-slider__content {
		padding-left: 0;
		width: 100%;
		text-align: center;
		margin-top: 45px;
	}
	.reviews .pills {min-width: 350px;}

	.wrap-video {padding-top: 25px;}
	.video {
		margin-bottom: 15px;
	}
	.video video {min-height: 217px;}

	.reviews h2.title + p + p {
		font-size: 18px;
		margin-top: 0;
	}

	.splide {
		margin-left: -100px;
		margin-right: -100px;
		margin-bottom: 35px;
	}
	.splide__slide {
		padding: 0 0px;
	}
	.splide__slide .thumb {
		min-height: 113px;
		border: 4px solid transparent;
	}
	.splide__arrows {display: none;}

	.splide__slide h3 {
		font-size: 8px;
		margin-top: 7px;
	}

	.splide__slide .play-inner {
		top: 5px;
		right: 5px;
		width: 25px;
		height: 25px;
	}
	.splide__slide .play-inner:after {
		border-top: 6px solid transparent;
		border-left: 8px solid #fff;
		border-bottom: 6px solid transparent;
	}

	.video .popup-close {
		top: 10px;
		right: 10px;
	}

	/* real */
	.real-item p {
		font-size: 15px;
		line-height: 25px;
	}
	.real-item h3 {
		font-size: 22px;
		line-height: 30px;
	}

	/* king */
	.king-video:before {
		width: 550px;
		height: 30px;
		background-size: 550px;
		margin-top: -20px;
	}
	.king-video:after {
		width: 550px;
		height: 30px;
		background-size: 550px;
		margin-bottom: -14px;
	}

	/* real members */
	.real-members {padding-top: 45px;}
	.real-members h3 {
		font-size: 24px;
		line-height: 30px;
	}
	.real-members .subtitle {
		font-size: 15px;
		line-height: 25px;
		margin-bottom: 30px;
	}
	.members-wrap__right {min-height: 450px;}
	.real-members h2.title {
		font-size: 28px;
		line-height: 40px;
	}
	.members-total__tit {
		font-size: 49px;
		line-height: 65px;
	}



































}

/* ------------------------------------------------------------- */




