.light-green {
    color : rgba(2,156,73,1);
}

a {
    color: rgba(255,255,255,1);
}

a:hover {
    color: rgba(255,255,255,1);
    text-decoration : none;
}

a:focus {
    color: rgba(255,255,255,1);
    outline : none;
}

/* 
    Add underline class for a more aesthetic underline that can be of a 
    different color than the text color.
*/
a.underline {
    border-top : solid 2px transparent;
    border-bottom : solid 2px transparent;
}

a.underline:hover {
    border-bottom : solid 2px #00AE42;
}

a.button {
    color : rgba(255,255,255,1);
    background-color : rgba(2,156,73,1);
    font-weight : 600;
    padding : 10px 15px;
    transition: background-color;
    transition-duration: 200ms;
    vertical-align: text-top;
    display: inline-block;
    z-index : 10;
}

a.button:hover {
    color : rgba(2,156,73,1);
    background-color : rgba(255,255,255,1);
}

a.button:hover.alt-hover {
    color: rgba(255,255,255,1);
    background-color: rgba(133,196,65,1);
}

a.button.inverted {
    color: rgba(2,156,73,1);
    background-color: rgba(255,255,255,1);
}

a.button.inverted:hover {
    color: rgba(255,255,255,1);
    background-color: rgba(133,196,65,1);
}

a.pill-btn {
    border-radius: 30px;
    padding : 10px 50px 10px 50px;
}

body {
    background: #ffffff;
    color: rgba(0,0,0,1);
    font-family: 'Roboto Condensed', sans-serif;
    font-size : 0.9rem;
    overflow-x: hidden; /* prevent horizontal scrollbar from appearing */
}

@media (min-width : 576px) {
    body {
        font-size : 1.0rem;
    }
}

button:focus {
    outline : none;
}

.container-xl {
    max-width: 1230px;
    padding-top : 3rem;
    padding-bottom : 3rem;
    line-height : 1.5rem;
}

h1 {
    font-size : 1.35rem;
}

@media (min-width : 380px) {
    h1 {
        font-size : 1.65rem;
    }
}

@media (min-width : 1400px) {
    h1 {
        font-size : 2.0rem;
    }
}

html {
    /* overflow : auto; */
    scroll-behavior: smooth;
}

main {
    background-color : #EFEFEF;
}

/* Modal Display Corrections */
body.modal-open {
    /* padding-right : 0px !important;
    overflow : auto;
    overflow-x : hidden; */
}

.modal {
    /* padding-right : 0px !important; */
}
/* Modal Display Corrections - End */

/* Navbar */

.navbar {
    min-height : 80px;
    background-color: rgba(0,0,0,0.60);
}

.navbar .container-xl {
    padding-top : 0;
}

.navbar-brand img {
    max-height : 48px;
}

@media (min-width: 577px) {
    .navbar-brand img {
        max-height : 58px;
    }
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(255,255,255,1);
    font-size : 1.00rem;
    font-weight: 600;
    letter-spacing: 1px;
    border : solid 1px transparent;
    padding : 1rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(133,196,65,1);
    /* border : solid 1px rgba(94,91,92,0.75); */
}

/* 
 * To change collapsed icon color, change border-color from .navbar-toggler and
 * the stroke from background-image property of .navbar-toggler-icon (its a SVG
 * image).
 */

.navbar-light .navbar-toggler {
    padding: .20rem .65rem;
    /* font-size: 0.6rem; */
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    color : rgba(255,255,255,1);
    /* border-color : rgba(255,255,255,1); */
}

.navbar-light .navbar-toggler:hover {
    color: rgba(133,196,65,1);
}

/* 
.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
*/

.navbar-light .nav-link .nouser {
    display: inline-block;
    background-color: rgba(2,156,73,1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.0rem;
    line-height: 36px;
    text-align: center;
}

.navbar-light .nav-link:hover .nouser {
    color: rgba(255,255,255,1);
    background-color: rgba(133,196,65,1);
}

.navbar-light .nav-link .loggeduser {
    display: inline-block;
    background-color: rgba(2,156,73,1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-family: 'Tahoma', 'arial narrow';
    font-size: 16px;
    font-spacing: 2px;
    line-height: 36px;
    text-align: center;
    font-weight: 300;
    color: White !important;
}

/* Navbar - End */


/* Sign-Up Modal */
#modalSignUp {
    z-index: 1060;
}

#modalSignUp .modal-content {
    color : rgba(255,255,255,1);
    background-color: rgba(2,156,73,1);
}

#modalSignUp .modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size : 1rem;
}

#modalSignUp .modal-login {
    font-size : 90%; 
    line-height : 1.10;
    color : rgba(255,255,255,1);
}

#modalSignUp .swap-external-container {
    overflow: hidden;
}

#modalSignUp .swap-inner-container {
    width: 400%;
    position: relative;
    left: 0%;
    transition: all .3s ease-in;
}

#modalSignUp .swap-inner-container.show-fourth {
    transition-duration: 0s;
}

#modalSignUp .swap-inner-container.show-first {
    left: 0%;
}

#modalSignUp .swap-inner-container.show-second {
    left: -100%;
}

#modalSignUp .swap-inner-container.show-third {
    left: -200%;
}

#modalSignUp .swap-inner-container.show-fourth {
    left: -300%;
}

#modalSignUp .swap-content {
    width: 25%;
    float: left;
}

/* Following two rules are required for swapping because height differences in the contents */

#modalSignUp .swap-content.first {
    max-height: 775px; /* Must be an upper bound to the actual element height  */
    transition: all .3s ease-in .3s;
}

#modalSignUp .swap-content.second {
    max-height: 550px; /* Must be an upper bound to the actual element height  */
    transition: all .3s ease-in .3s;
}

#modalSignUp .swap-content.third {
    max-height: 400px; /* Must be an upper bound to the actual element height  */
    transition: all .3s ease-in .3s;
}

#modalSignUp .swap-content.fourth {
    max-height: 350px; /* Must be an upper bound to the actual element height  */
    transition: all .3s ease-in .3s;
}

#modalSignUp .show-first .swap-content.second,
#modalSignUp .show-first .swap-content.third,
#modalSignUp .show-first .swap-content.fourth,
#modalSignUp .show-second .swap-content.first,
#modalSignUp .show-second .swap-content.third,
#modalSignUp .show-second .swap-content.fourth,
#modalSignUp .show-third .swap-content.first,
#modalSignUp .show-third .swap-content.second,
#modalSignUp .show-third .swap-content.fourth,
#modalSignUp .show-fourth .swap-content.first,
#modalSignUp .show-fourth .swap-content.second,
#modalSignUp .show-fourth .swap-content.third {
    max-height: 225px; /* Make it shorter than the other content */
}

#modalSignUp .fa-stack {
    display : flex;
    justify-content : center;
    align-items : center;
}

#modalSignUp .fa-stack .fa-stack-2x {
    color : rgba(255,255,255,1);
    font-size : 2.10rem;
}

#modalSignUp .fa-stack:hover .fa-stack-2x {
    color : rgba(133,196,65,1);
}

#modalSignUp .fa-stack .fa-stack-1x {
    color : rgba(2,156,73,1);
    font-size : 1.25rem;
}

#modalSignUp .fa-stack:hover .fa-stack-1x {
    color : rgba(255,255,255,1);
}
/* Sign-Up Modal - END */

/* Sign-Up Request */

#requestSignUp {
    padding: 2rem 2.5rem;
    position: fixed;
    left: -320px;
    top: calc(50vh - (353px / 2));
    background-color: rgba(2,156,73,1);
    border: solid 2px rgba(2,126,43,1);
    transition: left 0.65s ease-in 0s, opacity 0.40s ease-in 0.25s;
    display: inline-block;
    width: 320px;
    color: rgba(255,255,255,1);
    font-family: 'Roboto', sans-serif;
    font-size : 1rem;
    opacity: 0;
    z-index: 100;
}

#requestSignUp.show {
    left : 0%;
    opacity : 1;
}

#requestSignUp div:last-child {
    font-size : 90%;
    text-decoration : underline;
}

/* Sign-Up Request - END */


/* Formulario de contacto */

    /* .input-container manages the input border */
    .input-container {
        display : flex; 
        flex-direction : row; 
        align-items : center;
        justify-content: flex-end;
        width : 100%;
        border : solid 2px rgba(255,255,255,0.85); 
        border-radius : 24px;
        background-color : rgba(2,156,73,1);
    }

    /* change border when focus in the input inside the container */
    .input-container:focus-within {
        border-color: rgba(255,255,255,1.0);
    }

    /* change border when there is an input error */
    .input-container.error {
        border-color : rgba(255, 167, 0,1.0);
    }

    /* change border when the input inside has an error and focus */
    .input-container:focus-within.error {
        border-color : rgba(255, 167, 0,1.0);
    }

    .input-container input,
    .input-container textarea {
        border : 0;
        background-color : transparent;
        color : rgba(255,255,255,0.85);
        margin : 0 !important;
        padding : .375rem .75rem .375rem .75rem; 
        font-size : 1rem;
        box-shadow : 0;
        width : 100%;
        text-align : center;
    }

    .input-container input:focus,
    .input-container textarea:focus {
        border : 0;
        color : rgba(255,255,255,1.0);
        outline : none;
        box-shadow : 0 0 0 0 transparent;
    }

    .input-container input::placeholder,
    .input-container textarea::placeholder {
        color : rgba(255,255,255,1.0);
        text-align: center;
    }

    .input-container input:focus::placeholder,
    .input-container textarea:focus::placeholder {
        color : rgba(255,255,255,1.0);
        text-align: center;
    }

    .input-container input:required {
        border-color: transparent !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }

    /* input container for password requires a visibility toggle */
    .input-container.with-visibility-toggle input {
        /* a second element with 38px width must be added for centering the text */
        width : calc(100% - 38px - 38px);
    }

    .input-container.with-visibility-toggle .visibility-toggle {
        color : rgba(255,255,255,0.85);
        width : 38px;
        text-align : center;
    }

    .input-container.with-visibility-toggle .visibility-toggle:hover {
        cursor : pointer;
        color : rgba(255,255,255,1.0);
    }

    /* input error message style */
    .recaptcha_error,
    .input-container + span.input-error,
    .checkbox-container + span.input-error {
        padding-left : 16px;
        padding-right : 16px;
        padding-top : 4px;
        color : rgba(255,255,255,1.0);
        font-size: 80%;
    }

    /* show an icon next to input when there is an error */
    .input-container .icon {
        display : none;
    }

    .input-container.error input,
    .input-container.error textarea {
        padding-right : 0;

        /* no padding-left needed when the input text is centered */
        padding-left : 0;

        /* a second element with 38px width must be added for centering the text */
        width : calc(100% - 38px - 38px);
    }

    .input-container.with-visibility-toggle.error input {
        /* a second element with 38px width must be added for centering the text */
        width : calc(100% - 38px - 38px - 38px - 38px);
    }

    .input-container.error .icon {
        display : initial;
        /* padding : .420rem 0 .420rem 0; */
        color : rgba(255, 167, 0,1.0);
        font-size : 1.25rem;
        width : 38px;
        text-align : center;
    }

    /* submit button */
    .submit-container {
        border-color : rgba(255,255,255,1.0);
        background-color : rgba(255,255,255,1.0);
    }

    .submit-container:hover  {
        background-color : rgba(133,196,65,1);
        border-color : rgba(133,196,65,1);
    } 

    .submit-container .submit-button  {
        padding : .375rem .75rem .375rem .75rem; 
        font-size : 1rem;
        font-weight: bold;
        color : rgba(2,156,73,1.0);
        width : 100%;
    }

    .submit-container .submit-button:hover  {
        color : rgba(255,255,255,1.0);
    }

    /* Response message */
    .form-response {
        font-size : 100%;
        text-align: center;
        color : rgba(255,255,255,1.0);
        /*font-size: 80%;*/
    }

    /* Checkboxes con FontAwesome */

    input[type=checkbox] { display:none; } /* to hide the checkbox itself */

    input[type=checkbox] + label {
        margin-bottom : 0 !important; /* override bootstrap */
        display : initial !important; /* override bootstrap */
    }

    input[type=checkbox] + label:before {
        font-family: 'Font Awesome 5 Free';
        font-size : 175%;
        letter-spacing: 10px; /* space between checkbox and label */
        content: "\f0c8"; /* unchecked icon */
        color : rgba(255,255,255,1);
    }

    input[type=checkbox]:checked + label:before { 
        content: "\f14a"; /* checked icon */ 
    }

    /* Style for each checkbox 'row' */

    .checkbox-container {
        display: flex; 
        flex-direction: row;
        align-items: center;
    }

    .checkbox-container label {
        cursor: pointer;
    }

    .checkbox-label {
        width : 90%; /* for IE 10-11 */
    }

    .checkbox-label label {
        font-size : 90%; 
        margin-bottom : 0; 
        line-height : 1.10;
        color : rgba(255,255,255,1);
    }

/* Formulario de Contacto - End */


/* Footer */

footer {
    /*background-color: #241f20;*/
    background-color: rgba(0,0,0,1);
    color: rgba(255,255,255,1);
}

@media (min-width : 768px) {
    .footer .logo {
        max-width: 200px;
    }
}

.footer .underline {
    padding-bottom : 1rem;
    margin-bottom : 1rem;
    border-bottom : solid 1px rgba(255,255,255,1);
}

@media (min-width : 768px) {
    .footer .no-underline-md {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 0;
    }

    .footer .underline-md {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: solid 1px rgba(255,255,255,1);
    }
}

.footer a.nav-link:hover {
    color : rgba(133,196,65,1);
}

.footer .navbar-nav li {
    display: flex;
    justify-content: center;
    flex-basis: 50%;
}

@media (min-width : 500px) {
    .footer .navbar-nav li {
        flex-basis: 33%;
    }
}

@media (min-width : 992px) {
    .footer .navbar-nav li {
        flex-basis : auto;
    }
}

.footer .fa-stack {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .fa-stack .fa-stack-2x {
    color: rgba(255,255,255,1);
    font-size: 2.10rem;
}

.footer .fa-stack:hover .fa-stack-2x {
    color: rgba(133,196,65,1);
}

.footer .fa-stack .fa-stack-1x {
    color: rgba(0,0,0,1);
    font-size: 1.25rem;
}

.footer .fa-stack:hover .fa-stack-1x {
    color: rgba(255,255,255,1);
}


/* Footer - End */


/* Slider */
.prev-arrow,
.next-arrow {
    position: absolute;
    top: calc(50% - 15px);
    z-index: 99
}

.prev-arrow:hover,
.next-arrow:hover {
    cursor: pointer;
}

.prev-arrow {
    /* left: 8px; */
    left: -20px;
}

.next-arrow {
    /* right: 8px; */
    right: -20px;
}

.slick-dots {
    bottom: 15px;
}

.slick-dots li button:before {
    color : #FFFFFF;
    font-size: 0.8rem !important;
    opacity : 0.5 !important;
}

.slick-dots li.slick-active button:before {
    color : #000000;
    opacity : 0.75 !important;
}

.slick-dots li button:hover:before {
    opacity : 1 !important;
}

@media (max-width : 575px) {
    .slick-dots {
        bottom: 5px;
    }
}

.slick-dotted.slick-slider {
    margin-bottom : 0;
}

/* End Slider */