@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400&display=swap');



/*-- Variables globales --*/
:root {
    --blanco: #fff;
    --negro: #000;
    --gris: #ccc;
    --color1: #2c365b;
    --color2: #57B034;
    --color3: #81b13e;
    --color4: #f5d410;
    --color5: #EAF5FA;
    --color6: #6d9731;
    --color7: #2099D6;
    --color_parrafos: #3e3e3e;
    --fondo1: url(../images/back_body.jpg);
    --respuesta_test_correcta: green;
    --repsuesta_test_incorrecta: red;
  }
/*-- //Variables globales --*/



/*-- Reset code --*/
body {
    padding: 0;
    margin: 0;
    background: var(--blanco);
    font-family: 'Montserrat', 'sans-serif';
}

body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
}

body a:focus,
a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'sans-serif';
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: var(--color_parrafos);
}

ul,
ol {
    margin: 0;
    margin-top: 3%;
    margin-bottom: 2%;
}

label {
    margin: 0;
    color: var(--blanco);
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none
}
/*-- //Reset code --*/



/*-- Header --*/
header {
    top: 0;
    z-index: 9;
    width: 100%;
}

#main_header {
    width: 100%;
    height: auto;
    background-color: var(--blanco);
}
/*-- //Header --*/



/*-- Nav --*/
.navbar {
    padding: 0px !important;
    width: 100%;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--blanco);
    background-color: var(--color2);
    padding-top: 20px;
    height: 70px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--blanco);
    background-color: var(--color2);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--color2);
    font-family: 'Montserrat';
    font-size: 1em;
    font-weight: bold;
    padding-top: 20px;
    height: 70px;
}
/*-- //Nav --*/



/*-- Footer --*/
.footer_section {
    background: var(--color1);
}

.footer {
    padding: 4em 0 0em 0;
}

.footer p {
    color: var(--blanco) !important;
}

.footer_bottom {
    height: 100%;
    margin-top: 2%;
}

.footer_bottom  p {
    color: var(--blanco) !important;
}

.footer_policies {
    font-weight: bold;
    color: var(--color4);
    font-size: 1.1rem;
    margin-top: 4%;
}

.footer_policies:hover {
    color: var(--gris);
}
/*--//Footer--*/


/*--Inicio--*/

.btn_costa_rica {
    position:absolute;
    width: 18%;
    top: 35%;
    left : 43%;
    z-index: 1;
}
a .btn_costa_rica:last-child {
    display: none;  
}
a:hover .btn_costa_rica:last-child {
    display: block;  
}
a:hover .btn_costa_rica:first-child {
    display: none;  
}

.btn_guatemala {
    position:absolute;
    width: 22%;
    top: 35%;
    left : 75%;
    z-index: 1;
}
a .btn_guatemala:last-child {
    display: none;  
}
a:hover .btn_guatemala:last-child {
    display: block;  
}
a:hover .btn_guatemala:first-child {
    display: none;  
}

.btn_panama {
    position:absolute;
    width: 20%;
    top: 60%;
    left : 41%;
    z-index: 1;
}
a .btn_panama:last-child {
    display: none;  
}
a:hover .btn_panama:last-child {
    display: block;  
}
a:hover .btn_panama:first-child {
    display: none;  
}

.btn_rep_dom {
    position:absolute;
    width: 24%;
    top: 60%;
    left : 75%;
    z-index: 1;
}
a .btn_rep_dom:last-child {
    display: none;  
}
a:hover .btn_rep_dom:last-child {
    display: block;  
}
a:hover .btn_rep_dom:first-child {
    display: none;  
}

/*--//Inicio--*/


/*-- Generales --*/
.btn_home {
    position:absolute;
    width: 4%;
    top: 5%;
    left: 3%;
    z-index: 1;
}

.btn_home2 {
    position:absolute;
    width: 8%;
    top: 25%;
    left: 3%;
    z-index: 1;
    margin-left: 4%;
}

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 2%;
    overflow: hidden;
    z-index: 999;
    width: 32px;
    height: 32px;
    border: none;
    text-indent: 100%;
    background: url(../images/arrow.png) no-repeat 0px 0px;
}

#toTopHover {
    width: 32px;
    height: 32px;
    display: block;
    overflow: hidden;
    float: right;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

.body_dark_img {
    background: var(--fondo1) no-repeat 0px 0px;
    background-size: cover;
}

.body_light_img {
    background: var(--fondo1) no-repeat 0px 0px;
    background-size: cover;
}

.title_side {
    background-color: var(--color2);
    color: var(--blanco);
    font-size: 1.6em;
    font-weight: bold;
    padding-left: 5%;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0px 30px 30px 0px;
    -moz-border-radius: 0px 30px 30px 0px;
    -webkit-border-radius: 0px 30px 30px 0px;
    border: 0px solid var(--gris);
}

.btn-success {
    background-color: var(--color3);
    border-color: var(--color3);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    color: var(--blanco) !important;
    background-color: var(--color6) !important;
    border-color: var(--color6) !important;
    box-shadow: none !important;
}
/*-- //Generales --*/



/*-- Login --*/
.body_img_login {
    background: var(--fondo1) no-repeat 0px 0px;
    background-size: cover;
    min-height: 600px;
}

.login_background {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--blanco);
    width: 85%;
    padding: 0;
    -webkit-box-shadow: 3px 12px 28px 0px rgba(0,0,0,0.31);
    -moz-box-shadow: 3px 12px 28px 0px rgba(0,0,0,0.31);
    box-shadow: 3px 12px 28px 0px rgba(0,0,0,0.31);
}

.div_login {
    margin: 0 auto;
    width: 80%;
    padding-top: 30px;
}

.titulo_login {
    background-color: #57B034;
    height: 110px;
    margin: 0 auto;
    width: 100%;
}

.titulo_login legend {
    color: var(--blanco);
    font-size: 1.75em;
    font-weight: 600;
}

.form_button_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form_buttons {
    margin: auto;
    width: 50%;
    height: 40px;
    -webkit-border-radius: 20px 20px;
}

.form_field {
    border-left-color: var(--color7);
    border-radius: 0;
    background-color: var(--color5);
    border-color: var(--color5);
    color: var(--color7);
}

.form_field:disabled {
    background: var(--gris);
}

.form_icon {
    background-color: var(--color5);
    border-color: var(--color5);
    width: 50px;
    padding: 0;
}

.form_icon i {
    margin: auto;
    color: var(--color7);
}

.form_field::placeholder {
    color: var(--color7);
    font-size: 14px;
}

.form_field:focus {
    border-color:  var(--color5);
    background-color: var(--color5);
    color: var(--color7);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-left-color: var(--color5);
}
/*-- //Login --*/



/*-- Registro --*/
.body_img_register {
    background: var(--fondo1) no-repeat 0px 0px;
    background-size: cover;
    min-height: 800px;
}

.register_background {
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--blanco);
    width: 100%;
    padding: 0;
    padding-bottom: 100px;
    margin-bottom: 5%;
    -webkit-box-shadow: 3px 12px 28px 0px rgba(0,0,0,0.31);
    -moz-box-shadow: 3px 12px 28px 0px rgba(0,0,0,0.31);
    box-shadow: 3px 12px 28px 0px rgba(0,0,0,0.31);
}

.div_register {
    margin: 0 auto;
    width: 95%;
    padding: 30px;
}
/*-- //Registro --*/



/*-- Test --*/
.test_background {
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--gris);
    width: 700px;
    height: 550px;
    -webkit-border-radius: 20px 20px;
}

.div_test {
    top: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 650px;
}

.test {
    width: 100%;
}

.span_correct {
    color: var(--respuesta_test_correcta) !important;
}

.span_incorrect {
    color: var(--repsuesta_test_incorrecta) !important;
}
/*-- //Test --*/



/*-- Políticas --*/
.policies_text_container {
    margin: 30px 60px;
}

.policies_text_container a {
    cursor: auto;
}

.policies_content {
    text-align: justify;
    padding: 15px 30px 15px 0px;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #3e3e3e;
}

.policies_topics {
    margin: 20px 0px;
    text-align: justify;
}

.policies_topics span {
    background-color: var(--color2);
    color: #fff;
    border: 0px solid #ccc;
    font-weight: 200;
    padding: 1% 2%;
    font-size: 1.2em;
    font-weight: bold;
}
/*-- //Políticas --*/



/*-- Responsive design --*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1400px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1900px) {
}

/*-- //Responsive design --*/
