@font-face {
    font-family: 'Nunito';
    src: url("../fonts/Nunito-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    /* Asume que tu fuente variable va desde un peso de 100 a 900 */
    font-stretch: 75% 125%;
    /* Asume que tu fuente variable puede estirarse desde el 75% hasta el 125% */
}

:root {
    --prim: #406060;
    --prim120: #264D4D;
    --prim80: #387165;
    --prim50: #529789;
    --prim20: #bad6d1;
    --prim10: #D4E4E1;
    --prim5: #EEF6F5;
    --dark: #333333;
    --dark50: #828282;
    --dark10: #ebebeb;
    --danger: #C82861;
    --xs: 12px;
    --s: 14px;
    --m: 16px;
    --l: 18px;
    --xl: 24px;
    --xxl: 32px;
    --xxxl: 48px;
    --trans: all .2s ease-in;
}

@media (max-width: 767px) {
    :root {
        --xs: 11px;
        --s: 13px;
        --m: 14px;
        --l: 16px;
    }
}

.font-xs {
    font-size: var(--xs);
}

.font-s {
    font-size: var(--s);
}

.font-m {
    font-size: var(--m);
}

.font-l {
    font-size: var(--l);
}

.font-xl {
    font-size: var(--xl);
}

.font-xxl {
    font-size: var(--xxl);
}

.font-xxxl {
    font-size: var(--xxxl);
}

.color-dark {
    color: var(--dark);
}

.color-prim {
    color: var(--prim);
}

.color-danger {
    color: var(--danger) !important;
}

.bg-prim {
    background: var(--prim);
}

.bg-gradient {
    background: #bad6d1;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #bad6d1), color-stop(100%, rgba(212, 228, 225, 0)));
    background: -webkit-gradient(linear, left top, left bottom, from(#bad6d1), to(rgba(212, 228, 225, 0)));
    background: linear-gradient(to bottom, #bad6d1 0%, rgba(212, 228, 225, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bad6d1', endColorstr='#d4e4e1', GradientType=0);
}

.bg-prim80 {
    background: var(--prim80);
}

.bg-prim50 {
    background: var(--prim50);
}

.bg-prim20 {
    background: var(--prim20);
}

.bg-prim10 {
    background: var(--prim10);
}

.bg-prim5 {
    background: var(--prim5);
}

.btn {
    padding: 1rem 1.5rem;
    font-size: var(--s);
    font-weight: 600;
    border: 2px solid var(--prim);
    border-radius: 4px;
    outline: none;
    -webkit-transition: var(--trans);
    transition: var(--trans);
}

.btn.prim {
    color: white;
    background: var(--prim);
}

.btn.prim:hover, .btn.prim:focus {
    color: white;
    background: var(--prim80);
}

.btn.prim-outline {
    color: var(--prim);
    background: white;
    border: 2px solid var(--prim);
}

.btn.prim-outline:hover, .btn.prim-outline:focus {
    color: white;
    background: var(--prim80);
    border-color: var(--prim80);
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    html {
        /*  overflow-x: hidden; */
    }
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    font-size: var(--m);
    width: 100%;
    background: #fafafa;
}

@media (max-width: 767px) {
    body {
        /*  overflow-x: hidden; */
    }
}

body a {
    text-decoration: none;
    -webkit-transition: var(--trans);
    transition: var(--trans);
}

body b,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-weight: 800;
    line-height: 1.5;
}

body p {
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}

body p b {
    font-weight: 700;
}

body .container {
    max-width: 1300px;
    margin: 0 auto;
}

body .image-wrapper {
    text-align: center;
    width: 100%;
}

body .image-wrapper img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 992px) {
    body .image-wrapper img {
        height: auto;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 1rem;
    /* backdrop-filter: blur(10px); */
    background: transparent;
    -webkit-transition: var(--trans);
    transition: var(--trans);
}

@media (max-width: 992px) {
    header {
        height: 65px;
        padding: 0;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        background: white;
    }
}

header.fixed {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background: white;
}

header .container {
    max-width: 1100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 992px) {
    header .container {
        height: 100%;
        max-width: 100vw;
        padding: 0 1.5rem;
    }
}

header .container img {
    max-height: 40px;
}

header .buttons {
    display: flex;
    align-items: center;
    gap: 13px;
}

header .buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    header .buttons .btn {
        padding: 8px 14px;
        font-size: 13px;
        line-height: 22px;
    }
}

@media (max-width: 992px) {
    header .buttons .btn {
        display: none;
    }
}

@media (max-width: 767px) {
    header .buttons {
        display: flex;
    }
}

header .buttons .menu-btn {
    width: 26px;
    height: 26px;
    display: none;
    position: relative;
    border: none;
}

@media (max-width: 767px) {
    header .buttons .menu-btn {
        display: block;
        background: transparent;
    }
}

header .buttons .menu-btn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background: var(--prim);
}

header .buttons .menu-btn span:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background: var(--prim);
    top: -8px;
}

header .buttons .menu-btn span:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background: var(--prim);
    bottom: -8px;
}

@media (max-width: 767px) {
    header nav {
        position: absolute;
        top: 70px;
        right: -100%;
        z-index: 9;
        background: white;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: .5rem;
        border-radius: 8px;
        -webkit-transition: var(--trans);
        transition: var(--trans);
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    header nav.expanded {
        right: 5px;
    }
}

header nav a {
    display: inline-block;
    padding: 8px 16px;
    font-weight: 700;
    font-size: var(--s);
    color: var(--prim);
    margin: 0 .25rem;
    border-radius: 8px;
}

header nav a:hover, header nav a.active {
    font-weight: 800;
    background: var(--prim5);
}

section .mobile-banner .image-wrapper {
    max-height: 300px;
    overflow: hidden;
}

section .mobile-banner .image-wrapper img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

section .mobile-banner .buttons {
    margin-top: -2rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 0 1rem;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.07));
}

section .mobile-banner .buttons .btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14px 8px;
    gap: 2px;
    margin: 0;
    border-radius: 8px;
    border: 1px solid var(--prim20);
    background: white;
    color: var(--prim50);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

section .mobile-banner .buttons .btn img {
    height: 24px;
    width: auto;
}

section .mobile-banner .buttons .btn.active {
    background: var(--prim5);
    border-color: var(--prim50);
    color: var(--prim);
    font-weight: 600;
}

section.main-section {
    padding-top: 80px;
    position: relative;
    overflow: visible;
}

section.main-section.download-section:before {
    display: none !important
}

@media (max-width: 992px) {
    section.main-section {
        padding-top: 65px;
    }
}

section.main-section .container {
    max-width: 1300px;
}

section.main-section h1 {
    font-weight: 900;
    font-size: 49px;
    max-width: 520px;
    line-height: 1.41;
}

@media (max-width: 1200px) {
    section.main-section h1 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    section.main-section h1 {
        max-width: none;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    section.main-section h1 {
        font-size: 32px;
    }
}

section.main-section:before {
    content: "";
    opacity: .6;
    height: 200%;
    position: absolute;
    top: 0;
    right: 0;
    width: 15vw;
    z-index: -1;
    background: #bad6d1;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #bad6d1), color-stop(100%, rgba(212, 228, 225, 0)));
    background: -webkit-gradient(linear, left top, left bottom, from(#bad6d1), to(rgba(212, 228, 225, 0)));
    background: linear-gradient(to bottom, #bad6d1 0%, rgba(212, 228, 225, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bad6d1', endColorstr='#d4e4e1', GradientType=0);
}

@media (min-width: 1600px) {
    section.main-section:before {
        width: 25vw;
    }
}

@media (max-width: 767px) {
    section.main-section:before {
        display: none;
    }
}

@media (min-width: 1200px) {
    section.main-section .image-wrapper img {
        width: 100%;
    }
}

section.main-section .floating-row {
    margin-top: -6rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    section.main-section .floating-row {
        margin-top: 0;
    }
}

section.main-section .floating-row .bg-prim20 {
    max-width: 480px;
    margin: 0 auto;
}

section.swiper-section {
    padding: 5rem 0;
    overflow-x: hidden;
}

section.swiper-section .swiper-wrapper {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media (min-width: 768px) and (max-width: 992px) {
    section.swiper-section .swiper-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

section.swiper-section .swiper-slide {
    width: 33%;
    padding: .5rem;
    height: auto;
}

@media (max-width: 767px) {
    section.swiper-section .swiper-slide {
        padding: .5rem 0;
    }
}

section.swiper-section .swiper-slide .card {
    height: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--dark10);
}

section.swiper-section .swiper-slide .card h4 {
    font-size: var(--l);
    margin: 1rem 0;
    font-weight: 700;
    text-align: center;
}

section.swiper-section .swiper-slide .card p {
    text-align: center;
    font-weight: 300;
}

section.work-section {
    position: relative;
}

section.work-section:before {
    content: "";
    opacity: .6;
    height: 150%;
    position: absolute;
    top: -9rem;
    left: 0;
    width: 50vw;
    z-index: -1;
    background: #bad6d1;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #bad6d1), color-stop(100%, rgba(212, 228, 225, 0)));
    background: -webkit-gradient(linear, left top, left bottom, from(#bad6d1), to(rgba(212, 228, 225, 0)));
    background: linear-gradient(to bottom, #bad6d1 0%, rgba(212, 228, 225, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bad6d1', endColorstr='#d4e4e1', GradientType=0);
}

@media (max-width: 992px) {
    section.work-section:before {
        width: 25vw;
    }
}

@media (max-width: 767px) {
    section.work-section:before {
        width: 100vw;
    }
}

@media (max-width: 1300px) {
    section.work-section img {
        max-width: 100%;
    }
}

section.work-section .card {
    height: 100%;
    padding: 1.75rem;
    border-radius: 8px;
    border: none;
    margin-bottom: 1rem;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

section.work-section .card h5 {
    color: var(--prim);
    text-align: center;
}

section.security-section {
    padding-bottom: 5rem;
}

@media (max-width: 992px) {
    section.security-section .image-wrapper {
        margin: 3rem 0;
    }
}

section.security-section .col-lg-3 {
    text-align: center;
}

@media (max-width: 992px) {
    section.security-section .col-lg-3 {
        margin: 0 0 2rem;
    }
}

@media (max-width: 767px) {
    section.security-section .col-lg-3 {
        text-align: left;
    }
}

section.security-section .col-lg-3 .bg-prim5 {
    display: inline-block;
}

section.security-section .col-lg-3 a {
    color: var(--dark);
    text-decoration: underline;
    opacity: 1;
}

section.security-section .col-lg-3 a:hover {
    opacity: .8;
}

section.security-section .col-lg-3 b,
section.security-section .col-lg-3 a {
    font-weight: 700;
}

.white-box {
    position: relative;
}

@media (max-width: 767px) {
    .white-box {
        display: block;
    }
}

.white-box b {
    position: relative;
    font-weight: 900;
}

.white-box:before {
    content: "";
    background: white;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    position: absolute;
    z-index: 0;
    -webkit-transform: rotate(-0.5deg);
    transform: rotate(-0.5deg);
}

.app-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.app-buttons a {
    margin: 0 1rem 0 0;
    opacity: 1;
}

.app-buttons a:last-of-type {
    margin-right: 0;
}

@media (max-width: 767px) {
    .app-buttons a {
        margin: 0.25rem;
    }
}

.app-buttons a img {
    height: 54px;
}

.app-buttons a img.google {
    height: 70px;
}

.app-buttons a:hover {
    opacity: .8;
}

footer {
    padding: 3rem 1rem;
}

footer a {
    color: var(--prim);
    opacity: 1;
}

footer a:hover {
    opacity: .8;
}

.top-btn {
    position: fixed;
    bottom: 2rem;
    right: -4rem;
    width: 36px;
    height: 36px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--prim20);
    border-radius: 50%;
    border: none;
    z-index: 9;
    -webkit-transition: var(--trans);
    transition: var(--trans);
    opacity: 1;
}

@media (max-width: 767px) {
    .top-btn {
        bottom: 1rem;
    }
}

.top-btn.visible {
    right: 2rem;
}

@media (max-width: 767px) {
    .top-btn.visible {
        right: 1rem;
    }
}

.top-btn:hover {
    opacity: .8;
}

.modal {
    background: rgba(0, 0, 0, 0.7);
}

.modal .modal-content {
    background: transparent;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal .modal-content .modal-body {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 1.5rem;
    border-radius: 16px;
    height: auto;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.modal .modal-content .modal-body .close {
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
}

.modal .modal-content .modal-body .app-buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .modal .modal-content .modal-body .app-buttons a {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .modal .modal-content .modal-body .app-buttons a img {
        width: 100%;
    }
}

.ethic .container {
    max-width: 1100px;
}

.ethic section.main-section .container {
    max-width: 1100px;
}

@media (max-width: 992px) {
    .ethic section.main-section h1 {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .ethic section.main-section h1 {
        text-transform: none !important;
    }
}

.ethic section.main-section:before {
    width: 20vw;
}

@media (max-width: 767px) {
    .ethic section.main-section:before {
        display: block;
    }
}

@media (min-width: 1200px) {
    .ethic section.main-section .image-wrapper img {
        width: 100%;
    }
}

.ethic .font-xl {
    font-size: 20px !important;
}

.ethic .image-wrapper {
    height: 480px;
}

@media (max-width: 992px) {
    .ethic .image-wrapper {
        height: 100%;
        width: 100%;
    }
}

.ethic .image-wrapper img {
    max-height: 100%;
    width: auto;
}

@media (max-width: 992px) {
    .ethic .image-wrapper img {
        height: 100%;
        width: 100%;
    }
}

.ethic .obligation {
    text-align: center;
    margin: 1rem 0;
}

@media (max-width: 767px) {
    .ethic .obligation {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .ethic .obligation .mt-3 {
        margin-top: 0 !important;
    }
}

.ethic .obligation p {
    text-align: left;
    line-height: 1.8;
}

.ethic .obligation p b {
    font-weight: 600;
    line-height: 1.8;
}

.ethic .shadow-box {
    max-width: 650px;
    width: 100%;
    margin: 5rem auto;
    text-align: center;
    position: relative;
}

@media (max-width: 767px) {
    .ethic .shadow-box {
        width: calc(100% - 1rem);
    }
}

.ethic .shadow-box > div {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.ethic .shadow-box:before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 100%;
    height: 100%;
    background: var(--prim10);
    z-index: -1;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .ethic .shadow-box:before {
        top: .5rem;
        left: .5rem;
    }
}

.contact {
    padding-bottom: 3rem;
}

.contact .main-section:before {
    display: none;
}

.contact form {
    max-width: 720px;
    margin: 0 auto;
}

.contact form label {
    display: block;
    margin-bottom: .5rem;
    margin-top: 2rem;
}

.contact form input, .contact form textarea {
    padding: .75rem .5rem;
    width: 100%;
    background: white;
    border: 1px solid var(--dark10);
    border-radius: 6px;
    -webkit-transition: var(--trans);
    transition: var(--trans);
    outline: none;
}

.contact form input:focus, .contact form input:active, .contact form textarea:focus, .contact form textarea:active {
    border-color: var(--dark50);
}

.contact form input.error, .contact form textarea.error {
    border-color: var(--danger);
}

.contact form input::-webkit-input-placeholder, .contact form textarea::-webkit-input-placeholder {
    font-weight: 200;
}

.contact form input:-ms-input-placeholder, .contact form textarea:-ms-input-placeholder {
    font-weight: 200;
}

.contact form input::-ms-input-placeholder, .contact form textarea::-ms-input-placeholder {
    font-weight: 200;
}

.contact form input::placeholder, .contact form textarea::placeholder {
    font-weight: 200;
}

.contact form .textarea-wrapper {
    position: relative;
}

.contact form .textarea-wrapper > span {
    font-size: var(--xs);
    color: var(--dark50);
    position: absolute;
    bottom: .5rem;
    right: 1.5rem;
}

.contact form .file-input {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background: var(--dark10);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0 .5rem;
    opacity: 1;
    -webkit-transition: var(--trans);
    transition: var(--trans);
}

.contact form .file-input:hover {
    opacity: .8;
}

.contact form .file-input:hover span {
    opacity: .6;
}

.contact form .file-input span {
    font-size: 28px;
    -webkit-transition: var(--trans);
    transition: var(--trans);
}

.contact form .file-input img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.contact form .file-input input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.contact form .btn {
    max-width: 300px;
    margin: 2rem auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.search-input {
    position: relative;
    max-width: 350px;
    margin: 1rem auto;
}

.search-input input {
    padding: .75rem .5rem;
    width: 100%;
    background: white;
    border: 1px solid var(--dark10);
    border-radius: 6px;
    -webkit-transition: var(--trans);
    transition: var(--trans);
    outline: none;
}

.search-input input:focus, .search-input input:active {
    border-color: var(--dark50);
}

.search-input input::-webkit-input-placeholder {
    font-weight: 200;
}

.search-input input:-ms-input-placeholder {
    font-weight: 200;
}

.search-input input::-ms-input-placeholder {
    font-weight: 200;
}

.search-input input::placeholder {
    font-weight: 200;
}

.search-input img {
    position: absolute;
    right: .5rem;
    top: calc(50% - 8px);
}

.accordion-item {
    padding: 1rem;
    --bs-accordion-border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--prim20);
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    background: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.accordion-item:hover .accordion-button, .accordion-item:hover .accordion-button:before {
    color: var(--prim80);
}

.accordion-item .accordion-button {
    color: var(--prim);
    font-weight: 600;
    font-size: var(--l);
    -webkit-transition: var(--trans);
    transition: var(--trans);
}

@media (max-width: 767px) {
    .accordion-item .accordion-button {
        padding-right: 2rem;
    }
}

.accordion-item .accordion-button:before {
    content: "-";
    color: var(--prim);
    font-size: 30px;
    position: absolute;
    right: 1px;
    top: -2px;
    line-height: 1;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.accordion-item .accordion-button.collapsed:before {
    content: "+";
    font-size: 26px;
    top: 0;
    right: 0;
}

.accordion-item .accordion-collapse p {
    margin-top: 1rem;
}

.width-25-px {
    width: 25px !important;
}

.grecaptcha-badge {
    display: none;
}
