/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
    color: #19bb9b;
}

a:hover {
    color: #13977d;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #25B89A;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #25B89A;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
    background-color: #25B89A;
}

::-webkit-scrollbar-track {
    background: #091534;
    border-radius: 0px;
}

::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
    background: #091534;
}

section {
    padding: 30px 0px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #128C7F;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #25B89A;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 110px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #091534;
}

.scrolled-offset {
    margin-top: 20px;
}

#header .logo {
    margin: 10px;
    transition: 0.3s all;
}

.logo:hover {
    transform: scale(1.07);
    transition: 0.3s all;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 10px 0 10px 2px;*/
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}


.navbar .en-button {
    background: #13977d;
    padding: 5px;
    border-radius: 5px;
}

.navbar .es-button {
    background: #8d8d8d;
    padding: 5px;
    border-radius: 5px;
}

.es-button {
 margin-top:2px;
}

.en-button {
    background: #13977d;
    padding: 5px;
    border-radius: 5px;
}
.en-button a {
    text-align: center;
    justify-content: center;
    margin-top: 2px;
    font-size: 17px;
    color: #ffe000;
    transition: 0.3s all;
}

.es-button a {
    text-align: center;
    justify-content: center;
    margin-top: 2px;
    font-size: 17px;
    transition: 0.3s all;
}

.navbar .en-button:hover {
    background: #040C22;
    color: #fff;
    transition: 0.3s all;
}

.navbar .es-button:hover {
    background: #040C22;
    color: #fff;
    transition: 0.3s all;
}

.navbar a i,
.navbar a:focus i {
    font-size: 15px;
    line-height: 0;
    margin-left: 0px;
    margin-right: 7px;
}


.navbar .getstarted,
.navbar .getstarted:focus {
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 0px;
    margin-left: 30px;
    color: #091534;
    border: 3px solid #18bc99;
    font-weight: 800;
    font-size: 15px;
}

.navbar .dropdown button{
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #091534;
    transition: 0.3s;
    border-radius: 4px;
}

/*.navbar .dropdown ul li {
    min-width: 200px;
}*/

.navbar .dropdown ul a {
    padding: 10px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    /*.navbar ul {
        display: none;
    }*/
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 28, 28, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #353535;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #8fc04e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #8fc04e;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


@media (max-width: 992px) {

    .navbar a i,
    .navbar a:focus i {
        font-size: 8px;
        line-height: 0;
        margin-left: 0px;
        margin-right: 7px;
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 8px 10px;
        margin-left: 12px;
    }

    .navbar a,
    .navbar a:focus {
        padding: 0 2px 0 2px;
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# redes sociales
--------------------------------------------------------------*/

.social {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 30%;
    right: 0;
    margin-bottom: 10px;
    width: 200px;
    z-index: 9999;
}

.social a {
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em;
    margin: 2px;
    text-align: left;
    transform: translateX(150px);
    transition: all 0.5s;
}

.book {
    color: #fff;
    border-radius: 50px 0px 0px 50px;
}

.social a i {
    margin-right: 20px;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
}

.social>a:hover {
    transform: translateX(0px);
    color: white;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

#hero video {
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

#video-banner::after {
    content: "";
    background: rgb(9 21 52 / 27%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0px 2px 5px black;
}

#hero svg {
    position: absolute;
    bottom: -2px;
}

.contenido-banner .order-1 span {
    font-size: 3.5rem;
}

.contenido-banner .order-2 .card {
    width: 450px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.btn-contact {
    background-color: #128C7F;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    border-radius: 5px;
}

.btn-contact i {
    font-size: 27px;
    padding-right: 5px;
}

.btn-contact:hover {
    transform: scale(1.07);
    transition: 0.2s all;
}

@media (max-width: 768px) {
    .btn-contact {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }
}

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span {
    color: #8fc04e;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/


.welcome .text-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.welcome .text-header h1 {
    font-weight: 800;
    font-size: 50px;
    color: #25B89A;
    line-height: 20px;
    margin: 0.67em 0;
    text-align: center;
}

.welcome .text-header h2 {
    font-weight: 800;
    font-size: 30px;
    color: #091534;
    text-align: center;
}

.welcome .text-header hr {
    border: none;
    height: 5px;
    background: #128C7F;
    width: 20%;
    opacity: 1;
}

.welcome p {
    color: #919191;
    font-size: 20px;
    margin: 0;
    padding: 0;
    text-align: center;
}

/*--------------------------------------------------------------
# Card Form
--------------------------------------------------------------*/

.card {
    border-radius: 8px;
    padding: 15px;
    border: 2px solid #18ba9a;
    background: #091534;
}

.card .card-body h2 {
    margin: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.card-body {
    padding: 0px !important;

}

.card-body .form-group {
    margin: 20px;
}

.form-group input,
.form-group textarea {
    font-size: 15px;
    font-weight: 200;
    background-color: #fff;
}

.card-body button {
    width: 100%;
    font-size: 15px;
    color: #fff;
    background: #19b99a;
    text-transform: uppercase;
    font-weight: 700;
}

.form-control {
    border-radius: 3px;
}

.btn:hover {
    background: white !important;
    color: #05224e !important;
}

/*--------------------------------------------------------------
# Imagenes
--------------------------------------------------------------*/
.content-img {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

.content-img img {
    opacity: 0.7;
    transition: 0.3s all;
}

.content-img img:hover {
    opacity: 1;
    transition: 0.3s all;
    transform: scale(1.07);
    cursor: pointer;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .title-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.services .title-section h1 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 50px;
    color: #091534;
    text-align: center;
}

.title-section h1 span {
    color: #25B89A;
}

.title-section hr {
    border: none;
    height: 5px;
    background: #128C7F;
    width: 20%;
    opacity: 1;
}

.ul-about {
    margin-bottom: 40px;
    padding-left: 0 !important;
}

/*--------------------------------------------------------------
# Bookkeping-Services Tax-Preparation Audits-IRS-Problems
--------------------------------------------------------------*/

.circulo-service {
    background: #25B89B;
    border-radius: 50%;
    width: 400px;
    height: 400px;
}

.circulo-service img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    margin-top: 20px;
    margin-left: 50px;
}

.list-services h2 {
    font-weight: 800;
    font-size: 2em;
    color: #091534;
}

.list-services ul li {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    margin-top: 5px;
}

.list-services ul li i {
    margin-right: 15px;
    margin-top: 1px;
}


/*--------------------------------------------------------------
# Payroll-Services ITIN-Number
--------------------------------------------------------------*/
.payr-services {
    background-color: #091534;
}

.list-pay-services h2 {
    font-weight: 800;
    font-size: 2em;
    color: #fff;
}

.list-pay-services ul li {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    display: flex;
    margin-top: 5px;
}

.list-pay-services ul li i {
    margin-right: 15px;
    margin-top: 1px;
}

.circulo-pay-service {
    background-color: #25B89B;
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.circulo-pay-service img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    margin-top: 20px;
    margin-right: 50px;
}


/*--------------------------------------------------------------
# THANKS
--------------------------------------------------------------*/

#banner-thanks {
    background: linear-gradient(rgba(9, 21, 52, 0.6), rgba(9, 21, 52, 0.6)), url("../img/toma-decisiones-financieras.webp");
    min-height: 45vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}


#banner-thanks svg {
    position: absolute;
    bottom: -2px;
}

#banner-thanks h1 {
    font-weight: 800;
    font-size: 50px;
    color: #FFF;
    line-height: 20px;
    margin: 0.67em 0;
    text-align: center;
    text-transform: uppercase;
}

.message .text-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}


.message .text-header h1 {
    font-weight: 800;
    font-size: 50px;
    color: #25B89A;
    line-height: 20px;
    margin: 0.67em 0;
    text-align: center;
}

.message .text-header h2 {
    font-weight: 800;
    font-size: 30px;
    color: #091534;
    text-align: center;
}

.message .text-header hr {
    border: none;
    height: 5px;
    background: #128C7F;
    width: 20%;
    opacity: 1;
}

.message p {
    color: #919191;
    font-size: 25px;
    margin: 0;
    padding: 0;
    text-align: center;
    margin: 0.67em 0;
}

.btn-home {
    background-color: #128C7F;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    border-radius: 5px;
    transition: all .3s linear 0s;

}

.btn-home:hover {
    background-color: #091534;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: #091534;
    position: relative;
    background-size: cover;
    padding-top: 40px;
}

.logo-footer {
    height: 100px;
    width: auto;
}

.footer .footer-title {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-top: 12px;
}

.footer p {
    font-size: 14px;
    color: #fff;
}

.footer-bottom {

    margin-top: 10px;
    background: #040C22;
    position: relative;
    padding-top: 40px;
}

.footer .copyright {
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.copyright strong {
    color: #19b99a;
}

.footer-cuadros {
    width: 100%;
}

.maps iframe {
    margin-bottom: -10px;
}

.cuadro {
    border: 2px solid #25B89A;
    height: auto;
    margin: 10px;
    padding: 10px;
    text-align: center;
    transition: all 0.5s;
}

.footer a {
    padding: 0px;
}

.contact-footer .cuadro:hover {
    background: #25B89A;
    transition: all 0.5s;
}

.text-cuadro {
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.cuadro p {
    color: #dfdfdf
}

.floatWapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.floatWapp:hover {
    color: #fff;
}

.floatWapp:after,
.floatWapp:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid #25d366;
    -webkit-animation-name: popupBtn;
    animation-name: popupBtn;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.my-floatWapp {
    margin-top: 16px;
}


@-webkit-keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.6);
        opacity: .3
    }

    to {
        transform: scale(2.2);
        opacity: 0
    }
}

@keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.6);
        opacity: .3
    }

    to {
        transform: scale(2.2);
        opacity: 0
    }
}


/* ============= RESPONSIVE ============= */
@media (max-width:1199px) and (min-width:992px) {

    .navbar .en-button {
        background: #13977d;
        padding: 5px;
        border-radius: 5px;
    }

    #hero {
        height: auto;
    }

    .contenido-banner .order-2 .card {
        width: 400px;
        margin-top: 70px;
    }

    .contenido-banner .order-1 span {
        font-size: 3rem;
    }

    .welcome .text-header h1 {
        font-size: 45px;
    }

    .welcome p {
        font-size: 18px;
    }

    .services .title-section h1 {
        font-size: 45px;
    }

    .list-services ul li {
        font-size: 20px;
    }

    .list-pay-services ul li {
        font-size: 20px;
    }
}

@media (max-width:991px) and (min-width:481px) {

    #hero {
        height: auto;
    }

    .hero .contenido-banner .title {
        margin-top: 60px;
        font-size: 38px;
        font-weight: 700;
        text-align: center;
        color: #fff;
    }

    #hero svg {
        position: absolute;
        bottom: -6px;
    }

    .contenido-banner .order-1 span {
        font-size: 2.5rem;
    }

    .content-img {
        flex-direction: column;
        align-items: center;
    }

    .list-services h2 {
        text-align: center;
    }

    .list-pay-services h2 {
        text-align: center;
    }

    .circulo-service {
        background: #25B89B;
        border-radius: 50%;
        width: 260px;
        height: 260px;
    }

    .circulo-service img {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        margin-top: 20px;
        margin-left: 40px;
    }

    .circulo-pay-service {
        background: #25B89B;
        border-radius: 50%;
        width: 260px;
        height: 260px;
    }

    .circulo-pay-service img {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        margin-top: 20px;
        /*margin-left: 40px;*/
    }

}

@media (max-width:480px) and (min-width:320px) {

    #header .logo img{
        max-width: 99%;
        height: auto;
    }    
    .lang-btn {
    display: block !important;
}

    #hero {
        height: auto;
    }

    .hero .contenido-banner .title {
        margin-top: 60px;
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        text-align: center;
    }

    .contenido-banner .order-1 span {
        font-size: 1.5rem;
    }

    .content-img {
        flex-direction: column;
        align-items: center;
    }

    .content-img img {
        /* height: 100px;
        width: 200px; */
        margin-bottom: 20px;
    }

    .list-services h2 {
        text-align: center;
    }

    .circulo-service {
        background: #25B89B;
        border-radius: 50%;
        width: 200px;
        height: 200px;
    }

    .circulo-service img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        margin-top: 20px;
        margin-left: 40px;
    }

    .list-pay-services h2 {
        text-align: center;
    }

    .circulo-pay-service {
        background: #25B89B;
        border-radius: 50%;
        width: 200px;
        height: 200px;
    }

    .circulo-pay-service img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        margin-top: 20px;
        /*margin-left: 40px;*/
    }

}


.btn-efect {
    text-transform: uppercase;
    text-decoration: none;
    background-color: #22c15d;
    color: #fff;
    padding: 1vmax 1.5vmax;
    border-radius: 5px;
    position: relative;
    transition: 0.3s all;
    font-weight: 800;
    font-size: 20px;
    text-shadow: 0px 2px 2px rgb(0 0 0 / 38%);
}

.btn-efect::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background: #22c15d;
    border-radius: 5px;
    opacity: 0.5;
    z-index: -1;
    transition: all 0.3s;
}

.btn-efect:hover::before {
    transform: scaleX(1.2) scaleY(1.5);
    opacity: 0;
}

.btn-efect:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.6s);
    transform: translateY(-5px);
    transition: 0.3s all;
    color: #fff !important;
}

.btn-efect:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6s);


}

.lab-check {
    text-align: initial;
    color: white;
}

/*--------------------------------------------------------------
# redes sociales
--------------------------------------------------------------*/

.social {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 30%;
    right: 0;
    margin-bottom: 10px;
    width: 200px;
    z-index: 9999;
}

.social a {
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em;
    margin: 2px;
    text-align: left;
    transform: translateX(150px);
    transition: all 0.5s;
}

.book {
    color: #fff;
    border-radius: 50px 0px 0px 50px;
}

.social a i {
    margin-right: 20px;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
}

.social>a:hover {
    transform: translateX(0px);
    color: white;
}
.lang-btn{
    display: contents;
}
.lang-btn li{
    margin: 5px;
}
