:root{
    --blue: #343E91;
    --orange: #F85A4F;
    --lightblue: #C2D0DC;
}

body{
    font-family: "Roboto", sans-serif;
    color: black;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Krub", sans-serif;
}

.row{
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

.fw-normal{
    font-weight: 600 !important;
}


.text-blue{
    color: var(--blue) !important;
}

.bg-light{
    background-color: #E6E6E6;
}

.bg-lightblue{
    background-color: var(--lightblue);
}

.btn-light{
    color: var(--blue) !important;
}

.fs-0{
    font-size: 80px;
}

.mt-6{margin-top: 6rem;}
.mb-6{margin-bottom: 6rem;}
.my-6{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.fondo-oscuro{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.bg-blue{
    background-color: var(--blue);
    color: #fff;
}

#navbarSupportedContent{
    margin-bottom: 0;
}

.nav-link{
    color: black;
}

label{
    font-size: 16px;
    font-weight: 300;
    width: 100% !important;
}

textarea{
    height: 100px !important;
}

.btn-orange{
    background-color: var(--orange);
    color: white;
}

.btn-orange:hover{
    background-color: #cc4339;
    color: white;
    transition: 0.3s;
}

.btn-outline-orange{
    background-color: white;
    color: var(--orange);
    border: 1px solid var(--orange);
}

.btn-outline-orange:hover{
    background-color: var(--orange);
    color: white;
    transition: 0.3s;
}

.btn-blue{
    background-color: var(--blue);
    color: white;
}

.btn-blue:hover{
    background-color: #242a63;
    color: white;
    transition: 0.3s;
}

.whatsapp_btn{
    position: fixed;
    line-height: 1.4;
    color: white;
    text-align: center;
    border-radius: 50%;
    left:20px; 
    bottom:20px; 
    width:60px; 
    height:60px; 
    font-size:45px;
    background-color: #25d366;
    transition: 0.2s;
}

.whatsapp_btn:hover{
    background-color: #1da850;
    transition: 0.3s;
}

.border-blue {
    --bs-border-opacity: 1;
    border-color: rgba(52, 62, 145, var(--bs-border-opacity))!important;
}

.active.nav-item{
    border-bottom: 2px solid var(--orange);
}

.nav-item:hover{
    border-bottom: 2px solid var(--orange);
}

.badge.bg-blue{
    background-color: #e0e5f8;
    color: var(--blue);
}

.navigation.pagination{
    justify-content: center;
    font-size: 24px;
}

.page-numbers{
    color: var(--blue);
}

.page-numbers.current{
    color: black;
}

@media (max-width: 992px) {
    .fs-0{
        font-size: 2.5rem;
    }
    
    .mt-6{margin-top: 4.5rem;}
    .mb-6{margin-bottom: 4.5rem;}
    .my-6{
      margin-top: 4.5rem;
      margin-bottom: 4.5rem;
    }

   
}