* {
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    border: none;
    text-decoration: none;
    background: none;
    box-sizing: border-box;
}

button {
    background: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

html {scroll-behavior: smooth;}

body {
    font-family: 'Campton', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #151b2f;
}   

img {
    max-width: 100%;
    height: auto;
}

h2.title {
    font-size: 60px;
    line-height: 70px;
    color: #151a2a;
    letter-spacing: 2px;
    text-align: center;
}
h2.title span {color: #DDBD7C;}

h3.title {
    font-size: 45px;
    line-height: 55px;
    color: #151a2a;
}
h3.title span {color:#DDBD7C}

p.subtitle {
    font-size: 17px;
    line-height: 24px;
    color: #002340;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 15px;
}

.svg-icon {
    height: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    z-index: -999999;
}

.mt20 {margin-top: 20px;}

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

.row {
	display: flex;
	justify-content: space-between;
	margin-right: -15px;
	margin-left: -15px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 {padding: 0 15px;}
.col-1 {width: 8.33333333%;}
.col-2 {width: 16.66666667%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33333333%;}
.col-5 {width: 41.66666667%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33333333%;}
.col-8 {width: 66.66666667%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33333333%;}
.col-11 {width: 91.66666667%;}

.d-none {display: none !important;}

.wrapper {overflow-x: hidden;}

/* main */
.center {
    width: 100%;
    max-width: 1300px;
    min-width: 250px;
    margin: 0 auto;
    padding: 0 15px;
}
.tx-center {text-align: center;}
.tx-right {text-align: right;}
.tx-left {text-align: left;}

.btn {
    height: 70px;
    padding: 0 30px 0 50px;
    background: #23f197;
    color: #051c3a;
    font-weight: bold;
    font-size: 18px;
    font-family:var(--Gotham);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    animation: shadow-pulse 3s infinite;
    transition: all 0.3s;
    position: relative;
    text-transform:uppercase;
}
.btn:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 17px;
    background: url(../img/ic-arrblack.png) no-repeat center;
    background-size: 10px;
    margin-left: 12px;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    cursor:pointer;
}
@keyframes shadow-pulse {
    0% {box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.8);}
    50% {box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);}
    100% {box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);}
}
.btn span {
	position: relative;
	z-index: 2;
    cursor:pointer;
    top:2px;
}
.btn:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background: #1fe08c;
	z-index: 1.4px;
	transition: all 0.3s;
}
.btn:hover:before {width: 100%;}
.btn-wrap.inverse .btn:before {background: #1fe08c;}
.btn-wrap.inverse .btn:after {
    background: url(../img/ic-arrblack.png) no-repeat center;
    background-size: 10px;
}
.btn-wrap.inverse .btn:hover:after {
    background: url(../img/ic-arrblack.png) no-repeat center;
    background-size: 10px;
}
.btn-wrap {
    display: inline-block;
    text-align: center;
}
.btn-wrap.inverse .btn {
    background: #23f197;
    color: #151b2f;
}
.btn-wrap.inverse .btn:hover {
    color: #051C3A;
}

.btn-wrap .label {
	margin-top: 20px;
}
.btn-wrap .label p:first-child {
	display: flex;
	justify-content: center;
	font: 18px/18px var(--gotham);
} 
.btn-wrap .label p:first-child:before {
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url(../img/dolar.png) no-repeat;
	margin-right: 12px;
}
.btn-wrap .label.blue p:first-child:before {
    background: url(../img/dolar-blue.png) no-repeat;
}
.btn-wrap .label p:last-child {
	font: 15px/15px 'Gotham Book', sans-serif;
	text-align: center;
	margin-top: 7px;
	padding-left: 22px;
}
.btn-wrap.inverse .label p {color: #fff;}

/* HEADER
-------------------------------------- */
.header {
	background: #151a2a;
	padding: 10px 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}
.header .center {
	display: flex;
	align-items: center;
}

.logo {
	display: inline-block;
	width: 138px;
	height: 38px;
	background: url(../img/logo.png) no-repeat;
	background-size: 138px;
}

.header nav {
	margin-left: auto;
	margin-right: 65px;
}
.header nav ul {
	display: flex;
	align-items: center;
}
.header nav li + li {margin-left: 55px;}
.header nav a {
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	transition: all 0.3s;
}
.header nav a:hover {color: #ac1024;}

.btn-head {
	display: inline-block;
	width: 190px;
	height: 42px;
	line-height: 42px;
	font-weight: bold;
	font-size: 15px;
	background: #ac1024;
	color: #fff;
	text-align: center;
	padding: 0 10px;
    position: relative;
}
.btn-head:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: #e9b77f;
    z-index: 1;
    transition: all 0.3s;
}
.btn-head:hover:after {width: 100%;}
.btn-head span {
    position: relative;
    z-index: 2;
}

/* HOME
-------------------------------------- */
.home {
	background: url(../img/bg-main.jpg) no-repeat right top;
	background-size: cover;
	color: #fff;
    position: relative;
    padding-top:0;
}
.fire {
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../img/fire.png) no-repeat;
    width: 963px;
    height: 672px;
    z-index: 2;
}
.home .center {
	position: relative;
	padding:80px 15px;
    position: relative;
    z-index: 2;
}

.home-product {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	margin-bottom: -250px;
}

.home h1 {
	font-size: 65px;
	line-height: 70px;
	font-family: 'Campton-Book', sans-serif;
    font-weight: normal;
}
.home h1 b {
	font-family: 'Campton', sans-serif;
	font-weight: 600;
}
.home p.subtitle {
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	letter-spacing: 1.5px;
	margin-top: 10px;
	margin-bottom: 50px;
    text-align: left;
    color: #fff;
}
.home p.text {
	font: 27px/39px 'Campton-Book', sans-serif;
	letter-spacing: 1.5px;
}

.home .group {
	display: flex;
	align-items: flex-start;
	margin-top: 45px;
}
.home .btn {
	width: 400px;
	font-size: 19px;
}
.home .btn-wrap .label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.home .btn-wrap .label p:last-child {
    padding-left: 45px;
}
.home .group .hippa {
	display: flex;
	align-items: center;
	margin-left: 20px;
	margin-top: 13px;
}
.home .group .hippa p {
	font-weight: bold;
	font-size: 12px;
	line-height: 15px;
	text-transform: uppercase;
	color: #a4a4a4;
	margin-left: 10px;
}

/* TAB
-------------------------------------- */
.section-tab {
    background: #f3f3f3;
    padding: 85px 0 70px 0;
}
.tab {
    display: flex;
}
.tab-controls {
    min-width: 260px;
    position: relative;
}
.tab-controls:after {
    content: '';
    display: block;
    width: 2px;
    background: #d9b377;
    position: absolute;
    top: 12px;
    right: 0;
    bottom: -25px;
}
.tab-controls li {
    display: block;
}
.tab-controls li:nth-child(2) {transition-delay: 0.3s;}
.tab-controls li:nth-child(3) {transition-delay: 0.9s;}
.tab-controls li:nth-child(4) {transition-delay: 1.2s;}
.tab-controls li:nth-child(5) {transition-delay: 1.5s;}
.tab-controls li:nth-child(6) {transition-delay: 1.8s;}
.tab-controls li + li {margin-top: 15px;}
.tab-controls li div {
    display: inline-block;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
    padding-left: 22px;
    position: relative;
    transition: all 0.3s;
}
.tab-controls li div:before {
    content: '';
    border-top: 8px solid transparent;
    border-left: 8px solid #DDBD7C;
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -12px;
    opacity: 0;
    transition: all 0.3s;
}
.tab-controls li.active div {color: #DDBD7C;}
.tab-controls li.active div:before {opacity: 1;} 
.tab-content > div {
    display: none;
    opacity: 0;
    padding-left: 80px;
    padding-top: 55px;
}
.tab-content > div.active {
	display: block;
	animation: opacity 1s forwards;
}
.tab-content h2 {
    font-size: 55px;
    line-height: 55px;
    font-weight: 600;
    color: #bd001d;
    color:#DDBD7C;
    margin-bottom: 20px;
}
.tab-content p {max-width: 400px;}

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

.mt35 {margin-top: 35px;}

/* TESTOSTERONE
-------------------------------------- */
.testosteron {
    padding: 80px 0 140px 0;
}

.testosteron .icons {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}
.testosteron .icons li {
    width: 33.33%;
    text-align: center;
}
.testosteron .icons li div[data-hover-svg] {line-height: 0;}
.testosteron .icons li:nth-child(2) div[data-hover-svg] {transition-delay: 0.3s;}
.testosteron .icons li:nth-child(3) div[data-hover-svg] {transition-delay: 0.9s;}
.testosteron .icons li div[data-hover-svg] span {
    display: inline-block;
    line-height: 0;
}
.testosteron .icons li svg {
    width: 90px;
    height: 90px;
    transition: all 0.5s;
    transform: perspective(300px);
}
.testosteron .icons li:hover svg {
    transform: perspective(300px) translate3d(0, 0, 0) rotateY(180deg);
}
.testosteron .icons li p {
    margin-top: 25px;
    color: #002340;
    font-weight: bold;
    font-size: 17px;
    line-height: 29px;
}

.testosteron-info {margin-top: 115px;}
.testosteron-info .wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 120px;
}
.testosteron-info .wrap:last-child {margin-bottom: 0;}
.testosteron-info .wrap > div {width: 50%;}
.testosteron-info .wrap > div:first-child {padding-right: 50px;}
.testosteron-info .wrap > div:last-child {padding-left: 50px;}
.testosteron-info .image {
    position: relative;
    line-height: 0;
    display: flex;
    align-items: flex-start;
}
.testosteron-info .image:after {
    content: '';
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    bottom: -25px;
    left: 25px;
    border-radius: 20px;
    background: #f3f3f3;
    z-index: -1;
}
.testosteron-info .image img:first-child {
    display: block;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.testosteron-info .bottle {
    position: absolute;
    left: 25px;
    bottom: -155px;
} 

.testosteron-info p.medium {
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 25px;
}

.testosteron-info p:not(.medium) {
    color: #000;
    font-family: 'Campton-Book', sans-serif;
}
.testosteron-info p:not(.medium) b {
    font-family: 'Campton', sans-serif;
    font-weight: normal;
    color: #151a2a;
}
.testosteron-info p:not(.medium) + p {
    margin-top: 35px;
}

.testosteron-info .btn {margin-top: 30px;}

.testosteron-info .reverse .image {
    order: 1;
    padding-right: 0 !important;
    padding-left: 50px;
}
.testosteron-info .reverse .text {
    padding-left: 0 !important;
    padding-right: 50px;
}

.testosteron-info .reverse h3.title {font-size: 42px;}

.testosteron-info .reverse .text img {margin-top: 30px;}

/* RECOMMENDED
-------------------------------------- */
.recommended {
    padding: 60px 0;
    background: #111422;
}

.crown {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.crown i {
    display: inline-block;
    width: 94px;
    height: 65px;
    background: url(../img/crown-big.png) no-repeat;
}
.crown:before {
    content: '';
    display: block;
    width: 376px;
    height: 2px;
    background: url(../img/crown-line.png) no-repeat;
}
.crown:after {
    content: '';
    display: block;
    width: 376px;
    height: 2px;
    background: url(../img/crown-line.png) no-repeat;
    transform-origin: center;
    transform: rotate(180deg);
}

.track-wrap {overflow: hidden;}
.track {display: flex;}
.slide-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-item img {
    display: block;
    width: 100%;
}

.slide-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
}
.slide-dots span {
    width: 18px;
    height: 18px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: #fff;
    min-width: 18px;
    margin: 0 6px;
    transition: all 0.3s;
}
.slide-dots span.active {
    background: none;
    border-color: #e8b37d;
}

.slider-text {margin-top: 60px;}
.slider-text .slide-item {
    display: block;
    text-align: center;
}
.slider-text h3 {
    font-size: 48px;
    line-height: 59px;
    color: #fff;
    margin-bottom: 20px;
}
.slider-text p {color: #fff;}

.recommended .btn-wrap {margin-top: 65px;}
.recommended .btn-wrap.inverse .btn:before {background: #1fe08c;}

/* TREATMENT
-------------------------------------- */
.treatment {padding: 75px 0 125px 0;}

.treatment .products {margin-top: 60px;}

.products {
    display: flex;
    align-items: flex-end;
    margin-right: -15px;
    margin-left: -15px;
}
.products .item {
    width: 33.33%;
    padding: 0 15px;
}
.products .inner {
    background: #f3f3f3;
}
.products .popular {
    font-size: 21px;
    font-weight: 500;
    line-height: 47px;
    height: 42px;
    background: #e9b77f;
    text-align: center;
    color: #151a2a;
    letter-spacing: 1px;
}
.products .title {
    height: 65px;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 70px;
    text-align: center;
    color: #151a2a;
    letter-spacing: 1px;
}
.products .subtitle {
    height: 45px;
    font-size: 18px;
    line-height: 48px;
    font-weight: normal;
    font-family: 'Campton-Book', sans-serif;
    letter-spacing: 1px;
    color: #151a2a;
    text-align: center;
    background: #e0e0e0;
}

.products .image {
    text-align: center;
    padding: 30px 15px 25px 15px;
    position: relative;
    min-height: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products .image span {
    display: inline-block;
    width: 53px;
    height: 53px;
    border: 3px solid #e9b77f;
    border-radius: 50%;
    color: #151a29;
    background: #fff;
    text-align: center;
    line-height: 53px;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 20px;
    bottom: 0;
}

.products .info {padding: 0 20px 20px 20px;}
.products .info span {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #151a29;
}
.products .info p {
    font-family: 'Campton-Book', sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #151a29;
    letter-spacing: 1px;
}

.products .price {
    background: #e0e0e0;
    text-align: center;
}
.products .price .list {
    font-family: 'Campton-Book', sans-serif;
    font-size: 15px;
    color: #151a2a;
    text-transform: uppercase;
    padding-top: 15px;
}
.products .price .list span {
    color: #ff0718;
    position: relative;
    display: inline-block;
}
.products .price .list span:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    background: #f0737c;
    margin-top: -1.5px;
}
.products .price .big {
    font-weight: 600;
    font-size: 50px;
    line-height: 50px;
    color: #151a2a;
    margin-top: 8px;
}
.products .price .big span {
    font-size: 24px;
}
.products .price .free {
    padding: 5px 0;
    border-top: 1px solid #d2d2d3;
    font-weight: 600;
    font-size: 16px;
    color: #151a2a;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products .price .free:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 14px;
    background: url(../img/ic-free.png) no-repeat;
    margin-right: 10px;
    position: relative;
    top: -1px;
}

.products .bottom {
    padding: 35px 40px 45px 40px;
}
.products .bottom .btn {
    width: 100%;
}

.pulse {
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

@keyframes pulse { 
    0% {transform: scale(0.9); opacity: 0.9;}
    50% {transform: scale(1); opacity: 1;}
    100% {transform: scale(0.9); opacity: 0.9;} 
}

.products .inverse .inner {
    background: #151a2a;
    color: #fff;
}
.products .inverse .title,
.products .inverse .subtitle,
.products .inverse .info span,
.products .inverse .info p,
.products .inverse .price .list,
.products .inverse .price .big {color: #fff;}
.products .inverse .subtitle {background:#1fe08c;color: #091938;}
.products .inverse .price {background: #1e2437;}
.products .inverse .price .free {
    background: #e9b77f;
    color: #000;
    border-top: none;
}
.products .inverse .price .free:before {
    background-image: url(/assets/images/shipping_black_icon.svg);
    margin-top: 4px;
}
.products .inverse .price span {color: #fff;}
.products .inverse .price span:after {background: #fff;}

/* YOURSELF
-------------------------------------- */
.yourself {
    background: #151a2a url(../img/bg-yourself.jpg) no-repeat center top;
    background-size: cover;
    position: relative;
}

.yourself-text {
    color: #fff;
    padding: 76px 0 60px 0;
}
.yourself-text h2 {
    font-size: 60px;
    line-height: 70px;
    color: #ac1024;
    color:#DDBD7C;
    margin-bottom: 20px;
}
.yourself-text p {line-height: 30px;}
.yourself-text p b {font-weight: 500;}
.yourself-text p + p {margin-top: 35px;}
.yourself-text ul {
    margin-top: 15px;
    margin-bottom: 40px;
}
.yourself-text ul li {
    line-height: 30px;
}
.yourself-text ul li:before {
    content: '';
    display: inline-block;
    width: 23px;
    height: 19px;
    background: url(../img/ic-check.png) no-repeat;
    margin-right: 10px;
}
.yourself-text .btn-wrap {margin-left: -20px;}
.yourself-text .btn {
    animation: shadow-pulse2 3s infinite;
}
@keyframes shadow-pulse2 {
    0% {box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.8);}
    50% {box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);}
    100% {box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);}
}
.yourself .bottle {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 234px;
    transform: translateX(-50%);
    margin-bottom: -190px;
    margin-left: 5%;
}
.yourself .bottle img {min-width: 375px;}

/* MALE
-------------------------------------- */
.male {padding-top: 170px;}
.male .center {
    display: flex;
    align-items: flex-end;
}
.male .image {
    width: 50%;
    padding-right: 35px;
    line-height: 0;
}
.male .text {
    width: 50%;
    padding-left: 35px;
    padding-bottom: 40px;
}
.male .text h2.title {text-align: left;}
.male .text p b {font-weight: 500;}
.male .text p + p {margin-top: 20px;}

.signature p {
    font-size: 18px;
    line-height: 30px;
}
.signature h3 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.male .text .signature {
    margin-top: 10px;
    margin-bottom: 30px;
}

.male .btn {width: 370px;}

/* TESTED
-------------------------------------- */
.tested {
    background: url(../img/bg-tested.jpg) no-repeat center;
    background-size: cover;
    padding: 40px 0 100px 0;
}
.tested h2.title {
    color: #fff;
    margin-top: 30px;
}

.tested-row {
    margin-top: 50px;
    display: flex;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.tested-item {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.tested-item .image {
    min-height: 280px;
    max-height: 280px;
    display: flex;
    align-items: flex-start;
}
.tested-item .image img {
    height: 100%;
    width: auto;
    object-fit: cover;
}
.tested-item:first-child .image {margin-left: -60px;}
.tested-item:last-child .image {margin-right: -60px;}
.tested-item h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 35px;
}
.tested-item .text {
    padding-left: 13px;
    margin-top: 20px;
    position: relative;
}
.tested-item .text:before {
    content: '';
    display: block;
    width: 3px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 0;
    bottom: 6px;
}

/* ABOUT
-------------------------------------- */
.about {
    padding: 75px 0;
}
.about .center {
    display: flex;
    align-items: flex-start;
    align-items: center;
}

.content-accordeon {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
} 

.about-text {padding-right: 28px;}
.about-text h2.title {text-align: left;}

.accordeon {margin-top: 25px;}
.about .item-accordeon:nth-child(2) {transition-delay: 0.3s;}
.about .item-accordeon:nth-child(3) {transition-delay: 0.6s;}
.about .item-accordeon:nth-child(4) {transition-delay: 0.9s;}
.btn-accordeon {
    padding: 20px 0 20px 0;
    font: 24px/24px 'Campton-Book', sans-serif;
    border-bottom: 1px solid #d6d9db;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    cursor: pointer;
}
.btn-accordeon .plus {
    width: 20px;
    height: 20px;
    position: relative;
    margin-right: 20px;
}
.btn-accordeon .plus:before {
    content: '';
    display: block;
    width: 1px;
    background: #ab1026;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    margin-left: 0.5px;
    transition: all 0.3s;
}
.btn-accordeon .plus:after {
    content: '';
    display: block;
    height: 1px;
    background: #ab1026;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -0.5px;
    transition: all 0.3s;
}
.item-accordeon.active .plus:before {opacity: 0;}
.content-accordeon .inner {
    padding: 20px 0 0 0;
    font-size: 20px;
}

.about-image {
    min-width: 493px;
    line-height: 0;
    position: relative;
}

/* FOOTER
-------------------------------------- */
.footer {
    background-color: #151b2f;
    color: #fff;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-middle {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
    padding: 40px 0 70px 0;
}

.footer-middle__column {
    width: 21%;
    display: inline-block;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-bottom: 40px;
}
.footer-middle__column > div + div {margin-top: 10px;}
.footer-middle__column a {color: #fff;}
.footer-middle__column a:hover {text-decoration: underline;}
.footer-middle__column.last {
    text-align: right;
    width: 12%;
}
.footer-middle__column.last img {display: inline-block;}

.footer-bottom {
    display:block;
    align-items: center;
    padding-bottom: 50px;
}
.footer-bottom__column {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    display: block;
    text-align: left;
}
.footer-bottom__column a {color: rgba(255, 255, 255, 0.5);}
.footer-bottom__column a:hover {text-decoration: underline;}
.footer-bottom__column.copy {
    text-align: left;
    display: flex;
    align-items: center;
}
.footer-bottom__column.copy img {margin-left: 15px;}

.footer-title {
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 15px;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
}
.social {
    line-height: 1.5;
    white-space: nowrap;
}
.social__link {
    color: inherit;
    margin-right: 40px;
    font-size: 2.2rem;
    display: inline-block;
    vertical-align: middle;
}
.social__link:last-child {
    margin-right: 0;
}
.social__link .icon {
    display: block;
    width: 24px;
    height: 24px;
}
.social__link .icon-youtube {
    font-size: 2.5rem;
}
.social__link:hover .icon {
    color: #b4975a;
}

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

/* ANIMATION
-------------------------------------- */
.an-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 2s cubic-bezier(.19,1,.22,1), opacity 1.9s;
}
.an-right {
    opacity: 0;
    transform: translateX(100%);
    transition: transform 2s cubic-bezier(.19,1,.22,1), opacity 1.9s;
}
.an-top {
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 2s cubic-bezier(.19,1,.22,1), opacity 1.9s;
}
.an-deg45 {
    transform-origin: right bottom;
    transform: rotate(45deg);
    transition: transform 2s cubic-bezier(.19,1,.22,1), opacity 1.9s;
}
.an-bottom {
    opacity: 0;
    transform: translateY(100%);
    transition: transform 2s cubic-bezier(.19,1,.22,1), opacity 1.9s;
}
.an-transform {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s 0.5s, transform 0.3s 0.5s;
}
.an-scale {
    transform: scale(0.3);
    transition: transform 2s cubic-bezier(.19,1,.22,1), opacity 1.9s;
}
.an-rotate {
    opacity: 0;
    transform: rotateY(360deg);
    transition: transform 2s cubic-bezier(.19,1,.22,1), opacity 1.9s;
}
.an-opacity {
    opacity: 0;
    transition: opacity 1s 0.5s;
}

.an-no {
    opacity: 1;
    transform: none;
}


/* ---------------------------------------------- */
/*               MEDIA QUERI                      */
/* ---------------------------------------------- */

@media screen and (max-width: 1300px) {
    body {
        font-size: 15px;
        line-height: 25px;
    }

    h2.title {
        font-size: 40px;
        line-height: 50px;
    }

    h3.title {
        font-size: 35px;
        line-height: 45px;
    }

    p.subtitle {
        font-size: 10px;
        line-height: 17px;
    }

    .btn {
        height: 50px;
        width: 250px;
        font-size: 13px;
        line-height: 54px;
    }
    .btn-wrap .label p:first-child {
        font-size: 15px;
        line-height: 15px;
    }
    .btn-wrap .label p:last-child {
        font-size: 12px;
        line-height: 12px;
    }
    .btn-wrap .label p:first-child:before,
    .btn-wrap .label.blue p:first-child:before {
        width: 18px;
        height: 18px;
        background-size: 18px;
        margin-right: 8px;
    }

    /* header */
    .header nav {margin-right: 35px;}
    .header nav li + li {margin-left: 35px;}
    .header nav a {font-size: 11px;}

    /* home */
    .home {padding-top: 55px;}
    .home .center {padding: 50px 15px 50px 15px;}
    .home h1 {
        font-size: 45px;
        line-height: 50px;
    }
    .home p.subtitle {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .home p.text {
        font-size: 17px;
        line-height: 29px;
    }
    .home .group {margin-top: 25px;}
    .home .btn {
        width: 300px;
        font-size: 16px;
    }
    .home .group .hippa {margin-top: 10px;}
    .home .group .hippa img {max-width: 40px;}
    .home .group .hippa p {
        font-size: 10px;
        line-height: 13px;
    }
    .home-product {
        margin-bottom: -177px;
        max-width: 300px;
    }
    .home .btn-wrap .label p:first-child {
        font-size: 14px;
        line-height: 14px;
    }
    .home .btn-wrap .label p:last-child {
        font-size: 11px;
        line-height: 11px;
    }

    /* section tab */
    .tab-content p {max-width: 350px;}

    /* testosteron */
    .testosteron {padding: 50px 0 80px 0;}
    .testosteron-info {margin-top: 70px;}
    .testosteron-info .wrap > div:first-child {
        padding-right: 25px;
    }
    .testosteron-info .wrap > div:last-child {
        padding-left: 25px;
    }
    .testosteron-info .image:after {right: -2px;}
    .testosteron-info .reverse h3.title {
        font-size: 32px;
    }
    .testosteron-info p.medium {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .testosteron-info p:not(.medium) + p {
        margin-top: 25px;
    }
    .testosteron-info .wrap {margin-bottom: 70px;}
    .testosteron-info .reverse .text {
        padding-right: 25px;
    }
    .testosteron-info .reverse .image {
        padding-left: 25px;
    }
    .testosteron-info .image:after {left: -2px;}

    /* recommended */
    .recommended {padding: 50px 0;}
    .crown:before,
    .crown:after {
        width: 250px;
        background-size: 250px;
    }
    .slider-text {margin-top: 50px;}
    .slider-text h3 {
        font-size: 38px;
        line-height: 49px;
        margin-bottom: 15px;
    }
    .slide-dots {margin-top: 30px;}
    .recommended .btn-wrap {margin-top: 50px;}

    /* treatment */
    .treatment {
        padding: 50px 0 70px 0;
    }
    .products .info p {
        font-size: 13px;
        line-height: 27px;
    }
    .products .bottom {
        padding: 20px 20px 30px 20px;
    }

    /* yourself */
    .yourself {background-position: right -160px top;}
    .yourself-text {padding: 40px 0 40px 0;}
    .yourself-text h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 15px;
    }
    .yourself .bottle {
        width: 180px;
        margin-bottom: -175px;
    }
    .yourself .bottle img {min-width: 290px;}
    .yourself-text p {line-height: 27px;}
    .yourself-text p + p {margin-top: 25px;}
    .yourself-text .btn-wrap {margin-left: 0;}

    /* male */
    .male {padding-top: 120px;}
    .male .text p + p {margin-top: 15px;}
    .male .text .signature {margin-bottom: 20px;}
    .male .image {padding-right: 15px;}
    .male .text {padding-left: 15px;}

    /* tested */
    .tested {padding: 30px 0 50px 0;}

    /* about */
    .about {
        padding: 50px 0;
        max-height: 607px;
    }
    .btn-accordeon {
        padding: 15px 0 15px 0;
        font: 17px/17px 'Campton-Book', sans-serif;
    }
    .btn-accordeon .plus {
        width: 15px;
        height: 15px;
        margin-right: 15px;
    }
    .content-accordeon .inner {
        padding: 15px 0 0 0;
        font-size: 15px;
    }
    .about-image {min-width: 400px;}
}

@media screen and (max-width: 768px) {
    .hide-768 {display: none;}
    .show-768 {display: block;}

    h3.title {
        font-size: 27px;
        line-height: 37px;
    }

    .btn-wrap .label p:first-child {
        font-size: 12px;
        line-height: 12px;
    }
    .btn-wrap .label p:last-child {
        font-size: 10px;
        line-height: 10px;
    }

    /* header */
    .logo {
        width: 100px;
        height: 28px;
        background-size: 100px;
    }
    .header nav {margin-right: 20px;}
    .header nav li + li {margin-left: 20px;}
    .header nav a {font-size: 10px;}
    .btn-head {
        width: 150px;
        height: 35px;
        line-height: 38px;
        font-size: 11px;
        padding: 0 10px;
    }

    /* home */
    .home h1 {
        font-size: 40px;
        line-height: 45px;
    }
    .home p.subtitle {
        font-size: 17px;
        line-height: 27px;
    }
    .home p.text {
        font-size: 14px;
        line-height: 26px;
    }
    .home .btn {width: 250px;}
    .home .group .hippa {margin-left: 10px;}
    .home-product {
        margin-bottom: -166px;
        max-width: 280px;
    }
    .home .btn-wrap .label p:first-child {
        font-size: 12px;
        line-height: 12px;
    }
    .home .btn-wrap .label p:last-child {
        font-size: 9px;
        line-height: 9px;
    }

    /* testosteron */
    .testosteron-info .reverse h3.title {
        font-size: 23px;
    }
    .testosteron-info p.medium {
        font-size: 15px;
        line-height: 25px;
    }

    /* treatment */
    .treatment.show-768 {
        padding: 0;
        min-height: 1000px;
        max-height: 1000px;
        height: 1000px;
        display: flex;
        align-items: center;
    }
    .products {
        margin-left: -300px;
        margin-right: -300px;
        display: block;
        margin-top: 0 !important;
    }
    .products .inner {height: 100%;}
    .products .slick-track {
        display: flex;
        align-items: center;
    }
    .products .slide-item {padding: 0 12px;}
    .products .slick-center:not(.inverse) .inner {
        min-height: 400px;
        background: #f3f3f3;
    }
    .products .image {
        min-height: inherit;
        max-height: 315px;
        align-items: inherit;
    }
    .products .slide-item img {
        height: auto;
        width: 100%;
        object-fit: contain;
    }
    .products .popular {
        font-size: 11px;
        line-height: 40px;
        height: 35px;
    }
    .products .title {
        height: 50px;
        font-size: 17px;
        line-height: 57px;
    }
    .products .subtitle {
        height: 35px;
        font-size: 15px;
        line-height: 38px;
    }
    .products .info span {
        font-size: 15px;
        line-height: 25px;
    }
    .products .info p {
        font-size: 13px;
        line-height: 25px;
    }
    .products .price .list {
        font-size: 12px;
        padding-top: 10px;
    }
    .products .price .big {
        font-size: 41px;
        line-height: 41px;
    }
    .products .price .free {
        font-size: 13px;
        padding: 3px 0;
    }
    .products .bottom {
        padding: 35px 40px;
    }
    .products .slide-dots span {
        background: #002340;
    }
    .products .slide-dots span.active {
        background: transparent;
        border-color: #002340;
    }
    .slide-dots {
        margin-top: 60px;
    }

    /* yourself */
    .yourself {background-position: right -290px top;}
    .yourself .bottle {
        width: 150px;
        margin-bottom: -145px;
    }
    .yourself .bottle img {min-width: 242px;}

    /* male */
    .male .btn {width: 310px;}

    /* about */
    .about-text h2.title {
        font-size: 31px;
        line-height: 41px;
    }
    .btn-accordeon {font-size: 14px;}
    .about-image {min-width: 300px;}

    /* footer */
    .footer-top {flex-direction: column;}
    .footer-top .social {margin-top: 35px;}
    .footer-middle {
        margin: 0 0;
        padding: 40px 0 35px 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-middle__column {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .footer-middle__column.last {margin-bottom: 0;}
    .footer-bottom__column {text-align: center;}

    .footer-bottom__column.copy {
        text-align: center;
        justify-content: center;
    }
}

@media screen and (max-width: 700px) {
    .hide-mob {display: none;}
    .show-mob {display: block;}

    body {
        font-size: 18px;
        line-height: 28px;
    }

    h2.title {
        font-size: 30px;
        line-height: 36px;
    }

    h3.title {
        font-size: 31px;
        line-height: 37px;
    }

    p.subtitle {
        font-size: 15px;
        line-height: 25px;
    }

    .btn {
        height: 50px;
        width: 270px;
        font-size: 18px;
    }
    .btn-wrap .label p:first-child {
        font-size: 15px;
        line-height: 15px;
    }
    .btn-wrap .label p:last-child {
        font-size: 12px;
        line-height: 12px;
    }
    .btn:after,
    .btn-wrap.inverse .btn:after {
        width: 9px;
        background-size: 9px;
        display: none;
    }

    /* header */
    .header {padding: 8px 0;}

    .logo {
        width: 112px;
        height: 31px;
        background-size: 112px;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(0,0,0,.9);
        align-items: center;
        flex-direction: column;
        justify-content: center;
        z-index: 9991;
        opacity: 0;   
        margin-right: 0 !important;  
    }
    nav .tx-center {
        display: block;
        margin-top: 30px;
    }
    nav .tx-center .btn-head {
        margin-right: 0;
        font-size: 16px;
        width: 230px;
        height: 45px;
        line-height: 48px;
    }
    nav .tx-center .btn-head:after {display: none;}
    .header.nav-active nav {
        display: flex;
        animation: opacity 0.3s linear forwards;
    }
    .header nav ul {
        display: block;
    }
    .header nav ul li + li {
        margin-left: 0;
    }
    .header nav ul a {
        display: block;
        text-align: center;
        padding: 10px 0;
        font-size: 20px;
    }

    .btn-nav {
        width: 20px;
        height: 16px;
        z-index: 9999;
        position: relative;
        cursor: pointer;
    }
    .btn-nav span {
        width: 100%;
        height: 2px;
        background: #e9b77f;
        display: block;
        transform-origin: center;
        transition: all 0.3s;
    }
    .btn-nav span + span {margin-top: 5px;}
    .header.nav-active .btn-nav span {
        position: absolute;
        top: 50%;
        margin-top: -1.5px;
    }
    .header.nav-active .btn-nav span:first-child {transform: rotate(45deg);}
    .header.nav-active .btn-nav span:last-child {transform: rotate(-45deg);}
    .header.nav-active .btn-nav span:nth-child(2) {display: none;}

    .btn-head {
        width: 180px;
        height: 39px;
        line-height: 42px;
        font-size: 15px;
        margin-left: auto;
        margin-right: 15px;
    }

    /* home */
    .home {
        background: url(../img/bg-mainmob.jpg) no-repeat right top;
        background-size: cover;
    }
    .home .center {padding: 40px 15px 50px 15px;}
    .home h1 {
        font-size: 34px;
        line-height: 39px;
        font-weight: 600;
        font-family: 'Campton', sans-serif;
    }
    .home p.subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .home p.text {
        font-size: 14px;
        line-height: 23px;
    }
    .home .btn {
        width: 220px;
        height: 45px;
        line-height: 49px;
    }
    .home .btn-wrap .label p:first-child {
        font-size: 10px;
        line-height: 10px;
    }
    .home .btn-wrap .label p:last-child {
        margin-top: 0;
        padding-left: 30px;
        font-size: 8px;
        line-height: 8px;
    }
    .home .btn-wrap .label p:first-child:before {
        margin-right: 3px;
    }
    .home .group .hippa {display: none;}
    .home-product {
        margin-bottom: -127px;
        max-width: 240px;
        margin-right: -83px;
    }

    /* section tab */
    .section-tab {
        padding: 65px 0 45px 0;
        max-height: 400px;
        min-height: 400px;
    }
    .tab {
        display: block;
    }
    .tab-controls {
        display: flex;
        flex-wrap: wrap;
        margin-left: -10px;
    }
    .tab-controls:after {display: none;}
    .tab-controls li {
        width: 50%;
        transform: none !important;
        opacity: 1 !important;
    }
    .tab-controls li + li {
        margin-top: 0;
    }
    .tab-controls li div {
        font-size: 21px;
        line-height: 30px;
        padding-left: 10px;
    }
    .tab-controls li div:before {
        border-top: 5px solid transparent;
        border-left: 5px solid #ac1025;
        border-bottom: 5px solid transparent;
        margin-top: -8px;
    }
    .tab-content > div {
        padding-left: 0;
        padding-top: 30px;
    }
    .tab-content h2 {
        font-size: 28px;
        line-height: 38px;
        font-weight: 600;
        color: #bd001d;
        margin-bottom: 0;
    }

    /* testosteron */
    .testosteron .icons {
        margin-top: 30px;
        align-items: center;
        flex-direction: column;
    }
    .testosteron .icons li {width: 100%;}
    .testosteron .icons li + li {margin-top: 45px;}
    .testosteron-info {
        margin-top: 50px;
    }
    .testosteron-info .wrap {
        flex-direction: column;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 30px;
    }
    .testosteron-info .wrap .text {padding: 0 15px !important;}
    .testosteron-info .wrap > div:first-child {
        width: 100%;
        padding-right: 0;
    }
    .testosteron-info .wrap > div:last-child {
        padding-left: 0;
        width: 100%;
        margin-top: 50px;
    }
    .testosteron-info .wrap > div:first-child {order: 0;}
    .testosteron-info .image:after {display: none;}
    .testosteron-info .reverse .image {
        padding-left: 0;
    }
    .testosteron-info .bottle {
        position: absolute;
        left: 25px;
        bottom: -90px;
        max-width: 170px;
    }
    .testosteron-info p.medium {
        font-size: 19px;
        line-height: 27px;
        margin-top: 10px;
    }
    .testosteron-info .reverse h3.title {
        font-size: 31px;
    }

    /* recommended */
    .recommended {
        padding: 50px 0 35px 0;
    }
    .crown i {
        width: 60px;
        min-width: 60px;
        height: 42px;
        background-size: 60px;
    }
    .slider-text {margin-top: 25px;}
    .slider-text .track {align-items: center;}
    .slider-text h3 {
        font-size: 34px;
        line-height: 45px;
    }
    .slider-text h3 br {display: none;}
    .slide-dots span {
        width: 8px;
        height: 8px;
        min-width: 8px;
        margin: 0 3px;
    }

    /* yourself */
    .yourself {
        padding: 50px 0 60px 0;
        background: #161928;
    }
    .yourself-text {padding: 0;}
    .yourself-product {
        position: relative;
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .yourself .bottle {
        width: 145px;
        margin-bottom: -85px;
        left: inherit;
        transform: none;
        right: -25px;
    }
    .yourself .bottle img {min-width: inherit;}
    .yourself-text h2 {
        font-size: 40px;
        line-height: 48px;
    }
    .yourself-text p br {display: none;}
    .yourself-text .btn-wrap {display: block;}

    /* male */
    .male {
        padding-top: 50px;
        padding-bottom: 90px;
    }
    .male .text {
        padding-left: 0;
        width: 100%;
        padding-bottom: 0;
    }
    .male .text h2.title {
        margin-bottom: 20px;
    }
    .male .text p + p {
        margin-top: 25px;
    }
    .male .text .btn-wrap {
        margin-left: 0;
        display: block;
    }
    .male .text .signature {
        margin-bottom: 60px;
    }
    .signature img {max-width: 150px;}
    .male .image {display: none;}
    
    /* tested */
    .tested {
        padding: 75px 0 45px 0;
        background: #151a2a url(../img/bg-testedmob.png) no-repeat center bottom;
    }
    .slider-tested {margin-top: 25px;}
    .tested-item {width: 100%;}
    .tested-item .text {padding-left: 0;}
    .tested-item .text br {display: none;}
    .tested-item .text:before {display: none;}
    .tested-item .image {
        min-height: inherit;
        max-height: inherit;
        max-width: 280px;
    }
    .tested-item .image.one {margin-left: -100px;}
    .tested-item .image.two {margin-left: 0px;}
    .tested-item .image img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    .tested-item h3 {margin-top: 20px;}
    .tested-item .text {
        padding-left: 0;
        margin-top: 5px;
    }

    /* about */
    .about {
        padding: 60px 0 0 0;
        max-height: inherit;
    }
    .about .center {flex-direction: column;}
    .about-text h2.title {
        font-size: 26px;
        line-height: 36px;
    }
    .btn-accordeon {
        font-size: 20px;
        line-height: 30px;
        font-weight: bold;
        font-family: 'Campton', sans-serif;
        padding: 13px 0 13px 0;
    }
    .btn-accordeon .plus {min-width: 15px;}
    .about-image {
        min-width: inherit;
        max-width: 280px;
        margin: 65px auto 0 auto;
    }
}

@media screen and (max-width: 400px) {
    h2.title {
        font-size: 27px;
        line-height: 33px;
    }

    /* header */
    .btn-head {
        width: 160px;
        height: 35px;
        line-height: 37px;
        font-size: 13px;
    }

    /* home */
    .home h1 {
        font-size: 30px;
        line-height: 36px;
    }
    .home p.subtitle {
        font-size: 14px;
        line-height: 24px;
    }
    .home-product {
        margin-bottom: -110px;
        max-width: 210px;
        margin-right: -80px;
    }

    /* about */
    .about-text h2.title {
        font-size: 20px;
        line-height: 30px;
    }
    .btn-accordeon {
        font-size: 16px;
        line-height: 26px;
    }

    .testosteron h2.title {
        font-size: 26px;
    }
}

@media screen and (max-width: 360px) {
    h2.title {
        font-size: 25px;
        line-height: 31px;
    }

    /* home */
    .home h1 {
        font-size: 28px;
        line-height: 33px;
    }
    .home-product {
        margin-bottom: -107px;
        max-width: 200px;
        margin-right: -70px;
    }
    .home p.subtitle {
        font-size: 13px;
        line-height: 23px;
    }
    .home .btn {width: 200px;}
    .home .btn-wrap .label p:first-child {
        font-size: 10px;
        line-height: 10px;
    }
    .home .btn-wrap .label p:last-child {
        font-size: 8px;
        line-height: 8px;
    }

    .testosteron h2.title {
        font-size: 22px;
        line-height: 28px;
    }

    /* yourself */
    .yourself-text h2 {
        font-size: 35px;
        line-height: 43px;
    }
}






@media screen and  (min-width: 768px) and (max-width: 910px){
    .header nav {
        margin-right: 20px;
    }
    .header nav li + li{
        font-size: 10px !important;
        margin-left:10px !important;
    }
}

