:root {
  --gradient: linear-gradient(45deg, #004271, #c6135d);
  
  --c_grey: #5F6468;
  --c_grey-dark: #4D5357;
  --c_grey-light: #ebebeb;
  --c_red: #C24043;
  --c_red-light: #DA8C8E;
  
  --c_main_font: 'Poppins', sans-serif;
}

body{
    font-family: var(--c_main_font) !important
}

.text-grey{color:var(--c_grey) !important}
.text-grey-dark{color:var(--c_grey-dark) !important}
.text-red{color:var(--c_red) !important}
.text-red-light{color:var(--c_red-light) !important}
a.text-red:hover{color:var(--c_red) !important}
a.text-grey-dark:hover, a.text-grey:hover{color:var(--c_red) !important}

.rounded-25 {
    border-radius: 25px;
}

.btn-outline-primary {
    color: var(--c_grey);
    border-color: var(--c_grey);
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--c_grey);
    border-color: var(--c_grey);
}
.btn-check:checked+.btn-outline-primary{
    color: #fff;
    background-color: var(--c_grey);
    border-color: var(--c_grey);
}

.border-red {
    border-color: var(--c_red) !important;
}
.border-grey-dark {
    border-color: var(--c_grey-dark) !important;
}
.btn {
    border: none;
    padding: .75rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
}
.btn-grey{
    background-color: var(--c_grey);
    color:white;
    transition: all ease .3s;
}
.btn-grey:hover{
    background-color: var(--c_grey-dark);
    transition: all ease .3s;
    color:white;
}
.btn-red{
    background-color: var(--c_red);
    color:white;
    transition: all ease .3s;
}
.btn-red:hover{
    background-color: var(--c_grey);
    transition: all ease .3s;
    color:white;
}
.btn-red-dark{
    background-color: var(--c_grey-dark);
    color:white;
    transition: all ease .3s;
}
.btn-red-dark:hover{
    background-color: var(--c_grey);
    transition: all ease .3s;
    color:white;
}


.btn-white{
    background-color: white;
    color:var(--c_grey);
    transition: all ease .3s;
}
.btn-white:hover{
    background-color: var(--c_grey);
    transition: all ease .3s;
    color:white;
}
input, select{
    border-color: var(--c_grey-dark) !important;
    border-width: 2px;
}
/* dataTables fixedHeader */
 table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}}

.fs-xxl{font-size:clamp(3rem, 3vw, 6rem) !important}
.fs-xl{font-size:clamp(2.5rem, 2.5vw, 5rem) !important}
.fs-lg{font-size:clamp(2.25rem, 2.5vw, 5rem) !important}

.fs-1{font-size:clamp(2rem, 1.75vw, 4rem) !important}
.fs-2{font-size:clamp(1.75rem, .75vw, 3rem) !important}
.fs-3{font-size:clamp(1.5rem, .75vw, 2.25rem) !important}
.fs-4{font-size:clamp(1.25rem, .75vw, 1.85rem) !important}
.fs-5{font-size:clamp(1.15rem, .6vw, 1.7rem) !important}
.fs-6{font-size:clamp(.9rem, .5vw, 1.10rem) !important}
.fs-7{font-size:clamp(.85rem, .5vw, 1rem) !important}
.fs-8{font-size:clamp(.75rem, .5vw, 9rem) !important}

h1{
    font-weight: bold;
}

/* bs elements */

.bg-grey{background-color:var(--c_grey) !important}
.bg-grey-light{background-color:var(--c_grey-light) !important}
.bg-grey-dark{background-color:var(--c_grey-dark) !important}
.bg-red{background-color:var(--c_red) !important}

.bg-img{
    background-image: url(../img/bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.bg-img-fixed{
    background-attachment: fixed !important;
}
.bg-img-top{
    background-position: top !important;
}
.bg-img-center{
    background-position: center !important;
}
.z-1{z-index:1};
.z-2{z-index:2};
.z-3{z-index:3};

.form-check .form-check-input, .form-check .form-check-label  {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--c_grey);
    border-color:  var(--c_grey);
}
.form-check-input:checked + .form-check-label{
    color: var(--c_grey) !important;
    font-weight: bold !important;
}
.form-check-input:hover + .form-check-label, .form-check-label:hover{
    color: var(--c_grey) !important;
}
li.nav-item {
    border-right: 1px solid white;
}
li.nav-item.active{
    background-color: var(--c_turquesa);
}
.images-title{
    list-style-type: none;
    margin-left: -50px;
    padding-left: 30px;
    border-bottom: 1px solid;
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: bold;
}
/* RESPONSIVE */
@media (min-width: 1400px){
    
}
@media (max-width: 1920px){
    
    .bg-img {
        background-size: inherit !important;
    }
    
}
@media (max-width: 1274px){
    
}

@media (min-width: 992px){

    .min-vh-lg-100 {
        min-height: 100vh!important;
    }
    .ptop{
        padding-top:10vh;
    }

}
@media (max-width: 991px){
    footer{
        background-color: var(--c_grey);
        border-radius: 25px 25px 0 0;
    }
}
@media (max-width: 768px){
    
}