html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* WHATSAPP FLOAT */

#wsFloat {
    background-color: #25d366;
    box-shadow: 0 0 24px #25d36680;
    border-radius: 100%;
    justify-content: center;
    transition: background-color .3s;
    width: 56px;
    height: 56px;
    
    display: flex;
    align-items: center;
    
    position: fixed;
    cursor: pointer;
    right: 2rem;
    bottom: 6rem;
    z-index: 999;
}

#wsFloat .wsFloatIcon {
    color: white;
    font-size: 1.7rem;
}

/* END WHATSAPP FLOAT */

/* NAVBAR */
.superCustomLogo {
    width: 180px;
    margin-left: 130px;
}

#logo {
    width: 200px;
    float: left;
}

.circle {
    background: #f00;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    margin-top: 18px;
    margin-left: 5px;
    margin-right: 5px;
}

.navbarMenu {
    justify-content: flex-end;
}
.navbarMenu .navbarMenuIcons {
    justify-content: flex-end;
}
.navbarMenu .navbarIcons {
    margin-right: 0.5rem;
}

.navbarIcon,
.navbarText {
    font-family: 'font1';
    color: #143569 !important;
}

.navbarIcon:hover,
.navbarText:hover {
    color: #333 !important;
}

/* END NAVBAR */

/* CAROUSEL MAIN */
#slider1 {
    width: 100%;
}

#slider2 {
    width: 100%;
}

/* END CAROUSEL MAIN */

/* SERVICES */
.textTitle {
    font-family: 'font1';
    font-size: 65px;
    color: #143569;
}

.textTitle2 {
    font-family: 'font1';
    color: red;
}

.cardTextTitle {
    font-family: 'font1';
    font-size: 30px;
    font-weight: bold;
    color: cyan;
}

.cardMore {
    font-family: 'font2';
    cursor: pointer;
}

@font-face {
    font-family: 'font1';
    src: url("../../assets/fonts/font1/heptal/Heptal-Bold.ttf")
}

@font-face {
    font-family: 'font2';
    src: url("../../assets/fonts/font2/cocogoose/Cocogoose_Pro_Light-trial.ttf");
}

/* MODALS */
.modalTitle {
    font-family: 'font1';
}

.modalText {
    font-family: 'font1';
}

.videoPanels {
    width: 100%;
    height: 280px;
}

/* END MODALS */
/* END SERVICES */

/* IMAGE PC */
/* #imgPC{
    background-image: url("./assets/imgs/fondo1.jpg");
    background-repeat: no-repeat;
    height: 436px;
} */
/* END IMAGE PC */

/* KNOW US */
.titleKnowUs {
    font-family: 'font1';
    font-size: 50px;
    color: cyan;
}

.textKnowUs {
    font-family: 'font2';
}

/* END KNOW US */

/* PARALAX */

.parallax-window {
    min-height: 450px;
    background: transparent;
}

/* END PARALAX */

/* WE WANT TO MEET YOU */
.formSimbol {
    font-family: 'font2';
    font-size: 20px;
    color: red;
}

.formText {
    font-family: 'font2';
    font-size: 20px;
    color: #143569;
}

/* END WE WANT TO MEET YOU */

/* FOOTER */
footer {
    background: #f8f9fa;
    padding: 25px 180px;
}

.separator {
    background: #143569;
    height: 15px;
    margin-top: 100px;
}

.separatorVertical {
    background: #666;
    width: 2px;
    height: 200px;
}

.mgAuto {
    display: block;
    margin: auto;
    width: 180px;
}

.mgAuto2 {
    /* display: block;
    margin: auto; */
    width: 237px;
}

#emailFooter {
    filter: invert(60%);
    display: block;
    margin: auto;
}

.titleFooter {
    font-size: 15px;
}
.titleFooter2 {
    font-size: 15px;
}

.textFooter {
    color: #143569;
    font-family: 'font1';
    font-size: 14px;
    margin: 0 auto;
}

.textSmallFooter {
    color: #143569;
    font-family: 'font1';
    font-size: 12px;
}

.noTextFooter {
    font-family: Arial;
}

footer .termsAndPolices {
    margin-bottom: 1rem;
    
    display: flex;
    flex-direction: column;
}

footer .footerItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer .middleStyle {
    margin-top: 3rem;
}

/* END FOOTER */

/* MESSAGE REGISTER/LOGIN */

.showMessageLogin {
    background-color: rgba(5, 8, 37, 0.9);
    position: sticky;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 5rem;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.showMessageLogin label {
    color: white;
    font-size: 18px;

    flex: 3;
}

.showMessageLogin .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;

    flex: 2;
}

.showMessageLogin .buttons .button {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s ease all;
    border-radius: 5px;
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    height: 40px;
    margin-bottom: 0.5rem;
}

.showMessageLogin .buttons .register {
    background-color: #f00;
}

.showMessageLogin .buttons .register:hover {
    background-color: rgb(187, 0, 0);
    text-decoration: none;
}

.showMessageLogin .buttons .login {
    background-color: #0045b4;
}

.showMessageLogin .buttons .login:hover {
    background-color: #0c3b86;
    text-decoration: none;
}

/* MODAL REGISTER */

#modalRegister .modal-header {
    background-color: #0f1656;
    color: white;
}

#modalRegister .modal-body {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem;
}

#modalRegister .modal-body div {
    flex: 1;
}

#modalRegister .modal-body hr {
    background-color: #ccc;
    width: 1px;
    height: 150px;
    margin: 0 5px;
}

#modalRegister .button {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s ease all;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    width: 100% !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    height: 40px;
    margin-bottom: 0.5rem;
}

#modalRegister .register {
    background-color: #f00;
}

#modalRegister .register:hover {
    background-color: rgb(187, 0, 0);
    text-decoration: none;
}

#modalRegister .login {
    background-color: #0045b4;
}

#modalRegister .login:hover {
    background-color: #0c3b86;
    text-decoration: none;
}

/* END MODAL REGISTER */

/* END MESSAGE REGISTER/LOGIN */

/* OTHERS */
.top10 {
    margin-top: 10px;
}

.top20 {
    margin-top: 20px;
}

.top50 {
    margin-top: 50px;
}

.top100 {
    margin-top: 100px;
}

.top150 {
    margin-top: 150px;
}

.padding20 {
    padding: 20px;
}

.bgMake {
    background: #143569;
}

.bgNone {
    background: none;
}

/* END OTHERS */

@media screen and (max-width: 1024px) {

    /* NAVBAR */
    /* .navbarResponsive {
        padding: 0;
        margin: 0;
    } */
    .navbarMenu {
        justify-content: start;
    }
    .navbarMenu .navbarMenuIcons {
        justify-content: center;
    }

    .superCustomLogo {
        margin: 0;
        width: 100px;
    }

    #logo {
        width: 150px;
    }

    #textLogo {
        width: 75px;
        height: 30px;
    }

    .circle {
        display: none;
    }

    /* END NAVBAR */

    /* CAROUSEL MAIN */
    #slider1 {
        content: url(/assets/imgs/sliders2/movile_1.png);
    }

    #slider2 {
        content: url(/assets/imgs/sliders2/movile_2.png);
    }

    /* END CAROUSEL MAIN */

    /* PANELS */
    .textTitle {
        font-size: 45px;
    }

    #imgGird {
        display: none;
    }

    .imgsPanel3 {
        width: 100px;
    }

    .textPanel3 {
        font-size: 12px;
    }

    .videoPanels {
        height: 230px;
    }

    /* END PANELS */

    /* IMAGE PC */

    #imgPC {
        width: 100%;
    }

    /* END IMAGE PC */

    /* WE WANT TO MEET YOU */
    .formSimbol {
        font-size: 20px;
    }
    .formText {
        font-size: 20px;
    }
    /* END WE WANT TO MEET YOU */

    /* FOOTER */
    footer {
        padding: 0;
    }
    .separatorVertical {
        display: none;
    }
    footer #logoFooter {
        width: 12rem;
        margin-bottom: 1rem;
    }
    footer .middle {
        padding-bottom: 2rem;
    }
    /* END FOOTER */

    /* MESSAGE REGISTER/LOGIN */

    .showMessageLogin {
        padding: 1rem;
        flex-direction: column;
    }

    .showMessageLogin label {
        text-align: center;
        margin-bottom: 1rem;

        flex: 0;
    }

    .showMessageLogin .buttons {
        width: 100%;
    }

    .showMessageLogin .buttons .button {
        margin-right: 0 !important;
        height: 30px;
    }

    /* MODAL REGISTER */

    #modalRegister .modal-body {
        flex-direction: column !important;
    }

    #modalRegister .modal-body hr {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    /* END MODAL REGISTER */

    /* END MESSAGE REGISTER/LOGIN */

    /* OTHERS */
    .top100 {
        margin-top: 50px;
    }

    .top150 {
        margin-top: 75px;
    }

    .padding20 {
        padding: 10px;
    }

    /* END OTHERS */
}

@media screen and (max-width: 500px) {
    /* FOOTER */
    .mgAuto2 {
        margin-left: 1rem;
    }
    #logoFooter {
        margin-right: 2rem;
    }
    footer .middleStyle {
        margin-top: 0rem;
    }
    /* END FOOTER */
}