﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 100%;
}

.wrap {
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1620px;
    margin: 0 auto;
    display: block;
    width: 80%;
}

:root {
    --cor-padrao-um: #1e3563;
    --cor-padrao-dois: #c81f26;
    --white-text: #fff;
    --banner-principal: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(86,160,185,1) 100%);
    --cor-texto-header: #333;
}

.sec-bannerPrincipal {
    margin-bottom: 10em;
    padding-top: 100px;
    filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 0.5));
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 90vh;
    display: flex;
    align-items: center;
/*    background-position: center !important;*/
}

.left-banner {
    width: 60%;
    margin-bottom: 85px;
    padding: 0 15px;
}

.left-banner > div {
    display: flex;
    grid-gap: 20px;
    align-items: center;
}

.right-banner {
    margin-bottom: auto;
    width: 50%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    grid-gap: 20px;
}

.align-imgbanner {
    padding-top: 5em;
    text-align: center;
    display: flex;
}

.topnav {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-right: auto;
    margin-left: 30px;
    height: 100%;
    line-height: initial;
    background-color: initial;
    box-shadow: initial;
    width: initial;
}

    .topnav ul {
        display: flex;
        grid-gap: 20px;
    }

.sec-cards .title-plans {
    margin-bottom: 25px !important;
}

.ans {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.modal-mask {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,.20);
    z-index: 10;
}

.modal {
    background: white;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    min-width: 300px;
    max-width: 600px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    -webkit-transition: all .2s;
}

.modal-mask {
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.btn-modal {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: white;
    border: 1px solid #d1d1d1;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}

.modal-cadastro.active {
    opacity: 1;
}

.modal-popup.active {
    opacity: 1;
}

.modal-mask.active {
    opacity: 1;
    pointer-events: initial;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.active {
    top: 50%;
    opacity: 1;
    pointer-events: initial;
}

#infoHidded {
    font-size: 20px;
    padding: 30px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 115px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    transition: 0.5s all;
    -moz-transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -webkit-box-shadow: 0px -24px 84px 1px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px -24px 84px 1px rgba(0,0,0,0.75);
    box-shadow: 0px -4px 15px -1px rgb(0 0 0 / 75%);
    position: fixed;
}

.bloco2-list-info {
    align-self: center;
    width: 50%;
    text-align: right;
}

.menu-before {
    position: fixed;
    z-index: -1;
    top: -1px;
    left: 0;
    width: 100%;
    height: 0px;
    background: rgba(255, 255, 255, 0.80);
    border-bottom: 1px solid #f5f5f5;
    transition: .5s ease-out;
    -webkit-transition: .2s ease-out;
    backdrop-filter: blur(4px);
}

    .menu-before.active {
        height: 100px;
    }

.logo {
    width: 130px;
    max-width: 100%;
    margin-top: 7px;
}

.logo2 {
    margin-left: 10px;
    width: 70px;
    max-width: 100%;
    margin-top: 7px;
}

.svg-phone {
    fill: var(--cor-padrao-dois);
    transform: scale(0.5);
}

.tel-header {
    color: var(--cor-padrao-dois);
    font-size: 18px;
    font-weight: bold;
    margin-right: 20px;
    font-family: sans-serif;
    text-decoration: none;
}

.menu nav ul li {
    display: inline;
}

    .menu nav ul li a {
        text-decoration: none;
        font-size: 16px;
        color: var(--cor-texto-header);
        font-weight: bold;
    }

        .menu nav ul li a.active {
            color: #272727;
            font-weight: 600;
        }

            .menu nav ul li a.active::after {
                content: '';
                position: absolute;
                bottom: 5px;
                left: 50%;
                transform: translateX(-50%);
                width: 5px;
                height: 5px;
                border-radius: 50px;
                background: #1E89EB;
            }

.btn {
    border-radius: 40px;
    background: var(--cor-padrao-dois);
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 4px 6px 0px rgb(0 0 0 / 5%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: ease-in-out 0.3s;
    font-size: 17px;
    min-width: 220px;
    padding: 15px 10px;
    max-width: 245px;
    max-height: 50px;
    height: initial;
    text-transform: initial;
}

.details-box {
    position: absolute;
    top: 78em;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    border-color: rgba(86,160,185,1);
    padding: 20px;
    transition: all 0.3s;
    opacity: 1;
}

.list-inside-cards {
    font-size: 18px;
    display: inline-grid;
    grid-gap: 18px;
    list-style: none;
}

.color-svg {
    max-width: 70px;
    background-color: var(--cor-padrao-dois);
    color: var(--white-text);
    border-radius: 10px;
    padding: 15px;
    margin-right: 20px;
    min-width: 70px;
    fill: var(--white-text);
}

.content-icons > div h4 {
    color: var(--cor-padrao-um);
    font-weight: bold;
    font-size: 20px;
}

.content-icons > div {
    display: inline-grid;
    grid-gap: 5px;
    padding: 15px 0;
}

.space-div {
    margin-top: 10em;
    margin-bottom: 10em;
}

.content-icons {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 0px 20px;
    border-radius: 20px;
}

.list-info {
    background-color: #f7f7f7;
    padding: 20px 0px 8em 0px;
    margin-bottom: 0;
}

    .list-info .title-plans {
        margin-bottom: 25px !important;
    }

.text-list-info {
    margin-bottom: 30px;
    font-size: 22px;
    width: 50%;
}

.flexing-div {
    display: flex;
    place-content: space-between;
    grid-gap: 70px;
}

.responsive-img {
    max-width: 100%;
    width: 600px;
    vertical-align: text-top;
}

.spacing-icons {
    display: inline-grid;
    grid-gap: 20px;
    width: 50%;
}

.cards-unity {
    background-color: white;
    border-radius: 0px 30px 0px 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 330px;
    height: auto;
    max-width: 400px;
}

.owl-carousel .owl-stage-outer {
    width: 101%;
}

.inside-card {
    height: 100%;
    padding: 25px;
    display: flex;
    grid-gap: 25px;
    border: 1px solid var(--cor-padrao-um);
    border-radius: 0px 0px 0px 30px;
    min-height: 430px;
    flex-direction: column;
}

.list-inside-cards span {
    color: rgba(86,160,185,1);
    font-weight: bold;
}

.price-plans {
    font-size: 30px;
    font-weight: bold;
    font-family: sans-serif;
}

.title-cards {
    background: var(--cor-padrao-um);
    padding: 25px;
    color: var(--white-text);
    font-size: 25px;
    min-height: 130px;
    display: inline-grid;
    align-items: center;
}

.title-plans {
    text-align: left;
    font-size: 55px;
    color: var(--cor-padrao-um);
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    font-weight: bold;
}

.menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.section-1 {
    height: 95vh;
    width: 100%;
    position: relative;
    padding-top: 100px;
    min-height: 900px;
}

.title-h1 {
    font-weight: bold;
    color: var(--cor-padrao-um);
    margin-bottom: 25px;
    font-size: 65px;
    margin-top: 20px;
    text-shadow: 1px 1px 3px #ffffff;
}

.pcuidevoce {
    width: 100%;
}

.bold-h1 {
    color: #2683a3;
}

.p-banner {
    font-size: 25px;
    text-align: left;
    font-weight: 600;
}

.sec-bannerPrincipal .btn-color1 {
    margin-top: 3em;
    min-width: 200px;
    max-width: 200px;
    background: var(--cor-padrao-dois);
    box-shadow: 2px 2px 2px #b3b3b3;
}

.second-btn-banner {
    background: #fff !important;
    border: 1px solid #245c6e;
    color: #245c6e;
}

/*Scroll color*/
::-webkit-scrollbar {
    width: 10px;
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    height: 50px;
    border-radius: 20px;
}

.contact-banner {
    background: rgb(0 0 0 / 65%) url(../img/contato.png);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: darken;
    min-height: 600px;
    display: flex;
    align-items: center;
    height: auto;
}

.oncolor {
    color: #fff;
    margin-top: 0;
    padding-top: 1.5em;
    margin-bottom: 40px;
    text-align: center;
}

.box-banner {
    align-items: center;
    background-color: #6e6e6e;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px #6e6e6e;
    place-self: center;
    max-width: 250px;
    color: #fff;
}

    .box-banner p {
        font-size: 29px;
        font-weight: bold;
    }

.hand-banner {
    width: 14%;
    position: relative;
    top: 20px;
    margin-left: 15px;
}

.box-banner .p-box-banner {
    font-size: 17px;
    margin-top: 15px;
    font-weight: 500;
}

.box-banner-logos {
    display: inline-grid;
    justify-items: center;
    align-content: center;
}

.img-logo {
    width: 200px;
}

.img-logo2 {
    width: 185px;
}

.img-logo3 {
    height: 100px;
    width: 25px;
}

.p-oncolor {
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.svg-contact {
    fill: #fff;
    width: 40px;
}

.btn-color1 {
    background: var(--cor-padrao-dois);
    /*    box-shadow: 2px 2px 2px #373799;*/
    border: 1px solid white;
}

.btn-color2 {
    text-align: center;
    background: white;
    border: 2px solid #373799;
    color: #373799;
    box-shadow: 2px 2px 2px #7e7e7e;
}

.align-btns {
    display: flex;
    place-content: center;
    margin-top: 50px;
    padding-bottom: 50px;
    grid-gap: 35px;
}

.logo-contato {
    width: 265px;
}

.logo-contato1 {
    width: 100px;
    margin-top: 7px;
}

.logo-contato2 {
    width: 150px;
}

.footer {
    margin-bottom: 0px;
    background: #484848;
    position: relative;
    color: #f9f9f9;
    text-align: center;
    z-index: 99;
    padding-bottom: 2px;
}

.set-width-footer {
    width: 33%;
}

.align-img-footer {
    width: 33%;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.width50 {
    width: 50%;
}

.flex-div-footer {
    display: flex;
    grid-gap: 120px;
    margin-bottom: 20px;
}

.bottom-footer {
    place-items: center;
    margin-top: 15px;
    margin-bottom: 0;
}

.align-img-footer responsive-img {
    width: 200px;
}

.pulse {
    animation: animate-pulse 3s linear infinite;
}

/*Form contato*/

.form-contato {
    padding-top: 4em;
    padding-bottom: 4em;
}

    .form-contato .content-icons {
        width: 640px;
        max-width: 100%;
        padding: initial;
        background-color: initial;
        color: #fff;
    }

.form-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.div-50 {
    width: 50%;
}

.div-100 {
    width: 100%;
}

.form-contato .content-icons .flexing-div {
    gap: 20px;
}

.form-contato .content-icons input, textarea {
    width: 100%;
    padding: 10px;
    transition: all .2s;
    margin-top: 10px;
    border: 1px solid #dadada;
    background: #fff;
    border-radius: 6px;
    font-family: sans-serif;
    resize: none;
}

.form-contato .content-icons textarea {
    min-height: 120px;
    overflow: auto;
}

.form-contato .content-icons h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.form-contato .p-form {
    margin-bottom: 15px;
}

.form-contato .p-concorda-termos {
    text-align: center;
    color: #aaaaaa;
    margin-top: 25px;
}

.form-contato .input-group {
    margin-bottom: 15px;
}

    .form-contato .input-group button {
        background: #529ae3;
        border: none;
        min-width: initial;
        width: 120px;
    }

.form-contato .inside-form .for-btn {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.form-contato textarea::placeholder {
    color: #aaaaaa; /* Cor do texto do placeholder */
    font-size: 12px; /* Tamanho da fonte */
    text-align: center;
    padding-top: 40px;
    font-size: 18px;
}

.div-captcha {
    display: flex;
    place-content: center;
}

.contato-buttons {
    padding-top: 4em;
    padding-bottom: 4em;
    background-color: whitesmoke;
}

    .contato-buttons .oncolor {
        color: var(--cor-padrao-dois);
    }

    .contato-buttons .p-oncolor {
        color: var(--cor-padrao-dois);
    }

.input-custom-error {
    border-color: #ed6f6f !important;
    background-color: #ed6f6f30 !important;
}

.width50 {
    width: 50%;
}

.width70 {
    width: 70%;
}

width30 {
    width: 30%;
}

/*Fim Form contato*/

/*footer*/

.site-footer {
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #000000;
    background: #fff;
    bottom: 0;
    width: 100%;
}

    .site-footer hr {
        border-top-color: #bbb;
        opacity: 0.5
    }

        .site-footer hr.small {
            margin: 20px 0
        }

    .site-footer h6 {
        color: #000;
        font-size: 16px;
        text-transform: uppercase;
        margin-top: 5px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .site-footer a:hover {
        color: #3366cc;
        text-decoration: none;
    }

.footer-links {
    padding-left: 0;
    list-style: none
}

    .footer-links li {
        display: block;
        margin-bottom: 5px;
    }

    .footer-links a {
        color: #000;
        font-size: 18px;
        text-decoration: none;
        font-family: sans-serif;
    }

        .footer-links a:active, .footer-links a:focus, .footer-links a:hover {
            color: #3366cc;
            text-decoration: none;
        }

    .footer-links.inline li {
        display: inline-block
    }

.site-footer .social-icons {
    text-align: right
}

    .site-footer .social-icons a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-left: 6px;
        margin-right: 0;
        background-color: #e7e7e7;
        border: 1px solid #bfbfbf;
    }

.copyright-text {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
}

.list-width-meio {
    width: 50%;
}

.div-btn-simulacao {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #245c6e;
}

.ans-footer {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.ans img {
    max-width: 100%;
    width: 130px;
}

.list-faq {
    margin-left: 10px;
}

.secFaq {
    padding-top: 6em;
}

.h1-faq {
    text-align: center;
    margin-top: 2em;
    margin-bottom: 1em;
    padding: 25px;
    color: var(--cor-padrao-dois);
    font-weight: 500;
}

.box-questions {
    background-color: white;
    width: 70%;
    border-radius: 20px;
    box-shadow: 5px 5px 5px 0 rgb(0 0 0 / 20%);
    margin-bottom: 50px;
}

.pad-s12 {
    padding: 25px !important;
}

.regionsNational .collapsible {
    width: 100%;
    margin: 0 auto;
    border: initial;
    margin-bottom: 30px;
}

.align-ans-logo {
    /*background-color: #ffffff69;*/
    border-radius: 10px;
    flex-direction: column;
    overflow: hidden;
    height: auto;
    /*box-shadow: 5px 0px 3px rgb(167 167 167);*/
    padding: 10px;
    display: inline-grid;
    justify-items: center;
    grid-gap: 5px;
}

@media (max-width: 2050px) {
    .left-banner {
        width: 100%;
    }
}

@media (max-width: 1500px) {
    
    .container {
        width: 90%;
    }
}

@media (max-width: 1300px) {
    .inside-card {
        min-height: 490px;
        justify-content: space-between;
    }
}

@media (max-width: 1250px) {
    .align-imgbanner {
        display: inline-grid;
        padding-top: 1em;
    }

    .left-banner {
        width: 100%;
    }

    .right-banner {
        width: 100%;
    }

    .menu {
        height: 80px;
    }

    .list-width-meio {
        width: 100%;
    }

    .width50, .width70, .width30 {
        width: 100%;
    }

    .width60 {
        width: 100%;
    }

    .flexing-div {
        display: inline-grid;
    }

    .spacing-icons {
        width: 100%;
    }

    .bloco2-list-info {
        width: 100%;
        text-align: center;
    }

    .cards-unity {
        width: 100%;
        max-width: 500px;
    }

    .blocos {
        display: inline-grid;
        width: 100%;
        justify-content: center;
    }

    .align-btns {
        display: inline-grid;
        width: 100%;
    }

    .flex-div-footer {
        display: inline-grid;
        grid-gap: 40px;
    }

    .width50 {
        width: 100%;
    }

    .sec-bannerPrincipal {
        margin-bottom: 5em;
        padding-top: 135px;
    }

    .navbar-collapse {
        display: block;
    }

    .space-div {
        margin-top: 5em;
        margin-bottom: 0;
    }

    .site-footer .social-icons {
        text-align: left !important;
    }

    .site-footer .social-icons a {
        margin-left: 0;
        margin-right: 6px;
    }

    .div-btn-simulacao {
        display: none;
    }

    .sec-bannerPrincipal .btn-color1 {
        margin-top: 2em;
    }

    .btn {
        min-width: 200px;
        text-align: center;
    }

    .align-img-footer {
        grid-gap: 20px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .topnav {
        position: fixed;
        left: -100%;
        top: 75px;
        gap: 15px;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        opacity: 0;
        height: auto;
    }

    .topnav.active {
        left: 0;
        border-top: 1px solid #e3e3e3;
        border-bottom: 1px solid #e3e3e3;
        margin-left: unset;
        box-shadow: unset;
        top: 80px;
        height: auto;
        opacity: 1;
    }

    .topnav.active ul {
        display: inline-grid;
        grid-gap: 20px;
        margin: 25px 0px;
    }

    .align-img-footer .logo-contato1 {
        min-width: 70px;
        margin-top: 7px;
    }

    .align-imgbanner {
        padding-top: 1em;
        flex-direction: column;
        width: 100%;
    }

    .left-banner > div {
        flex-direction: column;
    }

    .title-h1 {
        text-align: center;
        font-size: 43px;
        margin-bottom: 5px;
    }

    .left-banner > div {
        grid-gap: initial;
    }

    .box-banner-logos {
        gap: 20px !important;
    }

    .p-banner {
        text-align: center;
        font-size: 20px;
    }
}

@media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }

    h1 {
        font-size: 37px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    .set-width-footer {
        width: 100%;
    }

    .inside-card {
        min-height: 430px;
        justify-content: initial;
    }

    .sec-bannerPrincipal {
        background-position: left !important;
    }
}

@media only screen and (max-height: 768px) {
    .sec-bannerPrincipal .title-plans {
        font-size: 45px;
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }

    .left-banner > div {
        display: inline-grid;
        grid-gap: initial;
    }

    .box-banner-logos {
        grid-gap: 20px !important;
    }

    .site-footer .copyright-text, .site-footer .social-icons {
        text-align: center;
    }

    .title-h1 {
        text-align: center;
    }

    .p-banner {
        text-align: center;
    }

    .img-logo3 {
        position: relative;
        bottom: 100px;
        left: 70px;
    }

    .box-banner-logos .img-logo {
        margin-bottom: 15px;
    }

    .secFaq .box-questions {
        width: 100%;
    }

    #nossos-planos #p-nossos-planos {
        width: 100%;
    }

    .ans {
        display: inline-grid;
    }

    .ans-footer {
        display: inline-grid;
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #eceeef;
    color: #818a91;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.social-icons a:active, .social-icons a:focus, .social-icons a:hover {
    color: #fff;
    background-color: #29aafe
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
}

.social-icons a.facebook:hover {
    background-color: #3b5998
}

.social-icons a.twitter:hover {
    background-color: #00aced
}

.social-icons a.linkedin:hover {
    background-color: #007bb6
}

.social-icons a.dribbble:hover {
    background-color: #ea4c89
}

.social-icons a.instagram:hover {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

@media (max-width: 1366px) {
    .menu nav ul li a {
        font-size: 15px;
    }

    .logo {
        width: 105px;
    }

    .logo2 {
        width: 60px;
    }
}

@media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }

    .title-cards {
        font-size: 24px !important;
    }
}

@media (max-width:400px) {
    .footer-links a {
        line-break: anywhere;
    }
}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(51 204 102 / 70%), 0 0 0 0 rgb(51 204 102 / 70%);
    }

    40% {
        box-shadow: 0 0 0 50px transparent, 0 0 0 0 rgb(51 204 102 / 70%);
    }

    80% {
        box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent;
    }
}
