/* variables */
:root {
    --primary: #8D5CF6;
    --secondary: #E74040;
    --third: #26335D;
    --background: #FFFFFF;
    --decoration: #DCDCDC;
    --text: #333333;
    --text2: #FFF2F3;
    --text3: #EBEBEB;
    --text4: #BDBDBD;
    --form1: var(--primary);
    --form2: var(--secondary);
    --form3: #EBF1F8;
    --form4: #DEE1E9;
    --form5: #ABB0BC;
    --footer-1: #EFEFEF;
    --footer-2: #8C8C8C;
    --dashboard: #D9E2EE;
    --valid: #76E5AC;
    --invalid: #630A14;
    --pending: #F2B505;
}

/* typerface */
@font-face {
    font-family: 'Graphik';
    src: local('Graphik Light'),
        local('GraphikLight'),
        local('Graphik-Light'),
        url(../font/GraphikRegular.otf) format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: 'Graphik';
    src: local('Graphik Medium'),
        local('GothamMedium'),
        local('Gotham-Medium'),
        url(../font/GraphikMedium.otf) format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Graphik';
    src: local('Graphik Semibold'),
        local('GraphikSemibold'),
        local('Graphik-Semibold'),
        url(../font/GraphikSemibold.otf) format('opentype');
    font-weight: 700;
}

/* general styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Graphik';
}

body {
    background-color: var(--background);
}

span,
p {
    font-weight: 400;
}

h1.text-title {
    font-size: 2.08vw;
    font-weight: 700;
    color: var(--third);
    margin-bottom: 3vw;
}

h1.text-title::before {
    content: '';
    display: block;
    width: 7%;
    height: 5px;
    background-color: var(--secondary);
    margin-bottom: 1.25vw;
}

h1.text-title.secondary {
    color: var(--background);
}

h1.text-title.secondary::before {
    content: '';
    display: block;
    width: 7%;
    height: 5px;
    background-color: var(--third);
    margin-bottom: 1.25vw;
}

/**** revisar mensajes *****/
#msg {
    color: var(--primary);
    font-size: 0.8vw;
}

/* containers */
section {
    width: 100%;
}

article {
    width: 70%;
    margin: 5vw auto;
}

.container {
    width: 70%;
    margin: auto;
}

.content {
    width: 70%;
    margin: 5vh auto;
    display: flex;
    align-items: center;
}

.content p {
    font-size: 0.85vw;
    line-height: 1.25vw;
    margin-bottom: 2vh;
    text-align: justify;
    color: var(--text);
}

.content div {
    width: 50%;
}

.content .div__out {
    width: 100%;
}

/* nav */
nav {
    width: 100%;
    padding: 0 15%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    background-color: transparent;
    z-index: 2;
}

nav .menu {
    display: flex;
    align-items: center;
}

nav img {
    margin-top: 1vh;
}

nav ul {
    display: flex;
    position: relative;
    list-style: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

nav ul li {
    display: block;
    font-size: 0.85vw;
    /*18px on 1920px screen*/
    margin: 0 1vw;
}

nav ul li a {
    display: block;
    text-decoration: none;
    color: var(--background);
    font-weight: 500;
    width: 100%;
    height: 100%;
    padding: 4vh 0;
}

nav ul #menu__marker {
    position: absolute;
    display: block;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--background);
    transition: 0.5s;
}

nav .menu .btn {
    display: block;
    margin: 0 1vw;
    color: var(--text2);
    padding: 0.5vw 1vw;
    border-radius: 0.25vw;
    text-decoration: none;
    font-size: 0.85vw;
}

nav.nav-mobile {
    display: none;
}

/* hero titles */
.hero-titles {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 15vh 15vw 15vh 15vw;
}

.hero-titles::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness(45%);
    background-image: url(../img/hero-page.webp);
}

.hero-titles.index {
    padding: 30vh 25vw 20vh 25vw;

}

.hero-titles.index::before {
    background-image: url(../img/hero-index.webp);
    background-size: cover;
    background-position: center center;
}

.hero-titles.nhs::before {
    background-image: url(../img/hero-nhs.webp);
    background-size: cover;
    background-position: center center;
}

.hero-titles.facts::before {
    background-image: url(../img/hero-facts.webp);
    background-size: cover;
    background-position: center center;
}

.hero-titles.professionals::before {
    background-image: url(../img/hero-professionals.webp);
    background-size: cover;
    background-position: center center;
}

.hero-titles.assessment::before {
    background-image: url(../img/hero-assessment.webp);
    background-size: cover;
    background-position: center center;
}

.hero-titles.time::before {
    background-image: url(../img/hero-time.webp);
    background-size: cover;
    background-position: center center;
}

.hero-titles i.hero-icon {
    display: block;
    font-size: 2.5vw;
    color: var(--text2);
    margin-bottom: 1vw;
    margin-top: 5vw;
}

.hero-titles h1 {
    font-size: 3.125vw;
    font-weight: 700;
    color: var(--text2);
}

.p-btn-index {
    margin: 2vw 0;
    font-size: 1.5vw;
    color: var(--text2);
    font-weight: 400;
}

/* features */
.index-features {
    width: 70%;
    margin: -5vw auto 10vw auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
}

.index-features .features-card {
    padding: 1.5vw;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.index-features .features-card:nth-child(even) {
    background-color: var(--background);
}

.index-features .features-card:nth-child(odd) {
    background-color: var(--primary);
    color: var(--text2);
}

.index-features .features-card i {
    display: inline-block;
    color: var(--secondary);
    font-size: 1.5vw;
    padding: 0.75vw;
    background-color: var(--text2);
    border-radius: 0.5vw;
}

.index-features .features-card h3 {
    font-size: 1vw;
    width: 100%;
    display: block;
    margin-top: 1.5vw;
}

.index-features .features-card h3::after {
    content: '';
    display: block;
    width: 20%;
    height: 2px;
    margin-top: 1vw;
    background-color: var(--secondary);
}

.index-features .features-card:nth-child(odd) h3::after {
    background-color: var(--text2);
}

.index-features .features-card p {
    width: 90% !important;
    margin: 1vw 0 0 0 !important;
    font-size: 0.8vw;
    opacity: 0.75;
    line-height: 1.5;
    text-align: left !important;
}

/* index pages */
.pages-box {
    width: 100%;
    display: grid;
    gap: 2vw;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 6vw;
}

.pages-box:nth-child(odd) .pages-box-content {
    grid-column: 1/2;
    text-align: left;
}

.pages-box:nth-child(even) .pages-box-content {
    grid-column: 3/4;
    text-align: right;
}

.pages-box .pages-box-content h1 {
    font-size: 2.08vw;
    color: var(--third);
    margin-bottom: 1.25vw;
}

.pages-box .pages-box-content h1::before {
    content: '';
    display: block;
    width: 20%;
    height: 5px;
    margin-bottom: 1.25vw;
    background-color: var(--secondary);
}

.pages-box:nth-child(even) .pages-box-content h1::before {
    margin-left: 80%;
}

.pages-box .pages-box-content p {
    color: var(--text);
    line-height: 1.25;
    font-size: 0.8vw;
    margin-bottom: 1.5vw;
}

.pages-box .pages-box-content a {
    text-decoration: none;
    color: var(--primary);
    border-bottom: 1px solid transparent;
    font-size: 0.9vw;
    padding: 0.5vw 0;
}

.pages-box .pages-box-content a:hover {
    border-bottom: 1px solid var(--primary);
}

.pages-box .pages-box-content.img {
    grid-column: 2/4;
    display: block;
    height: 100%;
    border-radius: 1vw;
}

.pages-box:nth-child(even) .pages-box-content.img {
    grid-column: 1/3;
    display: block;
    height: 100%;
    border-radius: 1vw;
}

.pages-box:nth-child(1) .pages-box-content.img {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, var(--primary) 200%),
        url(../img/page-one.webp);
    background-size: cover;
    background-position: center center;
}

.pages-box:nth-child(2) .pages-box-content.img {
    background-image: linear-gradient(45deg, var(--primary) -100%, rgba(0, 0, 0, 0) 100%),
        url(../img/page-two.webp);
    background-size: cover;
    background-position: center center;
}

.pages-box:nth-child(3) .pages-box-content.img {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, var(--primary) 200%),
        url(../img/page-three.webp);
    background-size: cover;
    background-position: center center;
}

/* newsroom */
#newsroom {
    background-color: var(--footer-2);
    padding: 2vw 15vw;
}

.swiper-slide {
    height: auto;
}

.swiper-slide .card {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--background);
}

.swiper-slide .card img {
    display: block;
    width: 100%;
    height: 10vw;
    object-fit: cover;
}

.swiper-slide .card .title {
    display: block;
    width: 100%;
    padding: 1vw 0.75vw;
    color: var(--primary);
    font-size: 1vw;
    font-weight: 500;
    position: relative;
}

.swiper-slide .card .title::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid var(--primary);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    top: -20px;
    left: 0;
}

.swiper-slide .card .newsroom-content {
    width: 100%;
    padding: 0.75vw;
    color: var(--text);
    line-height: 1.25;
    font-size: 0.8vw;
}

/* testimonials */
.testimonial-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5vw;
}

.box-people {
    display: block;
    justify-content: center;
    text-align: center;
}

.box-people img {
    width: auto;
}

.box-people .comment {
    font-size: 1vw;
    padding: 0 0.25vw;
    color: var(--text);
    text-align: center;
}

.box-people .star {
    color: var(--pending);
}

.box-people .name {
    text-align: center;
    font-weight: 500;
}

.box-people .city {
    text-align: center;
    margin-top: -1vw;
}

/* steps and scheadule videocall */
.btn-cta {
    display: block;
    text-decoration: none;
    width: 40%;
    border-radius: 0.5vw;
    padding: 1vw 1.5vw;
    display: flex;
    margin: auto;
    margin: 5vw auto;
    align-items: center;
    background: var(--secondary);
}

.btn-cta img {
    width: 10%;
}

.btn-cta span {
    color: var(--text2);
    font-size: 1.25vw;
    width: 90%;
    padding: 0 1vw;
    font-weight: 500;
}

.tabs-steps {
    width: 70%;
    margin: auto;
    border-radius: 1vw;
    background: var(--primary);
    color: var(--text2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1vw;
    padding: 3vh 1.25vw;
}

.tabs-steps .tabs-steps-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs-steps .tabs-steps-box div {
    width: 30%;
    margin-right: 0vw;
    text-align: center;
}

.tabs-steps .tabs-steps-box span {
    font-size: 0.7vw;
    display: block;
    width: 70%;
}

.tabs-steps .tabs-steps-box div .tabs-steps-box-title {
    font-size: 1vw;
    text-align: center;
    width: 100%;
    font-weight: 500;
}

.tabs-steps .tabs-steps-box div i {
    display: block;
    width: 80%;
    margin: auto;
    border-radius: 0.75vw;
    margin-top: 1vh;
    font-size: 2.75vw;
    padding: 0.5vw 0;
    color: var(--secondary);
    background-color: var(--text2);
}

/*pages contents */
article h2 {
    font-size: 2.3vw;
    letter-spacing: -0.05vw;
    font-weight: 700;
    margin: 0 0 3vh 0;
    color: var(--primary);
}

article p {
    font-size: 0.85vw;
    line-height: 1.1vw;
    text-align: justify;
    margin: 2vh 0;
}

.tab-panel-img {
    width: 60%;
    height: 40vh;
    background-size: cover;
    float: right;
    margin-left: 2vw;
    border-radius: 1vw;
}

.tab-ol,
.tab-ul {
    margin-left: 3vw;
}

.tab-ol>li,
.tab-ul>li {
    font-size: 0.85vw !important;
}

.tab-ol li::marker {
    font-size: 2vw;
    color: var(--secondary);
}

.tab-ul li::marker {
    font-size: 1.25vw;
    color: var(--secondary);
}

/* NHS view */
.tab-panel-img#panel_one {
    height: 40vh;
    background-image: url(../img/nhs-a.webp);
}

.tab-panel-img#panel_two {
    height: 40vh;
    background-image: url(../img/nhs-b.webp);
}

.tab-panel-progress {
    display: flex;
    justify-content: center;
    text-align: center;
}

.progress-bar {
    flex: 0 1 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.progress-bar .progress-bar-graph {
    position: relative;
    width: 10vw;
    height: 10vw;
    display: block;
}

.progress-bar .progress-bar-graph svg {
    position: relative;
    width: 10vw;
    height: 10vw;
    transform: rotate(-90deg);
}

.progress-bar .progress-bar-graph svg circle {
    width: 10vw;
    height: 10vw;
    fill: none;
    stroke-width: 10;
    stroke: var(--text);
    transform: translate(6%, 6%);
    stroke-dasharray: 28vw 28vw;
    stroke-dashoffset: 28vw;
    stroke-linecap: round;
}

.progress-bar .progress-bar-graph svg circle:nth-child(1) {
    stroke-dashoffset: 0;
    stroke: var(--secondary);
    opacity: 0.3;
}

.progress-bar .progress-bar-graph#graph__one svg circle:nth-child(2) {
    stroke-dashoffset: calc(28vw - (28vw * 25) /100);
    stroke: var(--primary);
}

.progress-bar .progress-bar-graph#graph__two svg circle:nth-child(2) {
    stroke-dashoffset: calc(28vw - (28vw * 30) /100);
    stroke: var(--primary);
}

.progress-bar .progress-bar-graph#graph__three svg circle:nth-child(2) {
    stroke-dashoffset: calc(28vw - (28vw * 90) /100);
    stroke: var(--primary);
}

.progress-bar .progress-bar-graph#graph__four svg circle:nth-child(2) {
    stroke-dashoffset: calc(28vw - (28vw * 70) /100);
    stroke: var(--primary);
}

.progress-bar .progress-bar-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
}

.progress-bar .progress-bar-number h3 {
    font-size: 1.5vw;
    font-weight: 400;
}

.progress-bar .progress-bar-number span {
    font-size: 0.85vw;
    font-weight: 700;
}

.progress-bar .progress-bar-text {
    color: var(--primary);
    font-size: 1vw;
}

/* facts view */
.facts__slide {
    width: 100%;
    height: 15vw;
    padding: 1.5vw 0 0 2vw;
    border-radius: 1vw;
    background-size: cover;
    background-position: center center;
    margin-bottom: 5vh;
    animation: bannerFacts 15s infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

.facts__slide h2 {
    color: var(--text2);
    opacity: 0.5;
    font-size: 1.75vw;
    font-weight: 500;
    text-shadow: 0 0 10px var(--text);
}

@keyframes bannerFacts {

    0%,
    33% {
        background-image: url(../img/slide_facts_a.webp);
    }

    34%,
    66% {
        background-image: url(../img/slide_facts_b.webp);
    }

    67%,
    100% {
        background-image: url(../img/slide_facts_c.webp);
    }
}

#facts img {
    width: 100%;
    margin-bottom: 2vw;
}

#facts .fact-mobile {
    display: none;
}

/* professionals view */
.tab-panel-img#panel_three {
    height: 40vh;
    background-image: url(../img/professionals.webp);
}

/* faq view */
.description__box {
    display: flex;
    width: 100%;
    padding: 5vh 15vw;
}

.description__box div:first-child {
    width: 50%;
    border: 1px solid var(--decoration);
    border-top: none;
}

.description__box div:first-child h2 {
    font-size: 1.7vw;
    font-weight: 700;
    color: var(--primary);
    padding: 5vh 2vw 2vh 2vw;
    border-top: 2px solid var(--primary);
}

.description__box div:first-child p {
    padding: 0 2vw 2vh 2vw;
    font-size: 0.8vw;
    line-height: 1vw;
}

.description__box div:last-child {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 9.5vw;
}

.acordion {
    width: 100%;
    padding: 0 15vw;
}

.acordion details div {
    border: 1px solid var(--decoration);
    border-top: none;
    padding: 2.5vw 5vw;
    background-color: var(--text2);
}

.acordion details+details {
    margin-top: 2vh;
}

.acordion summary {
    list-style: none;
    background-color: var(--text2);
}

.acordion summary::-webkit-details-marker {
    display: none;
}

.acordion summary {
    border: 1px solid var(--decoration);
    padding: 1vw 1.5vw;
    cursor: pointer;
    position: relative;
    padding-left: 6%;
    font-size: 0.85vw;
}

.acordion summary:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1%;
    font-family: 'icomoon' !important;
    content: "\e908";
    width: 1.5vw;
    height: 1.5vw;
    background-color: var(--decoration);
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 1vw;
}

.acordion details[open] summary {
    background-color: var(--text2);
}

.acordion details[open] summary:before {
    content: "\e909";
}

.acordion summary:hover {
    background-color: var(--background);
}

.acordion details div p {
    font-size: 0.85vw;
    line-height: 1.25vw;
    text-align: justify;
    margin-bottom: 2vh;
}

.acordion details div .faq__title {
    color: var(--secondary);
    font-size: 1.25vw;
    font-weight: 500;
    margin-bottom: 1.5vh;
}

.ul__faq,
.ol__faq {
    margin-left: 3vw;
}

.ul__faq li,
.ol__faq li {
    font-size: 0.85vw;
}

.ul__faq li::marker,
.ol__faq li::marker {
    color: var(--secondary);
    font-size: 1.25vw;
}

/* about us view */
.chcf__quote {
    position: relative;
    width: 80%;
    float: right;
    padding: 2vw 0;
    font-size: 1.5vw;
    border-top: 1px solid var(--secondary);
    font-weight: 500;
    color: var(--primary);
}

.chcf__quote:after {
    position: absolute;
    content: "”";
    color: var(--secondary);
    font-size: 15vw;
    line-height: 0;
    bottom: -1vw;
    right: 30px;
}

.chcf__quote cite {
    display: block;
    text-transform: uppercase;
    font-size: 0.8vw;
    color: var(--text);
    font-style: normal;
    margin-top: 2vh;
    letter-spacing: 0.2vw;
    font-weight: 700;
}

.founder-box {
    width: 40%;
    margin-left: 15%;
    display: flex;
    align-items: center;
}

.founder-box img {
    width: 35%;
}

.founder-box .founder-data {
    width: 65%;
    padding-left: 1vw;
}

.founder-data h3 {
    font-size: 1.25vw;
    font-weight: 400;
    color: var(--text);
}

.founder-data h4 {
    font-weight: 700;
    font-size: 1vw;
    color: var(--primary);
    margin-bottom: 1.5vw;
}

.founder-data p {
    font-size: 0.85vw;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1vw;
}

.founder-data a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--text);
}

.founder-data a i {
    color: var(--text2);
    font-size: 1.25vw;
    padding: 0.4vw;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 0.5vw;
}

/* pricing view */
body[pricing] {
    background-image: url(../img/pricing.webp);
    background-size: cover;
    backdrop-filter: brightness(60%);
}

body[pricing] nav {
    position: relative;
}

body[pricing] section {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 7vh 0;
    color: var(--text2);
}

body[pricing] h1 {
    font-size: 2.5vw;
}

body[pricing] h3 {
    font-size: 1.25vw;
    margin: 5vh 0;
}

body[pricing] .pricing__msg {
    color: var(--background);
    text-align: left;
    margin-top: 10vh;
    font-size: 0.85vw;
    font-weight: 700;
}

body[pricing] .price__title__grid {
    width: 100%;
    margin-bottom: 1vw;
    display: grid;
    grid-gap: 1vw;
    grid-template-columns: repeat(5, 1fr);
}

body[pricing] .price__title__grid div {
    padding: 1vw 0;
    background-color: #FFFFFF30;
    border-left: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
    font-weight: 500;
    font-size: 1vw;
    border-radius: 0.5vw;
}

body[pricing] .price__title__grid div:first-of-type {
    grid-column: 1/5;
}

body[pricing] .price__title__grid div:last-of-type {
    grid-column: 5/6;
}

body[pricing] .price__grid,
body[dashboard] .price__grid {
    text-align: center;
    display: grid;
    grid-gap: 1vw;
    grid-template-columns: repeat(5, 1fr);
}

body[pricing] .price__box,
body[dashboard] .price__box {
    position: relative;
    padding: 3vh 1vw 15vh 1vw;
}

body[dashboard] .price__box.active {
    border: 3px solid var(--valid);
}

body[pricing] .price__box:nth-child(even),
body[dashboard] .price__box:nth-child(even) {
    background-color: var(--primary);
    color: var(--text2);
}

body[pricing] .price__box:nth-child(odd),
body[dashboard] .price__box:nth-child(odd) {
    background-color: var(--text2);
    color: var(--text);
}

body[pricing] .price__box .price__title,
body[dashboard] .price__box .price__title {
    font-size: 1.2vw;
    line-height: 1.25vw;
    font-weight: 500;
    margin-bottom: 2vh;
}

body[pricing] .price__box .price__content,
body[dashboard] .price__box .price__content {
    font-size: 0.80vw;
    font-weight: 400;
    padding: 0.5vw;
}

body[pricing] .price__box .price__pounds,
body[dashboard] .price__box .price__pounds {
    position: absolute;
    bottom: 8vh;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 1.5vw;
    margin-top: 3vh;
}

body[pricing] .price__box .price__pounds__flash,
body[dashboard] .price__box .price__pounds__flash {
    position: absolute;
    bottom: 12vh;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 1vw;
    margin-top: 3vh;
}

body[pricing] .price__box .price__pounds__flash::before,
body[dashboard] .price__box .price__pounds__flash::before {
    content: "";
    position: absolute;
    width: 0.1vw;
    height: 200%;
    background-color: var(--invalid);
    top: -50%;
    left: 50%;
    transform: rotateZ(-60deg);
}

body[pricing] .price__box .price__pounds__flash span,
body[dashboard] .price__box .price__pounds__flash span {
    position: absolute;
    top: -2vw;
    display: inline-block;
    width: max-content;
    height: 2vw;
    font-weight: 700;
    background-color: var(--background);
    margin-left: 1vw;
    color: var(--invalid);
    font-size: 0.8vw;
    padding: 0.5vw;
    text-transform: uppercase;
    transform: rotateZ(-30deg);
}

body[pricing] .price__box .price__pounds__flash span::before,
body[dashboard] .price__box .price__pounds__flash span::before {
    content: "";
    position: absolute;
    display: block;
    left: -1vw;
    top: 0vw;
    width: 0;
    height: 0;
    border-top: 1vw solid transparent;
    border-bottom: 1vw solid transparent;
    border-right: 1vw solid var(--background);
}

body[pricing] .price__box .price__pounds__flash span::after,
body[dashboard] .price__box .price__pounds__flash span::after {
    content: "";
    position: absolute;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
    background-color: var(--primary);
    top: 40%;
    left: -3%;
    transform: translate(-40%, -6%);
}

body[pricing] .price__box .price__list,
body[dashboard] .price__box .price__list {
    width: 80%;
    margin: auto;
    text-align: left;
    margin-top: 2vw;
    margin-bottom: 0vw;
}

body[pricing] .price__box .price__list li,
body[dashboard] .price__box .price__list li {
    padding: 0.25vw 0.5vw;
}

body[pricing] .price__box .price__list li::marker,
body[dashboard] .price__box .price__list li::marker {
    font-family: 'icomoon';
    content: "\e912";
    font-size: 1vw;
}

body[pricing] .price__box:nth-child(odd) .price__list li::marker,
body[dashboard] .price__box:nth-child(odd) .price__list li::marker {
    color: var(--secondary);
}

body[pricing] .price__box .price__btn,
body[dashboard] .price__box .price__btn {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background-color: var(--text2);

}

body[pricing] .price__box:nth-child(odd) .price__btn,
body[dashboard] .price__box:nth-child(odd) .price__btn {
    background-color: var(--primary);
    color: var(--text2);
}

/* login view */
body[login] {
    background-image: url(../img/login.webp);
    background-size: cover;
}

body[login] form {
    background-color: var(--background);
    width: 25%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3vw 2vw;
    border-radius: 0.5vw;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

body[login] form h3 {
    font-size: 1.5vw;
}

body[login] form p {
    font-size: 0.85vw;
    color: var(--text4);
    margin: 0.5vw 0 2.5vw 0;
}

body[login] form .form__box {
    display: flex;
    align-items: center;
    background: var(--text3);
    border-radius: 0.25vw;
    margin: 0.75vw 0;
    padding: 0.75vw;
}

body[login] form .form__box input {
    color: var(--primary);
    display: inline-block;
    height: 100%;
    width: 90%;
    border: 1px solid transparent;
    padding: 0.25vw 0.5vw;
    background-color: transparent;
    outline: none;
    font-size: 0.8vw;
}

body[login] form .form__box input::placeholder {
    color: var(--text4);
}

body[login] form .form__box i {
    font-size: 1vw;
    width: 10%;
    color: var(--text4);
    text-align: center;
}

body[login] form .form__remember {
    display: block;
    width: 100%;
    padding: 0.5vw 0;
}


body[login] form .form__remember label {
    font-size: 0.75vw;
    color: var(--text);
    margin-left: 0.5vw;
    font-weight: 400;
}

body[login] form .button {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: var(--text2);
    text-align: center;
    margin: 2vh 0 0 0;
    border: none;
    padding: 0.75vw 0;
    border-radius: 0.25vw;
    cursor: pointer;
    font-size: 0.85vw;
}

body[login] form .button:hover {
    opacity: 0.9;
}

/********************************
*********************************
**********************************
*********************************
/* paypal buttons */
body[dashboard] .price__box form {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

body[dashboard] #form__paypal__infopack input[type=image],
body[dashboard] #form__paypal__meeting input[type=image],
body[dashboard] #form__paypal__appeal input[type=image] {
    width: 10vw;
}

/*************************************
************************************
***********************************
*********************************
***********************************/

/* forms styles */
.form__box {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 0.5vw 1vw;
    font-size: 0.85vw;
    outline: none;
    text-decoration: none;
}

.btn.btn-primary {
    background-color: var(--primary);
    color: var(--text2);
    cursor: pointer;
    border: 1px solid var(--primary);
}

.btn.btn-secondary {
    background-color: var(--secondary);
    color: var(--text2);
    cursor: pointer;
    border: 1px solid var(--secondary);
}

.btn.btn-thrid {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--background);
    cursor: pointer;
    border: 1px solid var(--background);
    backdrop-filter: blur(5px);
}

.btn.btn-index {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    padding: 0.5vw 1vw;
    font-size: 0.85vw;
    transition: all 0.3s ease;
    outline: none;
    width: 35%;
}

.btn.btn-index i {
    font-size: 1.25vw;
    margin-left: 0.5vw;
    color: var(--background);
}

.btn.btn-index:hover {
    border: 1px solid var(--background);
    background-color: transparent;
    color: var(--background);
}

.btn.btn-index:hover i {
    color: var(--background);
}

.btn.block {
    width: 100%;
}

.btn.block-50 {
    width: 50%;
}

.form__input__box {
    display: block;
    width: 100% !important;
    position: relative;
    margin-bottom: 1.7vw;
}

.btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1vw;
}

.btn-cell {
    display: flex;
}

.form__input__group__label {
    font-size: 0.75vw !important;
    top: -0.85vw !important;
    left: 0.1vw !important;
}

.form__input__box label {
    position: absolute;
    top: 0.85vw;
    left: 0.75vw;
    font-size: 0.85vw;
    color: var(--form5);
    transition: all 0.3s;
}

.form__input__box input,
.form__input__box textarea,
.form__input__box select {
    display: block;
    width: 100%;
    padding: 0.8vw;
    font-size: 0.85vw;
    border: none;
    border-bottom: 1px solid var(--form5);
    background-color: transparent;
    outline: none;
    transition: all 0.3s;
    color: var(--text);
    resize: none;
}

.form__input__box input:focus,
.form__input__box textarea:focus,
.form__input__box select:focus {
    border-bottom: 1px solid var(--primary);
    color: var(--form1);
}

.form__input__box input:focus:valid,
.form__input__box textarea:focus:valid,
.form__input__box select:focus:valid {
    border: 1px solid var(--form1);
}

.form__input__box input:valid,
.form__input__box textarea:valid,
.form__input__box select:valid {
    background-color: var(--form3);
    border: 1px solid var(--form4);
    border-radius: 0.5vw;
}

.form__input__box input:valid+label,
.form__input__box textarea:valid+label,
.form__input__box select:valid+label {
    color: var(--text4);
    top: -0.85vw;
}

.form__input__box input:focus+label,
.form__input__box textarea:focus+label,
.form__input__box select:focus+label {
    color: var(--primary);
    top: -0.5vw;
}

.form__input__box input:focus+label,
.form__input__box input:valid+label,
.form__input__box textarea:focus+label,
.form__input__box textarea:valid+label,
.form__input__box select:focus+label,
.form__input__box select:valid+label {
    left: 0.1vw;
    font-size: 0.75vw;
}

.form__input__box input:valid:focus+label,
.form__input__box textarea:valid:focus+label,
.form__input__box select:valid:focus+label {
    top: -0.8vw;
}

/* assesment view */
.p__content {
    color: var(--text);
    font-size: 0.85vw;
    margin: 0;
}

.form__assessment {
    width: 100%;
    margin-top: 5vh;
    overflow-x: hidden;
}

.form__assessment__tab {
    width: 500%;
    display: flex;
    transition: all 0.3s;
}

.form__assessment .form__tab {
    display: block;
}

.form__tab__title {
    color: var(--secondary);
    font-size: 1.25vw;
    margin-bottom: 4vh;
}

.form__assessment__box {
    display: flex;
}

.form__assessment__box form {
    width: 60%;
    padding-right: 5vw;
}

.form__assessment__slide {
    width: 40%;
    border-radius: 1vw;
}

#assessment__slide__1 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 61, 143, 0.4) 100%),
        url(../img/assessment_1.webp);
    background-position: center center;
    background-size: cover;
}

#assessment__slide__2 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 61, 143, 0.4) 100%),
        url(../img/assessment_2.webp);
    background-position: center center;
    background-size: cover;
}

#assessment__slide__3 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 61, 143, 0.4) 100%),
        url(../img/assessment_3.webp);
    background-position: center center;
    background-size: cover;
}

#assessment__slide__4 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 61, 143, 0.4) 100%),
        url(../img/assessment_4.webp);
    background-position: center center;
    background-size: cover;
}

.form__tab {
    width: 100%;
    padding: 0 0.1vw;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
}

.form__assessment__acordion {
    display: block;
    border: 1px solid var(--form4);
    margin-bottom: 1vh;
    transition: all 0.3s;
}

.form__assessment__acordion__content {
    padding: 0.5vw;
    background-color: var(--text2);
}

.assessment__form__radio {
    display: block;
    background-color: var(--text2);
}

.assessment__form__radio:not(:last-child) {
    border-bottom: 1px solid var(--decoration);
}

.form__assessment__acordion summary {
    list-style: none;
    background-color: var(--text2);
}

.form__assessment__acordion summary::-webkit-details-marker {
    display: none;
}

.form__assessment__acordion summary {
    padding: 1vw 1.5vw;
    cursor: pointer;
    position: relative;
    padding-left: 6%;
    font-size: 0.85vw;
}

.form__assessment__acordion summary:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1%;
    font-family: 'icomoon' !important;
    content: "\e904";
    width: 1.5vw;
    height: 1.5vw;
    color: var(--form5);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 1vw;
}

.form__assessment__acordion[open] summary {
    color: var(--form1);
    font-weight: 500;
}

.form__assessment__acordion[open] summary:before {
    content: "\e900";
    color: var(--form1);
}

.form__assessment__acordion summary:hover {
    background-color: var(--form4);
}

.assessment__form__radio input[type=radio] {
    display: none;
}

.assessment__form__radio label {
    display: block;
    color: var(--text);
    padding: 0.5vw;
    padding-left: 2vw;
    font-size: 0.85vw;
    cursor: pointer;
    position: relative;
    text-align: justify;
    transition: all 0.3s ease-in-out;

}

.assessment__form__radio label:hover {
    background-color: var(--form4);
}

.assessment__form__radio label::before {
    content: '';
    position: absolute;
    width: 0.75vw;
    height: 0.75vw;
    display: inline-block;
    background: none;
    border: 1px solid var(--form5);
    border-radius: 50%;
    left: 0.5vw;
    top: 50%;
    transform: translateY(-50%);
}

.assessment__form__radio label:hover::before {
    border: 2px solid var(--form1);
}

.assessment__form__radio input:checked+label {
    padding-left: 0.5vw;
    color: var(--text2);
    background-color: var(--form1);
}

.assessment__form__radio input:checked+label::before {
    opacity: 0;
}

.assessment__finish {
    display: flex;
    width: 80%;
    margin: auto;
    background: rgb(0, 61, 143);
    background: linear-gradient(45deg, rgba(0, 61, 143, 1) 0%, rgba(11, 157, 204, 1) 100%);
    color: var(--text2);
    overflow: hidden;
    border-radius: 1vw;
    align-items: center;
}

.assessment__finish .assessment__finish__text {
    display: block;
    width: 60%;
    padding: 4vw;
    font-size: 1.25vw;
    text-align: center;
    line-height: 1.5vw;
}

.assessment__finish .assessment__finish__text img {
    width: 30%;
    margin-bottom: 3vh;
}

.assessment__finish .assessment__finish__text span {
    font-weight: 700;
}

.assessment__finish .assessment__finish__img {
    width: 40%;
}

/* footer */
.footer__logo {
    width: 100%;
    justify-content: center;
    padding: 10vh 15vw;
    text-align: center;
}

footer {
    width: 100%;
    display: block;
    background-position: 100% 100%;
    background-color: var(--footer-1);
    color: var(--text1);
    align-items: flex-end;
}

footer .footer__box {
    width: 100%;
    display: flex;
    margin: 4vh 0 0 0;
    padding: 4vh 15vw;
    justify-content: space-between;
}

footer .footer__box:last-of-type {
    background-color: var(--footer-2);
    padding: 2vh 15vw;
}

footer .footer__box .footer__box__content {
    width: 50%;
    display: flex;
}

footer .footer__box .footer__box__content div {
    width: 50%;
}

footer .footer__box .footer__box__content h4 {
    font-size: 1.25vw;
    margin-bottom: 1.5vh;
    font-weight: 700;
    color: var(--primary);
}

footer .footer__box .footer__box__content p {
    font-weight: 400;
    margin-bottom: 1vh;
    font-size: 0.85vw;
}

footer .footer__box .footer__box__content p i {
    color: var(--primary);
}

footer .footer__box .footer__box__content a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.85vw;
}

footer .footer__box .footer__box__content a i {
    color: var(--primary);
}

footer .footer__box .footer__box__content .footer__box__span p {
    font-weight: 500;
    opacity: 0.5;
}

footer .footer__box .footer__box__content .footer__box__span p:hover {
    opacity: 1;
}

footer .footer__box .footer__box__content:last-of-type {
    display: block;
}

footer .footer__box .footer__box__input {
    width: 100% !important;
}

footer .footer__box__input form {
    display: block;
    width: 100%;
    margin-bottom: 1vh;
}

footer .footer__box__input form input {
    border: none;
    padding: 0.5vw;
    background-color: var(--background);
    outline: none;
    font-size: 0.85vw;
    width: 80%;
    color: var(--text);
}

footer .footer__box__input form button {
    border: none;
    outline: none;
    width: 19%;
    padding: 0.5vw;
    font-size: 0.85vw;
    cursor: pointer;
    color: var(--text2);
    background-color: var(--primary);
}

.text__coppy {
    font-size: 0.75vw;
    color: var(--text2);
}

footer .footer__box .footer__box__icons {
    display: flex;
    align-items: start;
    margin: 0vh 0;
}

footer .footer__box .footer__box__icons a {
    text-decoration: none;
    color: var(--background) !important;
    display: inline-block;
}

footer .footer__box .footer__box__icons i {
    margin-right: 1vw;
}

/* schedule view */
.calendy {
    display: block;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    text-align: center;
}

.calendy img {
    width: 3.5vw;
    margin-bottom: 1vw;
}

.calendy h2 {
    color: var(--primary);
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 3vw;
}

.calendy p {
    font-size: 1.25vw;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1vw;
}

.calendy a {
    display: block;
    width: 50%;
    margin: auto;
    padding: 0.5vw;
    text-decoration: none;
    font-size: 1.25vw;
    margin-top: 3vw;
    color: var(--text2);
    background-color: var(--primary);

}

/* dashboard */
body[dashboard] {
    background-color: var(--text2);
}

body[dashboard] nav {
    position: relative;
    width: 100%;
    padding: 0 8.5%;
    z-index: 5;
    background-color: var(--background);
}

body[dashboard] nav li a {
    color: var(--text);
}

body[dashboard] article {
    margin: auto;

}

.dashboard__container {
    display: flex;
    margin-top: -0.25vh;
    z-index: 4;
}

.dashboard__grid {
    width: 50%;
}

.dashboard__menu {
    display: block;
    width: 20%;
    height: 90vh;
    background-color: var(--dashboard);
    position: relative;
}

.dashboard__menu__user {
    display: block;
    width: 100%;
    padding: 2vw;
    text-align: center;
}

.dashboard__menu__user i {
    font-size: 5vw;
    color: var(--primary);
}

.dashboard__menu__user .dashboard__menu__user__data1 {
    font-size: 1vw;
    font-weight: 500;
    margin-top: 1vh;
    color: var(--text);
}

.dashboard__menu__user .dashboard__menu__user__data2 {
    font-size: 0.8vw;
    font-weight: 400;
    color: var(--form5);
}

.dashboard__nav {
    display: block;
    padding: 2vw;
    list-style: none;
}

.dashboard__nav li {
    display: block;
    width: 100%;
    margin-bottom: 3vh;
}

.dashboard__nav li a {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1vw;
    padding: 1.5vh 0.5vw;
    border-radius: 0.5vw;
    transition: all 0.3s;
}

.dashboard__nav li a:hover {
    background-color: var(--primary);
    color: var(--text2);
}

.dashboard__nav li a:hover i {
    color: var(--text2);
}

.dashboard__nav li a i {
    margin-right: 0.75vw;
    color: var(--primary);
    transition: all 0.3s;
}

.divider {
    display: block;
    height: 1px;
    background-color: var(--form5);
    width: 100%;
    margin-bottom: 3vh;
}

li.disable {
    cursor: no-drop;
    color: var(--form5);
    font-weight: 500;
    font-size: 1vw;
    padding: 1.5vh 0.5vw;
    border-radius: 0.5vw;
}

li.disable i {
    margin-right: 0.75vw;
}

a.disable:hover {
    background-color: transparent !important;
    color: var(--form5) !important;
}

.data__version {
    position: absolute;
    bottom: 2vh;
    left: 2vw;
    color: var(--form5);
}

.dashboard__tab__container {
    width: 80%;
    height: 90vh;
    overflow-y: auto;
}

.dashboard__tab {
    display: block;
    width: 100%;
    overflow-y: auto;
}

.dashboard__tab .dashboard__data {
    padding: 5vh 3vw;
}

.dashboard__tab h2 {
    padding: 10vh 3vw 3vh 3vw;
    border-bottom: 1px solid var(--decoration);
    color: var(--primary);
    font-weight: 700;
    font-size: 2vw;
}

.dashboard__tab .dashboard__subtitle {
    margin-bottom: 3vh;
    font-weight: 500;
}

.dashboard__tab .dashboard__p {
    font-weight: 400;
    color: var(--text);
    text-align: justify;
}

.btn-dashboard {
    display: inline-block;
    padding: 1vh 1vw;
    border-radius: 0.5vw;
    background-color: var(--dashboard);
    color: var(--text);
    cursor: pointer;
    margin: 0.5vw 0;
    font-size: 0.85vw;
    border: none;
}

#user__type__account {
    margin-bottom: 3vh;
    color: var(--text);
    font-size: 0.85vw;
}

#user__type__account span {
    color: var(--secondary);
    font-weight: 700;
}

.dashboard__table {
    display: block;
    width: 100%;
}

.dashboard__table__head {
    display: flex;
    padding: 2vh 0;
    border-top: 1px solid var(--decoration);
    border-bottom: 1px solid var(--decoration);
}

.dashboard__table__head__field {
    font-weight: 700;
    font-size: 1vw;
    flex: 0 1 100%;
}

.dashboard__table__row {
    display: flex;
    padding: 2vh 0;
    border-bottom: 1px solid var(--decoration);
}

.dashboard__table__row__field {
    flex: 0 1 100%;
    font-weight: 400;
    color: var(--text);
    font-size: 0.8vw;
}

.dashboard__table__row__field__status {
    font-weight: 500;
}

.dashboard__table__row__field__status.error {
    color: var(--invalid);
}

.dashboard__table__row__field__status.finish {
    color: var(--valid);
}

.dashboard__table__row__field__status.pending {
    color: var(--pending);
}

.dashboard__table__row__field a {
    text-decoration: none;
    padding: 1vh 1vw;
    background-color: var(--form5);
    color: var(--text);
    border-radius: 0.5vw;
    margin-right: 0.5vw;
}

/* time for care */
article h3 {
    color: var(--primary);
    font-size: 1.25vw;
    margin: 1vw 0;
}

.time__title {
    color: var(--primary);
    text-align: center;
    display: block;
    font-size: 1.5vw;
    padding: 0.25vw 0;
    background-color: var(--footer-1);
    font-weight: 500;
}
.time__note {
    font-size: 0.85vw;
    color: var(--primary);
}
.time__form {
    margin-top: 2vw;
    color: var(--primary);
    font-size: 1.5vw;
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (max-width: 480px) {
    h1.text-title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    h1.text-title::before {
        width: 15%;
        margin-bottom: 16px;
    }

    h1.text-title.secondary::before {
        width: 15%;
        height: 5px;
        margin-bottom: 10px;
    }

    /**** revisar mensajes *****/
    #msg {
        color: var(--primary);
        font-size: 0.8vw;
    }

    /* containers */
    section {
        width: 100%;
    }

    article {
        width: 90%;
        margin: 22px auto;
    }

    .container {
        width: 90%;
        margin: auto;
    }

    .content {
        width: 90%;
        margin: 20px auto;
        display: block;
    }

    .content p {
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .content div {
        width: 100%;
    }

    .content .div__out {
        width: 100%;
    }

    /* nav */
    nav {
        width: 100%;
        padding: 0 15%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 0;
        background-color: transparent;
        z-index: 2;
    }

    nav .menu {
        display: none;
    }

    nav img {
        display: none;
    }

    nav.nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        left: 5%;
        padding: 12px 0;
    }

    nav.nav-mobile img {
        display: block;
        width: 40px;
    }

    .nav-mobile i {
        color: var(--background);
        font-size: 30px;
        cursor: pointer;
    }

    nav.nav-mobile ul {
        position: absolute;
        top: -550%;
        right: 0;
        display: block;
        z-index: 5;
        background-color: var(--footer-2);
        width: 60%;
        transition: all 0.3s ease;
    }

    nav.nav-mobile ul.active {
        top: 0%;
    }

    nav.nav-mobile ul li a {
        display: block;
        padding: 12px;
        font-size: 16px;
        color: var(--background);
        text-align: right;
    }

    nav.nav-mobile ul li i {
        display: block;
        padding: 12px;
        font-size: 20px;
        color: var(--background);
        text-align: right;
    }

    /* hero titles */
    .hero-titles {
        padding: 125px 2.5vw 50px 2.5vw;
    }

    .hero-titles.index {
        padding: 150px 2.5vw 75px 2.5vw;

    }

    .hero-titles i.hero-icon {
        font-size: 30px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .hero-titles h1 {
        font-size: 30px;
    }

    .p-btn-index {
        margin: 16px 0;
        font-size: 16px;
    }

    /* features */
    .index-features {
        width: 90%;
        margin: -40px auto 60px auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .index-features .features-card {
        padding: 10px;
    }

    .index-features .features-card i {
        font-size: 30px;
        padding: 8px;
    }

    .index-features .features-card h3 {
        font-size: 18px;
        margin-top: 10px;
    }

    .index-features .features-card h3::after {
        width: 25%;
        height: 4px;
        margin-top: 10px;
    }

    .index-features .features-card p {
        margin: 10px 0 0 0 !important;
        font-size: 14px;
        opacity: 0.75;
        line-height: 1.5;
    }

    /* index pages */
    .pages-box {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .pages-box:nth-child(odd) .pages-box-content {
        grid-row: 1/2;
        text-align: left;
    }

    .pages-box:nth-child(even) .pages-box-content {
        grid-row: 1/2;
        grid-column: 1/4;
        text-align: left;
    }

    .pages-box .pages-box-content h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .pages-box .pages-box-content h1::before {
        height: 5px;
        margin-bottom: 12px;
    }

    .pages-box:nth-child(even) .pages-box-content h1::before {
        margin-left: 0%;
    }

    .pages-box .pages-box-content p {
        font-size: 16px;
    }

    .pages-box .pages-box-content a {
        font-size: 16px;
        padding: 10px 0;
    }

    .pages-box .pages-box-content.img {
        grid-row: 2/3;
        grid-column: 1/2;
    }

    .pages-box:nth-child(even) .pages-box-content.img {
        grid-row: 2/3;
        grid-column: 1/4;
    }

    /* newsroom */
    #newsroom {
        padding: 16px 5vw;
    }

    .swiper-slide .card img {
        height: 150px;
    }

    .swiper-slide .card .title {
        padding: 10px 16px;
        font-size: 16px;
    }

    .swiper-slide .card .newsroom-content {
        padding: 16px;
        font-size: 16px;
    }

    /* testimonials */
    .testimonial-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .box-people .comment {
        font-size: 16px;
        padding: 0 8px;
        line-height: 1.2;
    }

    .box-people .name {
        font-size: 16px;
    }

    .box-people .city {
        font-size: 16px;
        margin-top: 0px;
    }

    /* steps and scheadule videocall */
    .btn-cta {
        width: 90%;
        border-radius: 10px;
        padding: 16px;
        margin: 20px auto;
    }

    .btn-cta img {
        width: 15%;
    }

    .btn-cta span {
        font-size: 16px;
        width: 85%;
        padding: 0 16px;
    }

    .tabs-steps {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        padding: 20px 10px;
        border-radius: 16px;
    }

    .tabs-steps .tabs-steps-box span {
        font-size: 14px;
    }

    .tabs-steps .tabs-steps-box div .tabs-steps-box-title {
        font-size: 16px;
    }

    .tabs-steps .tabs-steps-box div i {
        border-radius: 16px;
        font-size: 60px;
        padding: 5px 5px;
        width: 70%;
    }

    /*pages contents */
    article h2 {
        font-size: 22px;
    }

    article p {
        font-size: 16px;
        line-height: 1.2;
    }

    .tab-panel-img {
        width: 100%;
        float: none;
        margin-left: 0vw;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .tab-ol,
    .tab-ul {
        margin-left: 22px;
    }

    .tab-ol>li,
    .tab-ul>li {
        font-size: 16px !important;
    }

    .tab-ol li::marker {
        font-size: 22px;
    }

    .tab-ul li::marker {
        font-size: 18px;
    }



    /* NHS view */
    .tab-panel-img#panel_one {
        height: 20vh;
    }

    .tab-panel-img#panel_two {
        height: 20vh;
    }

    .tab-panel-progress {
        display: block;
        margin-top: -50px;
    }

    .progress-bar .progress-bar-graph {
        width: 50vw;
        height: 60vw;
    }

    .progress-bar .progress-bar-graph svg {
        width: 49vw;
        height: 45vw;
        margin-top: 5vw;
    }

    .progress-bar .progress-bar-graph svg circle {
        width: 60vw;
        height: 60vw;
        stroke-dasharray: 125vw 255vw;
        stroke-dashoffset: 125vw;
    }

    .progress-bar .progress-bar-graph svg circle:nth-child(1) {
        stroke-dashoffset: 0;
        cx: 20vw;
        cy: 20vw;
        r: 20vw;
    }

    .progress-bar .progress-bar-graph svg circle:nth-child(2) {
        cx: 20vw;
        cy: 20vw;
        r: 20vw;
    }

    .progress-bar .progress-bar-graph#graph__one svg circle:nth-child(2) {
        stroke-dashoffset: calc(125vw - (125vw * 90) /100);
    }

    .progress-bar .progress-bar-graph#graph__two svg circle:nth-child(2) {
        stroke-dashoffset: calc(125vw - (125vw * 70) /100);
    }

    .progress-bar .progress-bar-graph#graph__three svg circle:nth-child(2) {
        stroke-dashoffset: calc(125vw - (125vw * 25) /100);
    }

    .progress-bar .progress-bar-number h3 {
        font-size: 26px;
    }

    .progress-bar .progress-bar-number span {
        font-size: 18px;
    }

    .progress-bar .progress-bar-text {
        font-size: 16px;
    }

    /* facts view */
    .facts__slide {
        height: 20vh;
    }

    .facts__slide h2 {
        font-size: 18px;
    }

    #facts img {
        display: none;
    }

    #facts .fact-mobile {
        display: block;
    }

    /* professionals view */
    .tab-panel-img#panel_three {
        height: 20vh;
    }

    /* faq view */
    .description__box {
        padding: 5vw 0;
    }

    .description__box div:first-child {
        width: 100%;
    }

    .description__box div:first-child h2 {
        font-size: 20px;
        padding: 16px 10px;
    }

    .description__box div:first-child p {
        padding: 0 10px 16px 10px;
        font-size: 16px;
        line-height: 1.2;
    }

    .description__box div:last-child {
        display: none;
    }

    .acordion {
        padding: 0 5vw;
    }

    .acordion details div {
        padding: 10px 5vw;
    }

    .acordion details+details {
        margin-top: 16px;
    }

    .acordion summary {
        padding: 16px 10px;
        padding-left: 50px;
        font-size: 16px;
    }

    .acordion summary:before {
        left: 10px;
        width: 20px;
        height: 20px;
        font-size: 26px;
    }

    .acordion details div p {
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .acordion details div .faq__title {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1;
    }

    .ul__faq,
    .ol__faq {
        margin-left: 26px;
    }

    .ul__faq li,
    .ol__faq li {
        font-size: 16px;
    }

    .ul__faq li::marker,
    .ol__faq li::marker {
        font-size: 20px;
    }

    /* about us view */
    .chcf__quote {
        width: 90%;
        padding: 2vw 0;
        float: none;
        margin-top: 30px;
        margin-bottom: 60px;
        border-width: 2px;
        font-size: 18px;
    }

    .chcf__quote:after {
        font-size: 150px;
        bottom: -16px;
        right: 0%;
    }

    .chcf__quote cite {
        font-size: 14px;
        margin-top: 18px;
        font-weight: 400;
        letter-spacing: 0;
    }

    .founder-box {
        width: 90%;
        margin-left: 5%;
        display: block;
        text-align: center;
    }

    .founder-box img {
        width: 45%;
    }

    .founder-box .founder-data {
        width: 100%;
        padding-left: 5vw;
    }

    .founder-data h3 {
        font-size: 24px;
    }

    .founder-data h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .founder-data p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .founder-data a i {
        font-size: 20px;
        padding: 8px;
        margin-right: 16px;
    }

    /* login */
    body[login] {
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center;
    }

    body[login] form {
        width: 80%;
        padding: 7vw 5vw;
    }

    body[login] form h3 {
        font-size: 22px;
    }

    body[login] form p {
        font-size: 14px;
        margin: 10px 0 40px 0;
    }

    body[login] form .form__box {
        border-radius: 0;
        margin: 16px 0;
        padding: 14px;
    }

    body[login] form .form__box input {
        padding: 0 12px;
        font-size: 14px;
    }

    body[login] form .form__box i {
        font-size: 16px;
    }

    body[login] form .form__remember {
        padding: 10px 0;
    }

    body[login] form .form__remember label {
        font-size: 14px;
        margin-left: 5px;
    }

    body[login] form .button {
        margin: 16px 0 0 0;
        padding: 12px 0;
        border-radius: 0;
        font-size: 14px;
    }

    /* pricing */
    body[pricing] nav {
        left: 0;
    }

    body[pricing] section {
        width: 90%;
        padding: 0;
    }

    body[pricing] h1 {
        font-size: 30px;
        margin-top: 30px;
    }

    body[pricing] h3 {
        font-size: 18px;
        margin: 14px 0 30px 0;
    }

    body[pricing] .pricing__msg {
        margin-top: 10vw;
        font-size: 16px;
        text-align: center;
    }

    body[pricing] .price__title__grid {
        display: none;
    }

    body[pricing] .price__grid,
    body[dashboard] .price__grid {
        grid-gap: 16px;
        grid-template-columns: 1fr;
    }

    body[pricing] .price__box,
    body[dashboard] .price__box {
        padding: 20px 10vw 120px 10vw;
    }

    body[pricing] .price__box .price__title,
    body[dashboard] .price__box .price__title {
        font-size: 26px;
        line-height: 1;
        margin-bottom: 5vw;
    }

    body[pricing] .price__box .price__content,
    body[dashboard] .price__box .price__content {
        font-size: 16px;
    }

    body[pricing] .price__box .price__pounds,
    body[dashboard] .price__box .price__pounds {
        bottom: 15vw;
        font-size: 26px;
        margin-top: 5vw;
    }

    body[pricing] .price__box .price__btn,
    body[dashboard] .price__box .price__btn {
        bottom: 5vw;
        padding: 2vw 7vw;
        font-size: 16px;
    }

    body[pricing] .price__box .price__pounds__flash,
    body[dashboard] .price__box .price__pounds__flash {
        bottom: 90px;
        font-size: 18px;
    }

    body[pricing] .price__box .price__pounds__flash span,
    body[dashboard] .price__box .price__pounds__flash span {
        top: 0px;
        height: 20px;
        margin-left: 14px;
        font-size: 14px;
        padding: 0.5vw;
        transform: rotateZ(0deg);
    }

    body[pricing] .price__box .price__pounds__flash span::before,
    body[dashboard] .price__box .price__pounds__flash span::before {
        left: -10px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid var(--background);
    }

    body[pricing] .price__box .price__pounds__flash span::after,
    body[dashboard] .price__box .price__pounds__flash span::after {
        width: 5px;
        height: 5px;
    }

    /* forms styles */
    .form__box {
        width: 100%;
    }

    .btn {
        padding: 12px 18px;
        font-size: 16px;
    }

    .btn.btn-index {
        padding: 12px 18px;
        font-size: 16px;
        border-radius: 8px;
        width: 90%;
    }

    .btn.btn-index i {
        font-size: 22px;
        margin-left: 0.5vw;
    }

    .btn.btn-index:hover {
        border: 1px solid var(--background);
        background-color: transparent;
        color: var(--background);
    }

    .btn.btn-index:hover i {
        color: var(--background);
    }

    .form__input__box {
        margin-bottom: 32px;
    }

    .form__input__box.large {
        margin-top: 48px;
    }

    .btn-group {
        grid-gap: 5vw;
    }

    .btn-cell {
        display: grid;
        gap: 12px;
    }

    .form__input__group__label {
        font-size: 16px !important;
        top: -18px !important;
        left: 0 !important;
    }

    .form__input__box label {
        position: absolute;
        top: -18px;
        left: 0;
        font-size: 16px;
    }

    .form__input__box label.label__large {
        margin-top: -18px;
    }

    .form__input__box input,
    .form__input__box textarea,
    .form__input__box select {
        background-color: var(--form3);
        border: 2px solid var(--form4);
        border-radius: 0;
        padding: 10px;
        font-size: 16px;
    }

    .form__input__box input:focus,
    .form__input__box textarea:focus,
    .form__input__box select:focus {
        border: 1px solid var(--primary);
        color: var(--form1);
    }

    .form__input__box input:valid+label,
    .form__input__box textarea:valid+label,
    .form__input__box select:valid+label {
        top: -18px;
    }

    .form__input__box input:focus+label,
    .form__input__box input:valid+label,
    .form__input__box textarea:focus+label,
    .form__input__box textarea:valid+label,
    .form__input__box select:focus+label,
    .form__input__box select:valid+label {
        left: 0;
        font-size: 16px;
        top: -18px;
    }

    .form__input__box input:valid:focus+label,
    .form__input__box textarea:valid:focus+label,
    .form__input__box select:valid:focus+label {
        top: -18px;
    }

    /*** assessment ***/
    .h3__subtitle {
        font-size: 20px;
    }

    .p__content {
        font-size: 16px;
    }

    .form__tab__title {
        font-size: 20px;
        margin: 5vw 0 10vw 0;
    }

    .form__assessment__box {
        display: block;
    }

    .form__assessment__box form {
        width: 100%;
        padding-right: 0;
    }

    .form__assessment__slide {
        display: none;
    }

    #assessment__slide__1 {
        display: none;
    }

    #assessment__slide__2 {
        display: none;
    }

    #assessment__slide__3 {
        display: none;
    }

    #assessment__slide__4 {
        display: none;
    }

    .form__assessment__acordion {
        margin-bottom: 10px;
    }

    .form__assessment__acordion__content {
        padding: 2vw;
    }

    .form__assessment__acordion summary {
        padding: 10px 20px;
        padding-left: 32px;
        font-size: 16px;
    }

    .form__assessment__acordion summary:before {
        top: 47%;
        width: 26px;
        height: 1vw;
        font-size: 20px;
    }

    .assessment__form__radio label {
        padding: 3vw;
        padding-left: 22px;
        font-size: 16px;
    }

    .assessment__form__radio label::before {
        width: 14px;
        height: 14px;
        border: 2px solid var(--form5);
        left: 0;
    }

    .assessment__form__radio input:checked+label {
        padding-left: 3vw;
    }

    .assessment__finish {
        display: block;
        width: 100%;
        border-radius: 16px;
    }

    .assessment__finish .assessment__finish__text {
        width: 100%;
        padding: 5vw;
        font-size: 18px;
        line-height: 1.2;
    }

    .assessment__finish .assessment__finish__text img {
        width: 50%;
        margin-bottom: 20px;
    }

    .assessment__finish .assessment__finish__img {
        width: 100%;
        display: block;
    }

    /* footer */
    .footer__logo img {
        width: 30%;
    }

    footer .footer__box {
        width: 100%;
        display: block;
        margin: 16px 0 0 0;
        padding: 16px 5vw;
    }

    footer .footer__box:last-of-type {
        background-color: var(--footer-2);
        padding: 16px 5vw;
        text-align: center;
    }

    footer .footer__box .footer__box__content {
        width: 100%;
        display: block;
        margin-top: 20px;
    }

    footer .footer__box .footer__box__span {
        display: none;
    }

    footer .footer__box .footer__box__content div {
        width: 100%;
    }

    footer .footer__box .footer__box__content h4 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    footer .footer__box .footer__box__content p {
        margin-bottom: 10px;
        font-size: 16px;
    }

    footer .footer__box .footer__box__content p i {
        margin-right: 12px;
    }

    footer .footer__box .footer__box__content a {
        font-size: 16px;
    }

    footer .footer__box .footer__box__content a i {
        margin-right: 12px;
    }

    footer .footer__box__input form {
        display: block;
        width: 100%;
        margin-bottom: 1vh;
    }

    footer .footer__box__input form input {
        padding: 10px;
        font-size: 16px;
        width: 70%;
    }

    footer .footer__box__input form button {
        width: 30%;
        padding: 10px;
        font-size: 16px;
        margin-left: -2%;
    }

    .text__coppy {
        font-size: 16px;
    }

    footer .footer__box .footer__box__icons {
        align-items: center;
        justify-content: center;
        margin-top: 16px;
    }

    footer .footer__box .footer__box__icons a:not(:last-child) i {
        margin-right: 26px;
    }

    /* schedule complete */
    .calendy {
        width: 90%;
    }

    .calendy img {
        width: 10vw;
        margin-bottom: 5vw;
    }

    .calendy h2 {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .calendy p {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .calendy a {
        width: 90%;
        padding: 16px;
        font-size: 20px;
        margin-top: 40px;
    }

    body[dashboard] {
        overflow: hidden !important;
        position: relative;
    }

    body[dashboard] .dashboard__container,
    body[dashboard] nav {
        display: none;
    }

    body[dashboard]::after {
        content: 'Sorry, we are working on the mobile design of the dashboard to give you the best experience.';
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100vw;
        height: 100dvh;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: var(--primary);
        color: var(--text2);
    }

    /* time for care */
    article h3 {
        font-size: 18px;
        margin: 16px 0;
    }

    .time__title {
        font-size: 20px;
        padding: 12px 0;
    }

    .time__note {
        font-size: 16px;
    }
    
    .time__form {
        margin-top: 20px;
        font-size: 20px;
    }
}