.send-btn{
    color: white;
}
.footer h5{
    font-size: 25px;
    color: white!important;
}
.footer p{
    font-weight: normal;
    font-size: 16px;
    line-height:22px;
    padding: 0;
    margin: 0;
    color: white!important;
}

@font-face {
    font-family: 'LucidaGrande';
    src: url('fonts/LucidaGrande.ttf') format('truetype');
    font-weight: normal;
}
@font-face {
    font-family: 'LucidaGrande';
    src: url('fonts/LucidaGrandeBold.ttf') format('truetype');
    font-weight: bold;
}
body{
    font-family: 'LucidaGrande', sans-serif;
}
.nav-item{
    background-image: linear-gradient(#5286b4, #5286b4, #024d7d);
    margin-left: 2px;
    margin-right: 2px;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px!important;
    padding-bottom: 2px!important;
}
.nav-item.active{
    background-image: linear-gradient(#2b71ad, #3372ad, #023250);
}

.nav-item .nav-link{
    color: white!important;
}
.flag{
    width: 100px;
}
h2{
    font-size: 25px;
}
.text-green{
    color:#3e8205;
}
.text-blue{
    color:#01456a;
}
.bg-blue{
    background:#01456a;
}

p,li,a{
    color: #01456a;
}
a{
    font-weight: bolder;
}
.carousel-caption p,
.carousel-caption h5{
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: black!important;
}
.carousel-caption {
    right: 0;
    left: 0;
    background: #ffffff8c;
    width: 100%;
    text-align: left;
    padding-left: 28px;
    padding-bottom: 30px;
    bottom: 0px;
}



.splide {
    padding: 20px 0;
}

.splide__slide img {
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: transform 400ms;
    transform: scale(0.9);
    transform-origin: center center;
}

.splide__slide.is-active img {
    transform: scale(1);
}

.splide .splide__arrow {
    bottom: 0;
    height: 100%;
    transform: none;
    border-radius: unset;
    width: 40px;
    height: 40px;
    opacity: 0.9;
    top:calc(50% - 20px);
    border-radius: 50%;
    background: grey;
}
.splide .splide__arrow svg {
    filter: invert(1);
    width: 24px;
    height: 24px;
}

.splide__arrow.splide__arrow--prev {
    left: 0;
}

.splide__arrow.splide__arrow--next {
    right: 0;
}
.form-group{
    padding: 0;margin: 2px;
}
.form-control,textarea{
    border-radius: 0px!important;
}
.cookies{
    position: fixed;
    z-index: 10000;
    bottom: 0;
    display: flex;
    justify-content: space-between;
}
.cookies .text{
    display: flex;
    align-items: center;
}
.cookies .options a{
    text-decoration: underline;
}
.cookies .options .accept{
}
.cookies .options .reject{
    border: 2px solid grey;
    text-wrap: nowrap;
}
.cookies .options button{
    margin-left: 10px;
    margin-right:10px;
}
.whatsapp{
    position: fixed;
    right: 70px;
    bottom: 70px;
    background: white;
    border-radius: 50%;
}
.whatsapp p{
    display: none;
}
@media only screen and (max-width: 767px) {
    .cookies{
        background: #e7e7e7!important;
        overflow-x: scroll;
        padding-left: 10px!important;
        padding-right: 10px!important;
        display: inline;
    }
    .cookies .text{
        padding-top: 20px;
        display: block;
    }
    .cookies .options{
        display: flex;
        flex-direction: column-reverse;
    }
    .cookies .options a{
        text-wrap: nowrap;
    }
    .cookies .options button{
        width: 80%!important;
        margin-left: 2px;
        margin-right:2px;
        margin-top: 5px;
    }
    .cookies .options .btn.close{
        position: absolute;
        top: 0;
        right:0!important;
        text-align: right;
        padding: 10px;
    }

    .whatsapp img{
        width: 20px;
        height: 20px;
    }
    .whatsapp p{
        display: block;
        font-size: 12px;
    }

    .whatsapp{
        text-align: center;
        padding-top: 10px;
        padding-bottom: 0!important;
        width: 100%;
        position: fixed;
        bottom: 0px;
        right: 0;
        background: white;
        z-index: 1000;
        border-radius: 0%;
    }

    .flag{
        width: 50px;
    }
    .cover{
        width: 85vw;
    }
    h2{
        font-size: 20px;
    }

}

.switch {
    position: relative;
    float: left;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    display:none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(8, 125, 196, 1);
    background-color: var(--blue);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

input:focus + .slider {
    -webkit-box-shadow: 0 0 1px rgba(8, 125, 196, 1);
    box-shadow: 0 0 1px rgba(8, 125, 196, 1);
    -webkit-box-shadow: 0 0 1px var(--blue);
    box-shadow: 0 0 1px var(--blue);
}

.js-text {
    margin: 5px 30px 0 0;
    font-weight: bold;
    float: left;
}

.js-cookiebar {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

a.link {
    cursor: pointer;
}