@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Bold.eot');
    src: url('../fonts/Campton-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Campton-Bold.woff2') format('woff2'), url('../fonts/Campton-Bold.woff') format('woff'), url('../fonts/Campton-Bold.ttf') format('truetype'), url('../fonts/Campton-Bold.svg#Campton-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Light.eot');
    src: url('../fonts/Campton-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Campton-Light.woff2') format('woff2'), url('../fonts/Campton-Light.woff') format('woff'), url('../fonts/Campton-Light.ttf') format('truetype'), url('../fonts/Campton-Light.svg#Campton-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-SemiBold.eot');
    src: url('../fonts/Campton-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Campton-SemiBold.woff2') format('woff2'), url('../fonts/Campton-SemiBold.woff') format('woff'), url('../fonts/Campton-SemiBold.ttf') format('truetype'), url('../fonts/Campton-SemiBold.svg#Campton-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton-Medium.eot');
    src: url('../fonts/Campton-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Campton-Medium.woff2') format('woff2'), url('../fonts/Campton-Medium.woff') format('woff'), url('../fonts/Campton-Medium.ttf') format('truetype'), url('../fonts/Campton-Medium.svg#Campton-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    border: none;
    text-decoration: none;
    background: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-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;
}

/* tags */

html, body {
    height: 100%;
}

body {
    background: #fff;
    font-family: 'Campton', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    overflow-x: hidden;
}

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

h2.title {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 2px;
    color: #151b30;
}

h2.title span {
    color: #b32027;
}

p+p {
    margin-top: 30px;
}

p b {
    font-weight: 600;
}

.mt30 {
    margin-top: 30px;
}

/* display */

.flex {
    display: flex;
    justify-content: space-between;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%;
}

.flex-center {
    display: flex;
    justify-content: center;
}

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

.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;
}

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

/* text */

.tx-left {
    text-align: left;
}

.tx-right {
    text-align: right;
}

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

/* main */

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

.wrapper {
    overflow-x: hidden;
}

/* button */

.btn {
    font-weight: bold;
    font-size: 15px;
    color: #fff;
    background: #b32024;
    display: inline-block;
    padding: 20px 45px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    min-width: 320px;
}

.btn-head, .btn-home {
    padding: 13px 15px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    background: #b32025;
    position: relative;
    z-index: 1;
}

.btn-head:before, .btn-home:before, .btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #D3A36F;
    background: linear-gradient(left, #E1B77E 0%, #D3A36F 100%);
    transition: transform 0.3s ease-out;
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.btn-head:hover:before, .btn-home:hover:before, .btn:hover:before {
    transform: scaleX(1);
}

.btn-home {
    padding: 25px 70px;
    font-size: 21px;
    line-height: 21px;
    letter-spacing: 2px;
}

.btn-home:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 17px;
    background: url(../img/ic-arr.png);
    margin-left: 6px;
    position: relative;
    top: 1px;
}

.shadow-pulse {
    animation: shadow-pulse 3s infinite;
}

@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);
    }
}

/* HEADER
-------------------------------------- */

.header {
    background: #15192f;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9991;
}

.header .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}

.logo {
    width: 140px;
    height: 37px;
    background: url(../img/logo.svg) no-repeat center;
    background-size: 140px;
}

.nav {
    margin-left: auto;
    margin-right: 35px;
}

.nav ul {
    display: flex;
}

.nav ul li+li {
    margin-left: 35px;
}

.nav ul a {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s;
}

.nav ul a:hover {
    color: #b32025;
}

/* HOME
-------------------------------------- */

.home {
    background: #0f4d88 url(../img/bg-home.jpg) no-repeat center bottom;
    background-size: cover;
    position: relative;
}

.home .center {
    display: flex;
}

.home-text {
    padding: 60px 0 70px 0;
    max-width: 60%;
    color: #fff;
}

.home-text h1 {
    font-size: 55px;
    line-height: 60px;
    letter-spacing: 3px;
}

.home-text h1+p {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    margin-top: 10px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.home-text p {
    font-size: 21px;
    line-height: 30px;
    letter-spacing: 0px;
}

.home-text .group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 50px;
}

.home-text .group .align-center {
    padding-left: 20px;
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
    opacity: 0.8;
    letter-spacing: 2px;
}

.home-text .group .align-center img {
    margin-right: 5px;
}

.home-text p.small {
    font-size: 14px;
}

.home-text p.bottom {
    font-size: 18px;
    line-height: 22px;
    padding: 14px;
    margin-top: 25px;
    border: 1px solid #fff;
}

.home-text p.bottom a {
    text-decoration: underline;
    color: #fff;
}

.home-text p.bottom a:hover {
    text-decoration: none;
}

.home .bg {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.home .bg-line {
    height: 100%;
    position: relative;
    left: 20px;
}

.home .bg-product {
    position: absolute;
    left: 100px;
    bottom: 35px;
    opacity: 1;
    min-width: 284px;
}

/* PREFERENCE
-------------------------------------- */

.preference {
    position: relative;
    overflow: hidden;
}

.preference:after {
    content: '';
    display: block;
    width: 107px;
    height: 31px;
    background: url(../img/ic-arrdowntop.jpg) no-repeat;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.preference .warning {
    border: 4px solid #000;
    padding: 25px 20px;
    font-size: 16px;
    line-height: 21px;
    max-width: 1100px;
    margin: 70px auto 0 auto;
    font-weight: 300;
}

.preference .warning p {
    color: inherit;
}

.preference .side-effects {
    padding: 25px 20px;
    font-size: 16px;
    line-height: 21px;
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 300;
    color: #000;
}

.preference .side-effects p {
    color: inherit;
}

.preference .warning h3 {
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
}

.preference .center {
    display: flex;
    padding: 80px 0 95px 0;
}

.preference .item {
    width: 25%;
    text-align: center;
}

.preference .item:nth-child(2) {
    transition-delay: 0.3s;
}

.preference .item:nth-child(3) {
    transition-delay: 0.6s;
}

.preference .item:nth-child(4) {
    transition-delay: 0.9s;
}

.preference .item svg, .preference .item img {
    width: 90px;
    height: 90px;
    transition: all 0.5s;
    transform: perspective(300px);
}

.preference .item:hover svg, .preference .item:hover img {
    transform: perspective(300px) translate3d(0, 0, 0) rotateY(180deg);
}

.preference p {
    font-size: 18px;
    line-height: 30px;
    color: #02264a;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* SECTION TABLE
-------------------------------------- */

.section-table {
    background: #f5f5f5;
    padding: 100px 0 80px 0;
}

.section-table h2.title {
    font-size: 48px;
    line-height: 53px;
}

.table {
    padding-top: 140px;
}

.table li {
    display: flex;
}

.table li>div {
    border-right: 5px solid #f5f5f5;
}

.table li>div.column-30 {
    min-width: 23%;
}

.table li>div.column-19 {
    min-width: 19.3%;
}

.table .head>div {
    background: #fff;
    text-align: center;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.table .head>div:first-child {
    background: none;
}

.table .head>div:nth-child(2) {
    border-left: 3px solid #0f477c;
    position: relative;
    z-index: 1;
}

.table .head>div:nth-child(2):before {
    content: '';
    display: block;
    height: 3px;
    background: #0f477c;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.table .head>div:nth-child(2):after {
    content: '';
    display: block;
    width: 3px;
    background: #0f477c;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.table .head>div .image {
    margin-top: -70px;
}

.table .head>div p {
    font-size: 18px;
    line-height: 24px;
    color: #0c2240;
    margin-top: auto;
}

.table .body>div:first-child {
    background: #d0a66e;
    padding: 15px 25px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 5px solid #f5f5f5;
    justify-content: flex-start;
    text-align: left;
}

.table .body>div:first-child img {
    margin-left: 15px;
}

.table .body>div {
    border-bottom: 5px solid #fff;
    background: #e0e0e0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table .body>div:nth-child(2) {
    background: #0f477c;
    border-color: #f5f5f5;
}

.table .check-circle {
    width: 36px;
    height: 34px;
    display: inline-block;
    background: url(../img/ic-checkcircle.png) no-repeat;
}

.table .delete {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: url(../img/ic-delete.png) no-repeat;
}

.table .check {
    width: 30px;
    height: 24px;
    display: inline-block;
    background: url(../img/ic-check.png) no-repeat;
}

.btn-green {
    background: #bc2e27;
    color: #ffffff;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 15px 10px;
    position: relative;
    z-index: 1;
}

.btn-green:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #D3A36F;
    background: linear-gradient(left, #E1B77E 0%, #D3A36F 100%);
    transition: transform 0.3s ease-out;
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.btn-green:hover:before {
    transform: scaleX(1);
}

.btn-green span {
    display: block;
}

.btn-green span:first-child {
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
}

.btn-green span:last-child {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    padding-left: 3px;
}

.btn-green .ic {
    display: inline-block;
    width: 12px;
    height: 18px;
    background: url(../img/ic-arr.png) no-repeat center;
    margin-left: 15px;
    position: relative;
    top: 3px;
}

.table .foot div:last-child {
    font-weight: 300;
    font-size: 21px;
    color: #02264a;
    padding: 0 20px;
    display: flex;
    align-items: center;
    letter-spacing: 0.8px;
}

/* DISCOLERED
-------------------------------------- */

.discolored {
    background: #f3f3f3;
}

.btn-accordeon {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #151a30;
    letter-spacing: 1px;
    padding: 15px 0;
    border-bottom: 1px solid #dbdee0;
    cursor: pointer;
}

.btn-accordeon:before {
    content: '';
    display: block;
    width: 19px;
    min-width: 19px;
    height: 19px;
    background: url(../img/ic-plus.png) no-repeat;
    margin-right: 17px;
}

.item-accordeon.active .btn-accordeon:before {
    height: 1px;
    background: url(../img/ic-minus.jpg) no-repeat;
}

.content-accordeon {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    font-size: 18px;
    line-height: 30px;
    color: #151a30;
}

.item-accordeon.active .content-accordeon .inner {
    padding: 20px 0;
}

.item-accordeon.active .content-accordeon .inner ul {
    margin-left: 15px;
    margin-top: 15px;
}

.item-accordeon.active .content-accordeon .inner ul li {
    position: relative;
    padding-left: 15px;
}

.item-accordeon.active .content-accordeon .inner ul li:after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -2.5px;
}

.discolored>.center {
    display: flex;
    justify-content: space-between;
}

.discolored .accordeon {
    margin-top: 65px;
}

.discolored .content {
    padding: 110px 0 65px 0;
    min-width: 770px;
    margin-right: 65px;
}

.cicloprox-side-effect {
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #151a30;
    margin-top: 10px;
}

.cicloprox-side-effect div {
    display: none;
}

.cicloprox-side-effect div.active {
    display: inline;
}

.cicloprox-side-effect a {
    text-decoration: underline;
    color: #151a30;
}

.cicloprox-side-effect a:hover {
    text-decoration: none;
}

.discolored .thumb {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 600px;
    margin-top: -45px;
}

/* TREAT
-------------------------------------- */

.treat {
    padding: 100px 0 60px 0;
    background: #0e2547;
    color: #fff;
    position: relative;
}

.treat:after {
    content: '';
    display: block;
    width: 108px;
    height: 30px;
    background: url(../img/ic-arrdown.jpg) no-repeat;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -54px;
}

.treat>.center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.treat h2.title {
    color: #fff;
    margin-bottom: 40px;
}

.treat .content, .treat .thumb {
    width: 50%;
}

.treat p a {
    color: #fff;
}

.treat p a:hover {
    text-decoration: underline;
}

.treat .content {
    margin-right: 55px;
    min-width: 645px;
}

.treat .content p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
}

.treat .content p:last-child {
    font-size: 13px;
    line-height: 20px;
}

.treat .btn-home {
    display: inline-block;
    margin-top: 35px;
}

/* CROWN
-------------------------------------- */

.crown {
    background: #ba2e23;
    padding-top: 100px;
    padding-bottom: 80px;
}

.crown h2 {
    background: url(../img/shapes.png) no-repeat center top;
    padding-top: 95px;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    color: #fff;
}

.crown p {
    margin: 35px 0;
    color: #fff;
}

.crown .btn {
    background: #ebc186;
    color: #151c37;
}

.crown .btn:hover {
    color: #fff;
}

.crown .btn:before {
    background: #15192f;
}

.crown img {
    display: block;
    margin: 35px auto 0 auto;
}

/* TREATMENT
-------------------------------------- */

.treatment {
    padding: 70px 0 100px 0;
}

.treatment h2.title {
    margin-bottom: 15px;
}

.treatment h2.title+p {
    color: #02264a;
}

.treatment-box {
    margin: 70px auto 70px auto;
    background: #f5f5f5;
    max-width: 1130px;
    padding: 65px 0 65px 50px;
    display: flex;
    justify-content: center;
}

.treatment-box .content {
    min-width: 640px;
    margin-right: 50px;
}

.btn-treatment {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9e9e9;
    border-radius: 25px;
    max-width: 420px;
    margin-top: 55px;
    font-size: 22px;
    font-weight: 500;
    color: #ab1026;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.btn-treatment:hover {
    color: #fff;
}

.btn-treatment span {
    position: relative;
    z-index: 3;
}

.btn-treatment:after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #fff url(../img/arr-down.png) no-repeat center;
    border-radius: 50%;
    margin-left: 25px;
    position: relative;
    z-index: 3;
}

.btn-treatment:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #15477b;
    background: linear-gradient(to right, #0B223F 0%, #15477B 100%);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: .5s;
    transition-timing-function: ease-out;
}

.btn-treatment:hover:before {
    transform: scaleX(1);
}

.treatment-box h3 {
    font-size: 40px;
    line-height: 60px;
    color: #02264a;
}

.treatment-box p.subtitle {
    color: #848486;
    border-bottom: 1px solid #dbdee0;
    padding-bottom: 15px;
    margin-bottom: 45px;
}

.treatment-box p.subtitle+p {
    color: #848486;
}

.treatment-box .group {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.treatment-box .group>div {
    margin-right: 30px;
}

.treatment-box .group>div span.big {
    font-size: 50px;
    line-height: 1;
    font-weight: bold;
    color: #02264a;
    display: block;
}

.treatment-box .group>div span {
    font-size: 21px;
    line-height: 1;
    font-weight: bold;
    color: #02264a;
    display: block;
}

.treatment-box .group .btn {
    max-width: 325px;
    padding: 16px 0;
    text-align: center;
}

.treatment-box .group .btn span:first-child {
    font-weight: bold;
    font-size: 21px;
    line-height: 21px;
    letter-spacing: 3px;
    display: block;
}

.treatment-box .group .btn span:last-child {
    font-weight: 600;
    font-size: 15px;
    line-height: 17px;
    display: block;
    margin-top: 5px;
}

.treatment-box .link, .next .link {
    display: flex;
    align-items: center;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 25px;
    background: #ececec;
    max-width: 325px;
    border-radius: 50px;
    font-size: 17px;
    color: #848486;
}

.treatment-box .link .ic, .next .link .ic {
    display: block;
    width: 30px;
    height: 30px;
    background: #fff url(../img/ic-arrsmall.png) no-repeat center;
    border-radius: 50%;
}

.treatment-box img {
    margin-bottom: -40px;
}

/* PROCESS
-------------------------------------- */

.process {
    background: #02264a;
    padding: 95px 0 120px 0;
    position: relative;
}

.process:after {
    content: '';
    display: block;
    background: #fff;
    position: absolute;
    top: 495px;
    left: 0;
    right: 0;
    bottom: 0;
}

.process .center {
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.process .tx-center {
    color: #fff;
}

.process h2.title {
    color: #fff;
    margin-bottom: 15px;
}

.process .tx-center p {
    color: #fff;
}

.process .row {
    display: flex;
    justify-content: space-between;
    margin-top: 65px;
}

.process .item {
    width: 100%;
    width: 33.33%;
    padding: 0 25px;
}

.process .item:nth-child(2) {
    transition-delay: 1s;
}

.process .item:nth-child(3) {
    transition-delay: 1.5s;
}

.process-img {
    border: 1px solid #b4975a;
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 100%;
    position: relative;
}

.process-img:after {
    content: '';
    display: block;
    width: 36px;
    height: 29px;
    background: url(../img/arr-process.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 10px;
    margin-top: -20px;
}

.process-img .number {
    font-size: 40px;
    color: #fff;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 2;
}

.process .item:last-child .process-img:after {
    display: none;
}

.hover-base {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-size: cover;
}

.hover-gif {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

.process .item:hover .hover-gif {
    opacity: 1;
    transition: opacity 0.15s ease-out;
}

.process h5 {
    font-size: 24px;
    line-height: 30px;
    color: #02264a;
    letter-spacing: 2px;
    margin-top: 30px;
}

.process p {
    font-size: 18px;
    color: #02264a;
    margin-top: 15px;
}

.process .foot {
    max-width: 315px;
    margin: 95px auto 0 auto;
    position: relative;
}

.process .foot:before, .process .foot:after {
    content: '';
    display: block;
    width: 362px;
    height: 1px;
    background: url(../img/line.jpg) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -0.5px;
}

.process .foot:before {
    right: 100%;
    margin-right: 30px;
}

.process .foot:after {
    transform-origin: center;
    transform: rotate(180deg);
    left: 100%;
    margin-left: 30px;
}

/* NEXT
-------------------------------------- */

.next {
    padding: 120px 0 100px 0;
    background: #f5f5f5;
}

.next .inner {
    border: 1px solid #b4965a;
    position: relative;
    padding-bottom: 200px;
}

.next h2.title {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    padding: 0 45px;
    background: #f5f5f5;
    white-space: nowrap;
}

.next .inner .tx-center {
    color: #02264a;
    font-size: 18px;
    line-height: 24px;
    margin-top: 50px;
}

.next .row {
    display: flex;
    background: #f5f5f5;
    position: absolute;
    left: 85px;
    right: 85px;
    bottom: 0;
    transform: translateY(50%);
}

.next .item {
    border: 1px solid #b4965a;
    padding: 40px 35px 40px 35px;
    width: 50%;
    background: #f5f5f5;
    position: relative;
}

.next .item:before, .next .item:after {
    content: '';
    display: block;
    width: 13px;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.next .item:first-child:before {
    right: 100%;
    margin-right: 1px;
}

.next .item:last-child:after {
    left: 100%;
    margin-left: 1px;
}

.next .item:first-child {
    margin-right: 20px;
}

.next .item:last-child {
    margin-left: 20px;
}

.next .item .title {
    display: flex;
    align-items: center;
}

.next .item h3 {
    font-size: 24px;
    line-height: 30px;
    margin-left: 40px;
    letter-spacing: 1px;
    color: #02264a;
}

.next .item p {
    color: #02264a;
    margin-top: 30px;
}

.next .item .title .ic {
    display: block;
    width: 90px;
    min-width: 90px;
    height: 90px;
}

.next .item:first-child .title .ic {
    background: url(../img/ic-1.png) no-repeat;
}

.next .item:last-child .title .ic {
    background: url(../img/ic-2.png) no-repeat;
}

.next .item .title a {
    margin-top: 0;
    font-size: 12px;
    text-transform: capitalize !important;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 42px;
    color: #b21f24;
}

.next .item .title a:hover {
    text-decoration: none;
}

.next .center>.tx-center {
    margin-top: 220px;
}

/* FAQ
-------------------------------------- */

.faq {
    padding: 90px 0 100px 0;
}

.faq .accordeon {
    margin: 60px auto 0 auto;
    max-width: 1100px;
}

.faq .center>p {
    font-size: 14px;
    color: #000;
    margin: 30px auto 0 auto;
    max-width: 1100px;
}

/* FOOTER
-------------------------------------- */

.footer {
    background-color: #151b2f;
    color: #fff;
}

.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 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: 13px;
    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;
}

/* 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-bottom {
    opacity: 0;
    transform: translateY(100%);
    transition: transform 2s cubic-bezier(.19, 1, .22, 1), opacity 1.9s;
}

.an-scale {
    opacity: 0;
    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;
}

.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -999;
    opacity: 0;
    transition: opacity 0.5s;
    background: rgba(0, 0, 0, .8);
    z-index: -999;
}

.popup-overlay.active {
    opacity: 1;
    z-index: 999;
}

.popup {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -9991;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s 0.5s;
}

.popup.active {
    opacity: 1;
    z-index: 9991;
    height: auto;
    overflow: visible;
}

.popup-info, .popup-home {
    background: #fff;
    max-width: 80%;
    width: 100%;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 50%;
}

.popup-close svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}

.popup-close.btn {
    position: static;
    border-radius: 0;
    margin: 50px auto 20px auto;
    height: auto;
    text-align: center;
    width: auto;
    display: inline-block;
}

.popup-info .c-red, .popup-info a.c-red, .popup-home a.c-red, .popup-home .c-red {
    color: #c60202;
}

.modal-title {
    background: #151b2f;
    padding: 30px 60px 30px 30px;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    min-height: 65px;
}

.popup .wrap {
    padding: 30px;
    background: #fff;
    max-height: 60vh;
    overflow-y: scroll;
}

.popup .wrap h4 {
    margin: 30px 0;
}

.popup .wrap h5 {
    font-size: 25px;
    padding: 20px 0 20px 0;
    margin-top: 30px;
}

.popup .wrap h4 {
    font-size: 35px;
}

.popup .wrap h3 {
    font-size: 45px;
    margin-top: 50px;
}

.popup .wrap ul {
    margin-top: 30px;
    margin-left: 25px;
}

.popup .wrap ul li+li {
    margin-top: 10px;
}

.popup .wrap ul li {
    position: relative;
    padding-left: 25px;
}

.popup .wrap ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #151a29;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 13px;
}

.popup .wrap .accordeon {
    margin-left: 0;
}

.popup .wrap .item-accordeon {
    padding-left: 0;
}

.popup .wrap .item-accordeon:before {
    display: none;
}

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

/*               MEDIA QUERI                      */

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

@media screen and (max-width: 1300px) {
    .nav ul li+li {
        margin-left: 15px;
    }
    /* home */
    .home {
        background-size: auto 100%;
    }
    .home .bg-product {
        margin-left: -30px;
    }
    .home-text h1 {
        font-size: 45px;
        line-height: 50px;
    }
    /* discolored */
    .discolored h2.title br {
        display: none;
    }
    .discolored>.center {
        align-items: flex-end;
    }
    .discolored .content {
        min-width: 550px;
        padding-bottom: 45px;
    }
    .discolored .thumb {
        min-width: 500px;
        padding-bottom: 0;
        margin-top: 0;
        margin-left: -50px;
    }
    /* treatment */
    .treatment-box {
        align-items: center;
        padding: 50px 0 50px 50px;
        max-width: inherit;
    }
    .treatment-box .content {
        min-width: 550px;
        margin-right: 30px;
    }
    .treatment-box h3 {
        font-size: 38px;
        line-height: 45px;
        margin-bottom: 15px;
    }
    .treatment-box .group>div span.big {
        font-size: 40px;
    }
    .treatment-box .group>div span {
        font-size: 18px;
    }
    .treatment-box .group .btn {
        min-width: 265px;
    }
    .treatment-box .group .btn span:first-child {
        font-size: 19px;
        line-height: 19px;
    }
    .treatment-box .group .btn span:last-child {
        font-size: 13px;
        line-height: 15px;
    }
    .treatment-box img {
        margin-bottom: -80px;
        max-width: 450px;
    }
}

@media screen and (max-width: 991px) {
    .hide-ipade {
        display: none;
    }
    .show-ipade {
        display: block;
    }
    /* header */
    .btn-head {
        margin-left: auto;
    }
    .btn-menu {
        width: 20px;
        height: 16px;
        display: block;
        position: relative;
        margin-left: 18px;
        z-index: 9999;
    }
    .btn-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background: #e9b77f;
        transition: transform 0.3s;
    }
    .btn-menu span+span {
        margin-top: 5px;
    }
    .btn-menu.active span {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin-top: -1px;
        transform-origin: center;
    }
    .btn-menu.active span:nth-child(1) {
        transform: rotate(45deg);
    }
    .btn-menu.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    .btn-menu.active span:nth-child(2) {
        display: none;
    }
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9991;
        background: rgba(5, 28, 44, .9);
        min-width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        padding: 50px 0;
        transition: transform 0.3s;
        transform: translateX(-100%);
        margin-right: 0;
    }
    .nav.active {
        transform: translateX(0%);
    }
    .nav ul {
        flex-direction: column;
    }
    .nav ul li+li {
        margin-left: 0;
    }
    .nav ul a {
        font-size: 20px;
        font-weight: 300;
        display: block;
        padding: 10px 0;
    }
    .nav .btn-head {
        margin-left: auto;
        margin-right: auto;
        padding: 15px 40px;
        margin-top: 20px;
        display: flex;
    }
    /* home */
    .home-text h1 {
        font-size: 32px;
        line-height: 37px;
    }
    .btn-home {
        padding-right: 30px;
        padding-left: 30px;
        font-size: 16px;
    }
    .home .bg-product {
        min-width: 375px;
        margin-left: -60px;
    }
    /* table */
    .table li.foot {
        display: none;
    }
    .table li:nth-last-child(2) .column-19 {
        border-color: #f5f5f5;
    }
    .section-table>.center>.tx-center:last-child {
        margin-top: 40px;
    }
    .btn-green {
        max-width: 325px;
        margin: 0 auto;
        background: #ac1024;
    }
    .btn-green span {
        font-weight: bold;
        font-size: 20px;
    }
    .btn-green span:last-child {
        font-weight: 600;
    }
    /* discolored */
    .discolored>.center {
        flex-direction: column;
    }
    .discolored .content {
        max-width: 100%;
        min-width: 100%;
        margin-right: 0;
        padding-bottom: 0;
        padding-top: 0;
    }
    .discolored .thumb {
        min-width: 100%;
        padding-bottom: 0;
        margin-top: 30px;
        text-align: center;
        margin-left: 0;
    }
    /* treat */
    .treat h2.title br {
        display: none;
    }
    .treat .content {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
    }
    .treat .content img {
        margin: 55px auto;
    }
    .treat .btn-home {
        margin-left: auto;
        margin-right: auto;
        max-width: 270px;
        display: flex;
    }
    /* crown */
    .crown p br {
        display: none;
    }
    /* treatment */
    .treatment .tx-center img {
        margin-top: 45px;
        margin-left: auto;
        margin-right: auto;
    }
    .treatment-box {
        padding: 55px 30px 50px 30px;
        margin-top: 55px;
    }
    .treatment-box .content {
        min-width: 100%;
        margin-right: 0;
        text-align: center;
    }
    .treatment-box p.subtitle {
        margin-bottom: 0;
    }
    .treatment-box p.subtitle+p {
        margin-top: 15px;
    }
    .treatment-box .group {
        flex-direction: column;
    }
    .treatment-box .group>div {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .treatment-box .group .btn {
        min-width: 300px;
    }
    .treatment-box .link, .next .link {
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
    .btn-treatment {
        margin-left: auto;
        margin-right: auto;
    }
    /* process */
    .process .tx-center p br {
        display: none;
    }
    .process .row {
        flex-direction: column;
    }
    .process .item {
        width: 100%;
        padding: 0;
    }
    .process .item+.item {
        margin-top: 50px;
    }
    .process-img:after {
        display: none;
    }
    /* next */
    .next {
        padding: 90px 0 80px 0;
    }
    .next .inner {
        border: none;
        position: relative;
        padding-bottom: 0;
    }
    .next .head {
        position: relative;
        border: 1px solid #ac8a54;
        padding: 35px 30px 30px 30px;
    }
    .next .head p.tx-center {
        margin-top: 0;
    }
    .next .head p.tx-center br {
        display: none;
    }
    .next .row {
        position: static;
        transform: none;
        margin-top: 30px;
        flex-direction: column;
    }
    .next .item {
        width: 100%;
    }
    .next .item:first-child {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .next .item:last-child {
        margin-left: 0;
    }
    .next .item:before, .next .item:after {
        display: none;
    }
    .next .center>.tx-center {
        margin-top: 50px;
    }
    /* 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;
    }
    /* popup */
    .popup-info, .popup-home {
        max-width: 100%;
    }
    .modal-title {
        font-size: 30px;
        line-height: 35px;
    }
}

@media screen and (max-width: 768px) {
    .show-mobile {
        display: block;
    }
    .hide-mobile {
        display: none;
    }
    h2.title {
        font-size: 35px;
        line-height: 40px;
    }
    /* home */
    .home .bg-product {
        min-width: 375px;
        margin-left: -95px;
    }
    /* preference */
    .preference .center {
        padding: 160px 0 55px 0;
        flex-direction: column;
        align-items: center;
    }
    .preference .warning {
        font-size: 15px;
        margin-top: 120px;
    }
    .preference .item {
        width: 100%;
    }
    .preference .item+.item {
        margin-top: 45px;
    }
    .preference p {
        margin-top: 10px;
    }
    /* discolored */
    .discolored h2.title {
        font-size: 32px;
        line-height: 38px;
    }
    /* treat */
    .treat .content p:last-child {
        font-size: 13px;
        line-height: 23px;
    }
    /* table */
    .section-table {
        padding: 80px 0 30px 0;
    }
    .section-table h2.title {
        font-size: 35px;
        line-height: 40px;
    }
    .table {
        padding-top: 70px;
        margin-right: -10px;
        margin-left: -10px;
    }
    .table .head>div {
        padding-bottom: 10px;
    }
    .table .head>div .image {
        margin-top: -30px;
        max-width: 70px;
        max-height: 70px;
        display: flex;
        margin-bottom: 5px;
    }
    .table .head>div .image img {
        object-fit: contain;
    }
    .table .head>div p {
        font-size: 13px;
        line-height: 15px;
    }
    .table .body>div:first-child {
        font-size: 13px;
        line-height: 18px;
        padding: 15px;
        justify-content: flex-start;
    }
    .table li>div.column-30 {
        text-align: left;
    }
    .table .body>div:first-child img {
        margin-left: 5px;
        max-width: 17px;
    }
    /* discolored */
    .discolored {
        padding: 50px 0 0 0;
    }
    .discolored h2.title br {
        display: none;
    }
    .discolored .accordeon {
        margin-top: 30px;
    }
    .btn-accordeon {
        font-size: 21px;
    }
    /* treat */
    .treat {
        padding: 50px 0;
    }
    /* crown */
    .crown {
        padding-top: 90px;
    }
    .crown h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .crown h2 br {
        display: none;
    }
    .crown p {
        margin: 25px 0;
    }
    .crown p br {
        display: none;
    }
    /* treatment */
    .treatment {
        padding: 60px 0 80px 0;
    }
    .treatment h2.title+p br {
        display: none;
    }
    /* process */
    .process {
        padding: 70px 0 80px 0;
    }
    .process .row {
        margin-top: 40px;
    }
    .process .foot {
        margin-top: 50px;
    }
    .process .foot:before, .process .foot:after {
        display: none;
    }
    /* next */
    .next .item {
        padding: 30px;
    }
    .next .item .ic {
        width: 80px;
        min-width: 80px;
        height: 80px;
        background-size: 80px !important;
    }
    .next .item h3 {
        margin-left: 10px;
        font-size: 23px;
    }
    .next .item .title a {
        margin-left: 13px;
        font-size: 12px;
    }
    /* faq */
    .faq {
        padding-top: 70px;
    }
    .faq h2.title {
        text-align: left;
    }
    .faq .accordeon {
        margin-top: 30px;
    }
    /* popup */
    .popup-home {
        width: 90%;
    }
}

@media screen and (max-width: 765px) {
    .show-700 {
        display: block;
    }
    .hide-700 {
        display: none;
    }
    /* home */
    .home {
        background: url(../img/bg-homemob.jpg) no-repeat center bottom;
        background-size: cover;
    }
    .home .center {
        display: flex;
        flex-direction: column;
    }
    .home-text {
        padding: 20px 0 20px 0;
        max-width: 100%;
    }
    .home-text h1 {
        font-size: 36px;
    }
    .home-text h1 br {
        display: none;
    }
    .home-text h1+p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .home-text p {
        font-size: 18px;
        line-height: 24px;
        margin-top: 0;
    }
    .home-text .group {
        justify-content: space-between;
        margin-top: 30px;
    }
    .btn-home {
        font-size: 18px;
        padding: 20px 30px;
    }
    .home-text p.bottom {
        font-size: 18px;
        line-height: 22px;
        padding-top: 11px;
        margin-top: 10px;
    }
    .home .bg {
        margin-right: -15px;
        margin-left: -15px;
        justify-content: center;
    }
    .home .bg-line {
        display: none;
    }
    .home .bg-product {
        position: static;
        max-width: 375px;
        min-width: inherit;
        margin-left: 0;
        margin-bottom: -70px;
    }
    /* footer */
    .footer-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 650px) {
    .home-text h1 {
        font-size: 27px;
        line-height: 35px;
    }
    .home .bg-product {
        max-width: 350px;
    }
    .home-text p.bottom br {
        display: none;
    }
    /* treat */
    .treat h2.title {
        font-size: 30px;
    }
    .treat .btn-home {
        max-width: 290px;
        padding: 25px 15px;
        justify-content: center;
    }
    /*.treatment */
    .treatment-box h3 {
        font-size: 25px;
        line-height: 30px;
    }
    .treatment-box .group .btn {
        padding: 12px 0;
    }
    .treatment-box .group .btn span:first-child {
        font-size: 17px;
        line-height: 17px;
    }
    .treatment-box .group .btn span:last-child {
        font-size: 11px;
        line-height: 13px;
    }
    .btn-treatment {
        min-height: 50px;
        margin-top: 30px;
        font-size: 13px;
    }
    .btn-treatment:after {
        width: 30px;
        height: 30px;
        min-width: 30px;
        background-size: 9px;
    }
    /* popup */
    .modal-title {
        font-size: 25px;
        line-height: 30px;
    }
}

@media screen and (max-width: 500px) {
    .btn {
        min-width: 290px;
    }
    /* header */
    .btn-head {
        padding: 10px 15px;
        font-size: 12px
    }
    /* home */
    .home-text .group .align-center {
        font-size: 10px;
        padding-left: 0;
    }
    .home-text .group .align-center img {
        max-width: 35px;
    }
    /* discolored */
    .cicloprox-side-effect {
        font-size: 15px;
        line-height: 24px;
    }
    .btn-accordeon {
        font-size: 14px;
    }
    .content-accordeon {
        font-size: 15px;
        line-height: 25px;
    }
    /* table */
    .table .body>div:first-child {
        font-size: 10px;
        line-height: 15px;
        padding: 9px;
    }
    .table .head>div .image {
        margin-top: -20px;
        max-width: 55px;
        max-height: 55px;
    }
    .table .head>div p {
        font-size: 10px;
        line-height: 13px;
    }
    .btn-green {
        max-width: 290px;
    }
    /* treatment */
    .treatment-box .group .btn {
        min-width: 290px;
    }
    .treatment-box .link, .next .link {
        font-size: 13px;
    }
    /* next */
    .next h2.title {
        padding: 0 15px;
    }
}

@media screen and (max-width: 490px) {
    .home {
        background: url(../img/bg-homemob.jpg) no-repeat center top;
        background-size: cover;
    }
}

@media screen and (max-width: 450px) {
    /* home */
    .btn-home {
        font-size: 13px;
        padding: 15px;
    }
    .btn-home:after {
        width: 7px;
        height: 12px;
        background-repeat: no-repeat;
        background-size: 7px;
        top: 2px;
    }
    .home .bg-product {
        max-width: 275px;
    }
    .home-text h1+p {
        font-size: 15px;
        line-height: 20px;
    }
}

@media screen and (max-width: 375px) {
    .home-text h1 {
        font-size: 22px;
        line-height: 30px;
    }
    /* discolored */
    .discolored h2.title {
        font-size: 29px;
        line-height: 36px;
    }
}
