* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: rgb(44,59, 142);
}

body {
    height: 150vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

#navbar {
    display: flex;
    justify-content: center;
    position: fixed;
    background-color: #ffffff;
    width: 100%;
    border-bottom: 1px solid rgb(24,221, 152);
    padding: 1rem;
    z-index: 5;
}
.navbar-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
}

.logo img {
    height: 40px;
    transition: height 0.5s ease;
}

#navbar.shrink .logo img {
    height: 20px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}
.nav-links a {
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 1s;
}

.nav-links a:hover {
    
}

#navbar.shrink .nav-links {
    display: none;
}
#navbar.shrink .single-link {
    display: block;
    text-decoration: none;
    padding: 0.1rem 0.3rem 0.1rem 0.5rem;
    font-weight: 600;
    font-size: 0.7rem;
    color: rgb(44,59, 142);
    box-shadow: 0 0 0 1px rgb(44,59, 142);
    border-radius: 2rem;
}
#navbar.shrink .single-link:hover {
    box-shadow: 0 0 0 2px rgb(44,59, 142);
}

.single-link{
    display: none;
}

#menuToggle{
    display: none;
}

.client-session {
    padding: 0.2rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 0 0 1px rgb(44,59, 142);
}

.client-session:hover {
    box-shadow: 0 0 0 2px rgb(44,59, 142);
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    position: absolute;
    align-items: center;
    top: 20rem;
    left: 50%;
    z-index: 0;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    border: 1px solid rgba(24, 221, 152, 0.3);
    animation: appear 0.5s ease-in forwards;
}

.circle::before,
.circle::after,
.circle .circle-extra,
.circle .circle-estra-ii {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.circle::before {
    width: 200%;
    height: 200%;
    border: 1px solid rgba(24, 221, 152, 0.3);
    animation: appear 0.5s ease-in forwards 0.5s;
}

.circle::after {
    width: 300%;
    height: 300%;
    border: 1px solid rgba(24, 221, 152, 0.3);
    animation: appear 1.0s ease-in forwards 0.5s;
}

.circle .circle-extra {
    width: 400%;
    height: 400%;
    border: 1px solid rgba(24, 221, 152, 0.3);
    animation: appear 1.3s ease-in forwards 0.8s;
}

.circle-estra-ii {
    width: 500%;
    height: 500%;
    border: 1px solid rgba(24, 221, 152, 0.3);
    animation: appear 1.6s ease-in forwards 1.1s;
}

@keyframes appear {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.center-bnner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:60%;
    height: 55rem;
    z-index: 1;
}

.tittle-central {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
}

.line{
    background-image: url(../assets/line.png);
    background-repeat: no-repeat;
    background-position-y: 100%;
    background-size: 100%;
    font-weight: 700;
}

.subTittle-central {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    width: 60%;
    color: rgb(44,59, 142, 0.5);
    padding-top: 2rem;
}

.subTittle-central-ii{
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    width: 60%;
    color: rgb(44,59, 142, 0.5);
    padding-top: 5rem;
}

.service-title{
    width: 100%;
    font-size: 0.8rem;
    padding-top: 0rem;
    color: rgb(44,59, 142, 1);
}

.services-module-border-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 75%;
    margin-top: 2rem;
    border-radius: 1.5rem;
    padding: 1rem;
    background-color: rgb(238, 240, 246);
    border: 1px solid rgb(44,59, 142, 0.2);
}

.service-i{
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    margin-right: 1rem;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgb(44,59, 142, 0.2);
    transition: 0.5s;
}

.service-i:hover{
    transform: scale(1.1);
    transition: 0.5s;
}

.service-l{
    margin-right: 0rem;
}

.icon-service{
    width: fit-content;
    margin-bottom: 0.5rem;
}

.botton-contact-i-a{
    margin-top: 3rem;
}

.botton-contact-i{
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background-color: rgb(24,221, 152);
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    border: none;

    -webkit-transition: background-color 500ms linear;
    -moz-transition: background-color 500ms linear;
    -o-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}

.botton-contact-i:hover {
    background-color: rgb(18, 153, 106);
}

.video-inst-center{
    padding-top: 10rem;
}

.video-inst{
    width: 1011px;
    height: 566px;
    border-radius: 1rem;
    border: none;
    position: relative;
}

.differences{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 80%;
    padding-top: 10rem;
}

.differences-tittle{
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.differences-subtittle{
    width: 60%;
    text-align: center;
    color: rgb(44,59, 142, 0.5);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2rem;
    padding: 3rem 0rem 3rem 0rem;
}

.all-differences{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.differences-specific{
    display: flex;
    justify-content: space-between;
    margin: 5rem 0rem 5rem 0rem;
    gap: 2rem;
}

.differences-number{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(44,59, 142);
    background-color: rgba(44, 59, 142, 0.5);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin-top: 5rem;
}

.differences-number p{
    text-align: center;
    color: rgb(44,59, 142);
    font-size: 2.5rem;
    font-weight: 700;
}

.differences-texts{
    width: 40%;
    display: flex;
    flex-direction: column;
    margin: 5rem 0rem 0rem 0rem;
}

.differences-specific-tittle{
    text-align: left;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2rem;
    margin-bottom: 1.5rem;
}

.differences-specific-content{
    text-align: left;
    font-weight: 500;
    color: rgb(44,59, 142, 0.5);
    font-size: 1.4rem;
    line-height: 1.7rem;
}

.differences-img{
    width: 50%;
}

.differences-img img{
    width: 100%;
}

.differences-visible{
    display: none;
}

.special{
    display: flex;
    justify-content: center;
    width: 100%;
    background: linear-gradient(50deg, rgba(44,59,142,1) 0%, rgba(24,221,152,1) 100%);
    margin: 5rem 0rem 5rem 0rem;
}

.special-center{
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

.special-tittle{
    width: 60%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 6rem;
}

.special-subtittle{
    width: 75%;
    text-align: center;
    color: #ffffffc4;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6rem;
    padding: 1rem 0rem 2rem 0rem;
}

.botton-contact-s{
    font-size: 1rem;
    font-weight: 700;
    color: rgba(44,59,142);
    text-decoration: none;
    background-color: #ffffff;
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 4rem;
    cursor: pointer;
    border: none;

    -webkit-transition: background-color 500ms linear;
    -moz-transition: background-color 500ms linear;
    -o-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}

.botton-contact-s:hover {
    background-color: #cccccc;
}

.img-perfil-1{
    height: 125px;
    position: absolute;
    left: -5rem;
    bottom: 8rem;
}

.img-perfil-3{
    height: 90px;
    position: absolute;
    left: 1rem;
    top: 3rem;
}

.img-perfil-2{
    height: 125px;
    position: absolute;
    right: -4rem;
    top: 2rem;
}

.img-perfil-4{
    height: 90px;
    position: absolute;
    right: -5rem;
    bottom: 8rem;
}

.tittle-values {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

.tittle-values-show{
    font-weight: 700;
    background-color: rgb(44,59, 142);
    color: #ffffff;
    border-radius: 3rem;
    padding: 0rem 1.5rem 0rem 1.5rem;
}

.values{
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 5rem 0rem 15rem 0rem;
}

.values-division-i{
    display: flex;
    justify-content: center;
    align-items: flex;
    flex-direction: column;
    width: 45%;
    margin-top: 8rem;
}

.values-division-ii{
    display: flex;
    justify-content: center;
    width: 55%;
}

.collapsible {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(44,59, 142);
    background-color: #ffffff;
    cursor: pointer;
    padding: 2rem 2rem 2rem 0rem;
    width: 100%;
    border: none;
    border-top: none;
    text-align: left;
}
  
.active, .collapsible:hover {
}
  
.collapsible:after {
    content: '\002B';
    float: right;
}
  
.active:after {
    content: "\2212";
}
  
.content {
    padding: 0rem 2rem 0rem 0rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;

    font-size: 1rem;
    color: rgb(172, 177, 127);
}

.values-text{
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(44,59, 142, 0.5);
    padding: 0rem 0rem 1.5rem 0rem;
}

.iphone{
    width: 25rem;
    max-height: 100%;
    position: absolute;
    z-index: 1;
}

.pulse{
    position: absolute;
    height: 700px;
    width: 700px;
    border: 1px solid rgb(24,221, 152);
    border-radius: 700px;
    animation: pulse 6s ease-out infinite;
    opacity: 0;
}

.pulse:nth-child(1) {
    animation-delay: 0s;
}

.pulse:nth-child(2) {
    animation-delay: 2s;
}

.pulse:nth-child(3) {
    animation-delay: 4s;
}

.pulse:nth-child(4) {
    animation-delay: 6s;
}

@keyframes pulse {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.testimonial-tittle{
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 5rem 0rem 3rem 0rem;
}

.testimonial-subtittle{
    width: 60%;
    text-align: center;
    color: rgb(44,59, 142, 0.5);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2rem;
    padding-bottom: 5rem;
}

.testimonal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 70%;
    margin-bottom: 5rem;
    gap: 1.5rem;
    background: radial-gradient(circle closest-side, rgb(24, 221, 152) 0%, rgba(44, 59, 142, 0.1) 90%, rgba(44, 59, 142, 0) 100%);
}

.testimonal-c1, .testimonal-c3{
    display: flex;
    flex-direction: column;
    flex-basis: 25%;
    gap: 1.5rem;
}
.testimonal-c2{
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    gap: 1.5rem;
}

.testimonal-center-focus{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.testimonal-center-focus .testimonial-specific{
    justify-content: space-between;
    width: 48%;
    height: fit-content;
    margin-bottom: 1.5rem;
}

.testimonial-specific{
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4rem;
    color: rgb(44,59, 142);
    background-color: #ffffff;
    border: 1px solid rgb(44,59, 142, 0.15);
    transition: 0.5s;
}

.testimonal-visible{
    display: none;
}

.testimonial-specific:hover{
    transform: scale(1.05);
    transition: 0.5s;
}

.text-focus{
    line-height: 1.8rem;
    font-weight: 550;
    font-size: 1.2rem;
}

.testimonial-sign{
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.testimonial-img{
    height: 2.5rem;
}

.testimonial-name{
    display: flex;
    flex-direction: column;
    line-height: 1rem;
    margin-left: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.testimonial-social{
    line-height: 1rem;
    margin-left: 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgb(44,59, 142, 0.5);
}

.banner-bussines-man{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 30rem;
    background-image: url(../assets/man.png);
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
}

.message-final{
    display: flex;
    align-items: center;
    width: 60%;
}

.message-final-in{
    display: flex;
    width: 100%;
    flex-direction: column;
}

.tittle-message-final{
    width: 60%;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    padding: 0rem 0rem 2rem 0rem;
	-webkit-text-stroke: 1px #F8F8F8;
	text-shadow: 0px 1px 4px #23430C;
}

.botton-contact {
    padding: 7px 18px 7px 18px;
    background-color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.fotter-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 8rem;
    background: linear-gradient(90deg, rgba(24,221,152,1) 0%, rgba(44,59,142,1) 100%);
}

.logo-white-footer {
    height: 40%;
}

.footer-midias {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 5rem;
    background: linear-gradient(90deg, rgba(24,221,152,0.8995973389355743) 0%, rgba(44,59,142,0.896796218487395) 100%);
}

.center-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.text-footer {
    color: #ffffff;
    font-size: 0.8rem;
}

.img-media-footer {
    padding: 0rem 0rem 0rem 1rem;
}

@media (max-width: 1500px) {
    .navbar-center {
        width: 95%;
    }

    .center-bnner {
        width: 95%;
    }

    .video-inst{
        width: 758.5px;
        height: 424.5px;
    }

    .differences-texts{
        width: 80%;
    }

    .differences-img{
        display: none;
        width: 70%;
    }

    .differences-visible{
        display: flex;
    }

    .special-center{
        width: 95%;
    }

    .img-perfil-1{
        left: 2rem;
        bottom: 2rem;
    }

    .img-perfil-3{
        left: 5rem;
        top: 3rem;
    }

    .img-perfil-2{
        right: 2rem;
        top: 3rem;
    }

    .img-perfil-4{
        right: 10rem;
        bottom: 3rem;
    }

    .tittle-message-final {
        font-size: 2.5rem;
    }

    .message-final{
        width: 75%;
    }

    .banner-bussines-man {
        height: 25rem;
        background-position: 75%;
    }

    .testimonal {
        width: 95%;
    }

}

@media (max-width: 850px) {
    .tittle-central {
        font-size: 3rem;
        width: 80%;
    }

    .line{
        font-size: 3rem;
    }

    .subTittle-central {
        font-size: 1.2rem;
        width: 85%;
    }
    
    .subTittle-central-ii{
        font-size: 1rem;
        padding-top: 2rem;
    }

    .service-title{
        font-size: 0.8rem;
    }

    .services-module-border-wrap{
        flex-wrap: wrap;
        justify-content: space-between;
        width: 60%;
        gap: 1rem;
    }

    .service-i{
        width: 45%;
        height: auto;
        margin-right: 0rem;
    }

    .service-i-t{
        margin-right: 0rem;
    }

    .service-i-b{
        margin-top: 1rem;
    }

    #navbar .logo img {
        height: 20px;
    }

    .nav-links{
        display: none;
    }

    #navbar.shrink .single-link {
        display: none;
    }

    .single-link{
        display: none;
    }

    .hamb-menu{
        display: flex;
    }

    #menuToggle{
        display: block;
        position: relative;
        -webkit-user-select: none;
        user-select: none;
        }

    #menuToggle a{
        text-decoration: none;
        }

    #menuToggle input{
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        -webkit-touch-callout: none;
        }

    #menuToggle span{
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: rgb(44,59, 142);
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
        }

    #menuToggle span:first-child{
        transform-origin: 0% 0%;
        }

    #menuToggle span:nth-last-child(2){
        transform-origin: 0% 100%;
        }

    #menuToggle input:checked ~ span{
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: rgb(44,59, 142);
        }

    #menuToggle input:checked ~ span:nth-last-child(3){
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
        }

    #menuToggle input:checked ~ span:nth-last-child(2){
        transform: rotate(-45deg) translate(0, -1px);
        }

    #menu{
        position: absolute;
        width: 300px;
        margin: -100px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;
        height: 100rem;
        background: rgb(24,221, 152);
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(100%, 0%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        }

    #menu li{
        padding: 10px 0;
        font-size: 22px;
        }

    #menuToggle input:checked ~ ul{
        transform: translate(-60%, 0%);
        }

    .center-banner{
        background-size: 200%;
        background-position-y: 100%;
    }

    .video-inst{
        width: 505.5px;
        height: 283px;
    }

    .differences{
        width: 90%;
    }

    .differences-subtittle{
        width: 100%;
        padding: 3rem 0rem 0rem 0rem;
    }

    .differences-texts{
        width: 80%;
    }

    .differences-img{
        display: none;
        width: 100%;
    }

    .differences-visible{
        display: flex;
    }

    .special-center{
        width: 95%;
        margin: 5rem 0rem 4rem 0rem;
    }

    .special-tittle{
        width: 95%;
    }

    .special-subtittle{
        width: 95%;
    }
    
    .img-perfil-1{
        left: 3rem;
        bottom: -1rem;
    }

    .img-perfil-3{
        top: -1rem;
    }

    .img-perfil-2{
        right: 3rem;
        top: -3rem;
    }

    .img-perfil-4{
        right: 7rem;
        bottom: 2rem;
    }

    .values{
        width: 95%;
        flex-direction: column;
        margin: 0rem 0rem 45rem 0rem;
    }

    .values-division-i{
        width: 100%;
    }

    .tittle-values{
        width: 100%;
    }

    .tittle-values br{
        display: none;
    }

    .values-division-ii{
        width: 100%;
    }

    .tittle-message-final {
        font-size: 2rem;
    }

    .banner-bussines-man {
        height: 20rem;
    }

    .message-final {
        width: 90%;
    }

    .banner-bussines-man{
        background-position: 75%;
    }

    .testimonial-subtittle{
        width: 95%;
    }

    .testimonal-c1, .testimonal-c3{
        display: none;
    }

    .testimonal-visible{
        display: flex;
    }

    .testimonal-c2{
        flex-basis: 95%;
    }

    .center-footer{
        width: 95%;
    }

}

@media (max-width: 600px) {

    #navbar .logo img {
        height: 30px;
    }

    .tittle-central {
        width: 100%;
        font-size: 2.5rem;
        font-weight: 700;
        margin-top: 4rem;
        margin-bottom: 2rem;
    }

    .line{
        font-size: 2.5rem;
    }

    .subTittle-central {
        font-size: 1rem;
        width: 90%;
    }

    .subTittle-central-ii{
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .services-module-border-wrap{
        justify-content: space-around;
        width: 90%;
        border-radius: 1rem;
        gap: 0.8rem;
    }

    .service-title{
        font-size: 0.7rem;
    }

    .service-i-b{
        margin-top: 0.7rem;
    }

    .circle {
        width: 7rem;
        height: 7rem;
    }

    .video-inst-center{
        width: 95%;
        padding-top: 3rem;
    }

    .video-inst{
        width: 100%;
        height: 224px;
    }

    .differences{
        width: 95%;
        padding-top: 5rem;
    }

    .differences-tittle{
        font-size: 2.5rem;
    }

    .differences-subtittle{
        width: 95%;
        font-size: 1rem;
        line-height: 1.4rem;
        padding-top: 3rem;
    }

    .differences-specific{
        margin: 0rem 0rem 3rem 0rem;
        gap: 2rem;
    }

    .differences-number{
        width: 3rem;
        height: 3rem;
        margin-top: 3rem;
    }
    
    .differences-number p{
        font-size: 1.5rem;
    }

    .differences-texts{
        margin-top: 3rem;
    }
    
    .differences-specific-tittle{
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin-bottom: 1rem;
    }

    .differences-specific-content{
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .special-center{
        width: 95%;
    }

    .special-tittle{
        width: 95%;
        font-size: 2rem;
        margin-top: 6rem;
    }

    .special-subtittle{
        width: 95%;
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .img-perfil-1{
        height: 75px;
        left: 1rem;
        bottom: 0rem;
    }
    
    .img-perfil-3{
        height: 65px;
        left: 2rem;
        top: -1rem;
    }
    
    .img-perfil-2{
        height: 110px;
        right: 0rem;
        top: -2rem;
    }
    
    .img-perfil-4{
        height: 115px;
        right: 0rem;
        bottom: -3rem;
    }

    .values{
        width: 95%;
        margin-bottom: 30rem;
    }

    .values-division-i{
        width: 100%;
        margin-top: 0rem;
    }

    .tittle-values {
        font-size: 2.5rem;
        margin-bottom: 5rem;
    }

    .tittle-values br{
        display: none;
    }

    .collapsible {
        font-size: 1.2rem;
        padding: 1rem 1rem 1rem 0rem;
        width: 100%;
    }

    .values-text{
        font-size: 1rem;
        padding: 0rem 0rem 1.5rem 0rem;
    }

    .iphone{
        width: 60%;
    }

    .pulse{
        height: 500px;
        width: 500px;
        border-radius: 500px;
      }

    .testimonial-tittle{
        font-size: 2.5rem;
        margin: 5rem 0rem 3rem 0rem;
    }

    .testimonial-subtittle{
        width: 95%;
        font-size: 1.2rem;
        line-height: 1.4rem;
    }

    .text-focus{
        line-height: 1.4rem;
        font-weight: 500;
        font-size: 1rem;
    }

    .testimonial-specific{
        font-size: 0.8rem;
        line-height: 1rem;
    }

    .testimonial-specific .testimonial-name .testimonial-social{
        line-height: 0.7rem;
        font-weight: 700;
    }

    .tittle-message-final{
        font-size: 1.3rem;
        font-weight: 700;
    }

    .img-media-footer {
        padding: 0rem 0rem 0rem 0.5rem;
    }

    .text-footer {
        font-size: 0.7rem;
    }

}