/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

a {
    text-decoration: none;
}

/* Set core body defaults */
html,
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

body {
    font-family: 'Nunito', sans-serif;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

a,
button {
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* VARIABLES GLOBALES */

:root {
    --purple: #830051;
    --yellow: #F5B839;
    --green: #187252;
    --red: #C5214C;
    --blue: #0B4DA9;
    --lightgray: #EFEFEF;
    --darkgray: #818181;
    --text-xs: 0.8rem;
    --text-s: 0.9rem;
    --text-m: 1.2rem;
    --text-ml: 1.6rem;
    --text-l: 2rem;
    --text-xl: 2.4rem;
}

/* ESTILOS SITIO */

p,
li {
    font-weight: 300;
    color: var(--darkgray);
}

strong {
    font-weight: 600;
}

.text-purple {
    color: var(--purple) !important;
}

.bg-yellow {
    background-color: var(--yellow);
}

.text-yellow {
    color: var(--yellow) !important;
}


.bg-green {
    background-color: var(--green);
    color: var(--yellow);
}

.text-verde {
    color: var(--green) !important;
}

.text-m {
    font-size: 1.2rem;
}

.text-s {
    font-size: var(--text-s);
}

.text-xs {
    font-size: var(--text-xs);
}


button.btn-share {
    background-color: #fff;
    color: var(--purple);
    box-shadow: inset 0 0 0 2px var(--green);
}

.buttons button.btn:hover {
    background-color: var(--purple);
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}

button.btn-download {
    background-color: var(--green);
    color: #fff;
    text-decoration: none;
}



button.btn.bg-purple {
    background-color: var(--purple);
    color: var(--yellow);
}

button.btn.bg-purple:hover {
    background-color: var(--yellow);
    color: var(--purple);
}

button.btn-download,
button.btn-share {
    display: flex;
    align-items: center;
}

button.btn-download img,
button.btn-share img {
    margin-right: 15px;
}

#header-main {
    position: fixed;
    background-color: #fff;
    width: 100%;
    min-height: 80px;
    top: 0;
    left: 0;
    z-index: 5;
    transition: top 500ms ease-in-out;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0px 10px 5px -3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 5px -3px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 5px -3px rgba(0, 0, 0, 0.05);
}

#header-main .navbar-nav .nav-link {
    color: var(--purple);
    font-weight: 600;
}

#header-main .navbar-nav .nav-link:hover {
    color: var(--red);
}


#header-main.scroll-up,
#header-main:focus-within {
    top: 0;
}

#header-main.scroll-down {
    top: -100%;
}

section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.misc {
    position: absolute;

}

header.section-title {
    margin: auto auto 3rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 950px;
}

.section-title h2 {
    margin-bottom: 1.5rem;
    color: var(--purple);
    font-weight: 700;
}



#banner {
    height: 100vh;
    background-image: url(../images/banner-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#banner .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: calc(10vw - 3em);
    padding-right: calc(10vw - 3em);
    width: calc(50% + 10em);
    height: auto;
    padding-top: calc(15vh - 2em);
    padding-bottom: calc(15vh - 2em);
    background-image: url(../images/banner-shape.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

#banner .shape h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--yellow);
    font-weight: 700;
}

#banner .shape p {
    font-size: 1.2rem;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

#banner .shape button.btn {
    background-color: var(--yellow);
    color: var(--purple);
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 7px 25px;
}

#banner .shape button.btn svg {
    margin-left: 10px;
    animation-duration: .4s;
    animation-name: slidein;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

#banner .shape button.btn svg path {
    fill: var(--purple);
}

#banner .shape button.btn:hover {
    background-color: #fff;
}

#banner .shape button.btn:hover svg path {
    fill: var(--purple);

}

@keyframes slidein {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(12px);
    }
}

#intro img {
    border-radius: 25px;
}

#intro .misc {
    position: absolute;
    top: -15px;
    left: -15px;
}

#intro p {
    margin-bottom: 1rem;
}

#intro .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section#selector {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: -5rem;
}

.swiper-mythsfacts {
    overflow: hidden;
}

.swiper-selector .swiper-slide .content {
    display: flex;
    justify-content: space-between;
    height: 300px;
    border: solid 1px #f4f4f4;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.swiper-selector .swiper-slide .text {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 45px;

}

.swiper-selector .text h3 {
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--purple);
}

.swiper-selector .text a {
    color: var(--red);
}

.swiper-selector .swiper-slide .text:after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 100%;
    background-image: url(../images/selector-after.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.swiper-selector .swiper-slide .image {
    width: 65%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

#selector .swiper-pagination-bullet-active {
    background-color: var(--yellow);
}


section#childhood-asthma {
    background-color: var(--green);
    color: #fff;
    padding-bottom: 0;
    padding-top: 10rem;
}

#childhood-asthma .misc {
    left: 0;
    top: 15px;
    max-width: 8vw;
}

#childhood-asthma .cards {
    transform: translateY(5rem);
    margin-top: -5rem;
}

#childhood-asthma .item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 100px 25px;
    width: 100%;
    border-radius: 25px;
    position: relative;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}

#childhood-asthma .item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 82%);
    z-index: 0;
    border-radius: 25px;
}

#childhood-asthma .item h3 {
    z-index: 1;
}

.modalMain .modal-header {
    background-color: var(--yellow);
}

.modalMain .modal-title {
    color: var(--purple);
    font-weight: 600;
}

.references {
    font-size: 0.8rem;
    border-top: solid 1px #f4f4f4;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#collapseResources .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

#collapseResources .item .cta {
    width: 125px;
    height: auto;
}

#collapseResources .item h5,
#collapseResources .item .buttons {
    margin-top: 0.75rem;
}

button.play,
div.play {
    position: absolute;
    bottom: 0;
    width: 200px;
    left: calc(50% - 100px);
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    text-align: center;
    background: none;
}

button.play p,
div.play p {
    font-weight: 600;
    color: var(--purple);
    font-size: 1.4rem;
    z-index: 1;
    position: relative;
    pointer-events: none;
}

button.play span,
div.play span {
    pointer-events: none;
    color: var(--purple);
    z-index: 1;
    position: relative;
}

button.play:before,
div.play:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/shape-play-white.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: .75;
    transition: opacity 0.2s ease;
}

button.play:hover:before,
div.play:hover:before {
    opacity: 1;
}

section#myths-facts {
    margin-top: 5rem;
}

#myths-facts .item {
    position: relative;
    min-height: 380px;
}

#myths-facts .item.myth {
    background-color: var(--yellow);
}

#myths-facts .item.fact {
    background-color: var(--purple);
}

#myths-facts .item .text {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: space-between;
}

#myths-facts .item .text .number {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.5;
    font-weight: 800;
}

#myths-facts .item .text .title {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: .75rem;
    color: #fff;
    font-weight: 600;
    min-height: 80px;
}

#myths-facts .item .text .icon {
    margin-bottom: .75rem;
    max-width: 100px;
    max-height: 80px;
}

#myths-facts .item .text .mf {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

#myths-facts .item .content {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #fff;
    height: 90%;
    border: solid 1px #f4f4f4;
    padding: 10px;
}

#myths-facts .item .content p {
    font-size: 0.9rem;
}

.wrapper-video.not-played video {
    pointer-events: none;
}

#myths-facts .navigation {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 50px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modalMythsFacts h5 {
    font-weight: 700;
    color: var(--yellow);
}

.modalMythsFacts.modalMyth h5 {
    font-weight: 700;
    color: var(--purple);
}

.modalMythsFacts h6 {
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--yellow);
}

.modalMythsFacts.modalMyth .modal-content {
    background-color: var(--yellow);
}

.modalMythsFacts.modalFact .modal-content {
    background-color: var(--purple);
}

.modalMythsFacts.modalMyth h6 {
    color: var(--purple);
}

.modalMythsFacts.modalFact p {
    color: #fff;
}

.modalMythsFacts.modalMyth p {
    color: #1d1d1d;
}

.hulihealth {
    display: none;
}

section#test {
    background-color: var(--purple);
    min-height: 40rem;
}

#test .misc-1 {
    position: absolute;
    top: -35px;
    transform: rotate(180deg);
    left: 0;
}

#test .misc-2 {
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 65px;
    transform: rotate(180deg);
}

#test .quiz-statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    height: 110px;
}

#test #options-container {
    display: flex;
    flex-direction: column;
}

#test .btn-quiz {
    background-color: var(--yellow);
    color: var(--purple);
    box-shadow: inset 0 0 0 2px var(--yellow);
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    border: none;
}

#test .btn-quiz:hover {
    background-color: #fff;
    color: var(--purple);

}

#test.finalizado #question-container,
#test #result-container {
    display: none;
}



#test.finalizado #result-container {
    display: block;
}

#result-container .card {
    background-color: var(--yellow);
    color: var(--purple);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#result-container .card .p {
    color: #fff;
}

#result-container .card #resultado {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--purple);
}

#result-container .huli {

    color: #fff;
}

#result-container .huli h5 {
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#result-container p.disclaimer {
    margin-top: 3rem;
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}

#test #test-progress {

    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#test #test-progress:before {
    position: relative;
    font-family: 'Nunito', sans-serif;
    content: "0% COMPLETED";
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.bar2 {
    background-color: rgba(0, 0, 0, 0.095);
    width: 100%;
    height: 7px;
    padding: 0px;
    border-radius: 7px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.bar2 .fill {
    background-color: #fff;
    width: 0%;
    height: 100%;
    border-radius: 25px;
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


.step-1 .bar2 .fill {
    width: 20%;
    background-color: none;
    opacity: 1;
    background-color: var(--yellow);
}

.step-2 .bar2 .fill {
    width: 40%;
}

.step-3 .bar2 .fill {
    width: 60%;
}

.step-4 .bar2 .fill {
    width: 80%;
}

.step-5 .bar2 .fill {
    width: 100%;
}


#test #test-progress.step-1:before {
    content: "20% COMPLETED";
    color: #fff;
}

#test #test-progress.step-2:before {
    content: "20% COMPLETED";
    color: #fff;
}

#test #test-progress.step-3:before {
    content: "40% COMPLETED";
    color: #fff;
}

#test #test-progress.step-4:before {
    content: "60% COMPLETED";
    color: #fff;
}


#test #test-progress.step-5:before {
    content: "80% COMPLETED";
    color: #fff;
}

#test #test-progress.step-6:before {
    content: "100% COMPLETED - LOADING RESULTS...";
    color: #fff;
}


#do-the-test {
    transform: translateY(-100%);
    opacity: 0;
    position: fixed;
    bottom: 15px;
    width: 80%;
    left: 10%;
    background-color: var(--purple);
    border: solid 2px #fff;
    z-index: 50;
    min-height: 150px;
    pointer-events: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px 50px;
    justify-content: space-between;
}

#do-the-test p {
    width: calc(100% - 350px);
    font-size: 1.4rem;
    color: var(--yellow);
}

#do-the-test.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

#do-the-test button.close {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 3rem;
    color: #fff;
    position: absolute;
    top: 0;
    right: 10px;
    border: none;
    background: none;
    padding: 0;
    line-height: 1;
}

section#daily-care {
    background-color: var(--yellow);
    padding-bottom: 0;
}

#daily-care .misc-1 {
    bottom: 20px;
    right: 0;
    max-width: 10vw;
    z-index: 1;
}

#daily-care .misc-2 {
    bottom: -25px;
    right: 0;
    max-width: 6vw;
    z-index: 0;
}

#daily-care .nav-tabs .btn {
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.25);
}

#daily-care .nav-tabs .btn:hover {
    color: #fff;
}

#daily-care .nav-tabs .btn.active {
    background: none;
    color: var(--purple);
}


#daily-care .tab-content {
    padding-bottom: 7rem;
    position: relative;
}

#daily-care .tab-content h3 {
    font-weight: 600;
    color: var(--red);
    margin-bottom: 1.5rem;
}

#daily-care .tab-content p,
#daily-care .tab-content ul,
#daily-care .tab-content ol,
#daily-care .tab-content li {
    color: #0f0f0f;
    margin-bottom: 1rem;
}


#daily-care .tab-content .image {
    position: absolute;
    width: 35%;
    height: 100%;
    background-color: #d69d25;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
}

#daily-care .tab-content .image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hexagon-mask-yellow-1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#daily-care .tab-content .text {
    padding-top: 5rem;
    min-height: 550px;
}

.buttons {
    display: flex;
    align-items: center;
}

.buttons .btn {
    margin-right: 15px;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link.active {
    border: none;

}

#tips-kids h3 {
    margin-bottom: 2rem;
    color: var(--purple);
    font-weight: 600;
}

#tips-kids .misc {
    top: -25px;
    left: 0;
    max-height: 95px;
    z-index: -1;
}

.tips .nav-pills {
    background-color: var(--lightgray);
    align-items: flex-start;
    padding: 25px 60px 25px 25px;
    font-weight: 600;
    border-radius: 10px;
}

.tips .nav-pills .nav-link {
    text-align: left;
    opacity: 0.5;
    font-size: 1.1rem;
    width: 100%;
}

#tips-kids .tab-content ol>li {
    font-weight: 600;
    margin-bottom: 0.5rem;
}



.tips .nav-pills .nav-link.active {
    background: none;
    color: var(--purple);
    opacity: 1;
}

.tips .nav-pills .nav-link.active p {
    color: var(--purple);

}

.tips .nav-pills .nav-link p {
    position: relative;
    font-weight: 600;
    pointer-events: none;
}

.tips .nav-pills .nav-link:hover {
    opacity: 1;
}

.tips .nav-pills .nav-link p:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: -50px;
    top: 10px;
    background-image: url(../images/chevron-right-yellow.png);
    background-position: center;
    background-size: contain;
    filter: saturate(0);
}

.tips .nav-pills .nav-link.active p:after {
    filter: saturate(1);
}

.tips .image img {
    border-radius: 25px;
}

#faq .accordion-button::after,
#ref-res .accordion-button::after {
    content: none;
}

#faq .accordion-button p,
#ref-res .accordion-button p {
    text-align: center;
    margin: auto;
    font-size: 1.4rem;
    color: var(--red);
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
    pointer-events: none;
}

.accordion-button p {
    pointer-events: none;
}

#faq .accordion-button p:after,
#ref-res .accordion-button p:after {
    position: absolute;
    content: "";
    right: -60px;
    width: 30px;
    height: 30px;
    background-image: url(../images/chevron-right-yellow.png);
    background-position: center;
    background-size: contain;
    top: 0;
    transition: transform 0.2s ease;
}

#faq .accordion-body>ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}

#faq .accordion-body ul li.card {
    -webkit-column-break-inside: avoid;
    /* Chrome, Safari */
    page-break-inside: avoid;
    /* Theoretically FF 20+ */
    break-inside: avoid-column;
    /* IE 11 */
    display: table;
}

#faq .accordion-item {
    border: none;
}

#faq .accordion-button:not(.collapsed) {
    background: none;
}

#faq .accordion-button:not(.collapsed) p:after,
#ref-res .accordion-button:not(.collapsed) p:after {
    transform: rotate(90deg);
}

#faq .card {
    margin-bottom: 1rem;
}

#faq ul.card-wrapper .card {
    border: solid 1px var(--yellow);
}

#faq ul.card-wrapper .card h5 {
    color: var(--red);
    font-weight: 600;
}

section#ref-res {
    background-color: var(--lightgray);
}

#ref-res .accordion-item {
    background: none;
    border: none;
}

#ref-res .accordion-button {
    background: none;
    border: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

#ref-res .accordion-button::after {
    margin-left: 1rem;
}

#ref-res .accordion-button p {
    text-align: left;
    margin-left: 0;
    color: var(--purple);
}

footer#footer-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--blue);
    position: relative;
}

#footer-main .misc {
    right: 0;
    top: 15px;
    max-height: 75px;
}

#footer-main ul,
#footer-main li {
    list-style: none;
}

#footer-main p,
#footer-main ul,
#footer-main li,
#footer-main a {
    color: var(--yellow);
    font-size: 0.9rem;
    text-decoration: none;
}

#footer-main a:hover {
    text-decoration: underline;
}

.upper {
    text-transform: uppercase;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '' !important;
}

.share-redes {
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-redes a {
    margin-right: 15px;
    margin-left: 15px;

}

.share-redes a img {
    max-width: 40px;
    max-height: 40px;
}

/* SOLO DESKTOP GRANDE */
@media (min-width: 1600px) {

    .navbar-brand img {
        max-height: 60px;
        width: auto;
    }
}


/* DESKTOP CHICO */
@media (min-width: 768px) and (max-width: 1441px) {

    .navbar-brand img {
        max-width: 140px;
    }

    #myths-facts .item .text .title {
        font-size: 1.2rem;
    }

    #myths-facts .item .text .mf {
        font-size: 1.5rem;
    }
}

/* SOLO DESKTOP */
@media (min-width: 768px) {
    #header-main .container {
        max-width: 90%;
    }

    .modalMain .modal-dialog {
        max-width: 95%;
        width: 1000px;
    }

    #daily-care .nav-tabs {
        justify-content: space-between;
        margin-bottom: 2rem;
    }

    #daily-care .nav-tabs .nav-link:focus,
    #daily-care .nav-tabs .nav-link:hover {
        border: none;
    }

    #daily-care .nav-tabs .btn {
        width: 25%;
    }

}

/* MOBILE */
@media (max-width: 768px) {

    #banner .shape {
        padding-left: 25px;
        padding-right: 25px;
        width: 90%;
    }

    #banner .shape h1 {
        font-size: 2rem;
    }

    #banner .shape p {
        font-size: 1.2rem;
    }

    .swiper-selector .swiper-slide .content {
        display: flex;
        flex-direction: column;
    }

    .swiper-selector .swiper-slide .text {
        width: 100%;
        padding-left: 25px;
        padding-top: 25px;
        padding-right: 25px;
        padding-bottom: 25px;
    }

    .swiper-selector .swiper-slide .text:after {
        left: 0;
        top: auto;
        right: 0;
        bottom: -50px;
        height: 50px;
        width: 100%;
    }

    .swiper-selector .text h3 {
        margin-bottom: 1rem;
    }

    .swiper-selector .swiper-slide .image {
        width: 100%;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    #myths-facts .swiper-slide.first {
        display: none;
    }

    #childhood-asthma .item {
        margin-bottom: 2rem;
        min-height: 290px;
        padding: 80px 10px;
        border-radius: 15px;
    }

    #daily-care .nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #daily-care .tab-content {
        padding-bottom: 0;
    }

    #daily-care .tab-content .text {
        padding-top: 1rem;
    }

    #daily-care .tab-content .image {
        position: relative;
        height: 350px;
        width: 90%;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
    }

    .tips .nav-pills {
        margin-bottom: 1.5rem;
    }

    #myths-facts .item .text .title {
        font-size: 1.1rem;
    }

    #myths-facts .item .text .mf {
        font-size: 1.3rem;
    }

    #myths-facts .swiper-wrapper {
        padding-bottom: 0;
    }

    #faq .accordion-button p,
    #ref-res .accordion-button p {
        font-size: 1.2rem;
    }

    #faq .accordion-button p:after,
    #ref-res .accordion-button p:after {
        right: -30px;
        width: 15px;
        height: 15px;
    }

    #faq .accordion-body>ul {
        column-count: 1;
    }

    #test .misc-1 {

        width: 40px;
    }

    #test .misc-2 {

        width: 25px;
    }

    #test .quiz-statement {
        height: auto;
        min-height: 150px;
    }

    #do-the-test {

        width: 95%;
        left: 2%;
        background-color: var(--purple);
        border: solid 2px #fff;
        z-index: 50;
        min-height: 150px;

        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px 25px;
        justify-content: space-between;
    }

    #do-the-test p {
        width: calc(100% - 15px);
        font-size: 1.1rem;
        color: var(--yellow);
    }
}