
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

:root{
    --homeBackground: #F5F5F7;
    --orange: #FF6600;
    --blue:#006299;
    --banner: #FAFAFA;
    --bgColor: #E5E5E5;
    --darkblue: #184781;
    --orangeHover: #de5900;
}


body{
    background-color: var(--homeBackground);
    font-family: Rubik;
    
}

h1{
    font-weight: 700;
}
.paragraph{
    font-weight:500;
}




/** ----Cuerpo---- **/

.cuerpo {
    background-color: transparent !important;
    position: relative;
    margin: 0 0 30vh 0;
}

.centrar{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 5em;
}
.right{
    display: flex;
    align-items: center;
    justify-content: end;
}
.left{
    display: flex;
    align-items: center;
    justify-content:left;
}

@media (max-width:991px){
    .right{
        justify-content: center;
    }
    .left{
        justify-content: center;
    }
}
.body__title{
    margin: 8em 0 2em 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.body__title h1{
    font-size: 52pt;
    line-height: 54pt;
    color:#002133;
    font-weight: bold;
}
@media (max-width: 500px){
    .body__title h1{
        margin-top: 2em;
        font-size: 42px;
        line-height: 46px;
    }
}
#collapse-tiendas{
    width: 100%;
    justify-content: center;
}
#collapse-tiendas img{
    width: 7em;
}

.cuerpo::before{
    content: "";
    background-color:transparent;
    width: 852px;
    height: 852px;
    border-radius: 100%;
    border: 15em solid var(--darkblue);
    position: absolute;
    left: -500px;
    top: 100px;
    z-index: -10;
}
.cuerpo::after{
    display: block;
    position: absolute;
    content: "";
    background-color: transparent;
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -450px;
    border-radius: 100%;
    border: 10em solid var(--orange);
    z-index: -10;
}
@media (max-width:766px){
     .cuerpo::before{
    width: 0;
    height: 0;
    }
    .cuerpo::after{
    width: 0;
    height: 0;
    }
}


/**----------------------Eventos----------------------**/

.card__info {
    padding: 0;
    background: linear-gradient(transparent 30%, #FFFFFF 10%);
    border-radius: 23px;
    width: 100%;
    height: auto;    
    max-width: 25em;
    margin: 0.5em 0 0 0;
    float: left;
    /* box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1); */
}
.card__info img {
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
    width: 100%;
}
.card__body{
    /* height: 9.5em; */
    margin: 5% 0 0 0;
    padding: .5em;
}
.card__body h5{
    color: var(--orange);
    font-size: 14px;
    font-weight: 300;
}
.ver__fotos{
    background: #FFFFFF;
    color: var(--blue);
    border: var(--blue) 1px solid;
    border-radius: 8px;
    width: 80%;
    padding: .3em 0;
    margin-bottom: 1em;
}
@media (max-width:695px){
    .body__title {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0;
    }
    .centrar{
        padding: 0 1.5em;
    }
}
/**-------------------------Modal------------------------**/

.modal-header{
    background-color: var(--blue);
}
.modal-title{
    color: white;
    font-size: 16px;
    font-weight: bold;
}
#cont-scroll{
    display: flex;
    overflow-y: auto; 
    overflow-x: hidden;
    height: max-content;
    max-height: 80vh;
}
#cont-scroll::-webkit-scrollbar {
    width: 3px;
}
#cont-scroll::-webkit-scrollbar-track {
    background-color: rgba(7, 27, 143, 0.2);
    border-radius: 5px;
}
#cont-scroll::-webkit-scrollbar-thumb {
    background-color: var(--darkblue);
    border-radius: 5px; 
}
#cont-scroll::-webkit-scrollbar-button {
    display: none; 
}
.carousel-item {
    margin: 0 1em;
    z-index: 10;
}
.carousel-item img{
    width: 500px;
    border-radius: 16px;
}
.carousel-item p button{
    background-color: transparent ;
    border: transparent ;
    color: var(--blue);
}
.centrar{
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width:991px){
    #cont-scroll{
    height: max-content;
    max-height: 50vh;
    }
    .carousel-item{
        margin: 0 0;
    }
    .card__descriptiva{
        top:0;
        margin-top: 10vh;
        margin-bottom: 0;
    }
    .carousel-item img{
        width: 400px;
    }
}
@media (max-width:575px){
    .carousel-item img{
        width: 80vw;
    }
}
/* --------------Seguirnos------------- */
h4 a{
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
}
.seguirnos{
    background:linear-gradient(#013766,#050B12);
    padding: 25px;
    border-radius: 24px;
    width: 55vw;
    min-width: min-content;
    color: white;
    margin: 3% 0 50vh 0;
    z-index: 0;
}
.seguirnos div{
    display: grid;
    justify-content: center;
}
.seguirnos h4{
    font-size: 14px;
    color: var(--orange);
}
.seguirnos h3{
    font-size: 16px;
    font-weight: 100;
}
#mail{
    position: relative;
    height: 50px;
    min-height: max-content;
    margin: 3% 0;
    display: flex;
    justify-content: center;
}
#mail input{
    border-radius: 12px;
    border-color:transparent;
    font-family: Rubik;
    width: 40vw;
}
#button-imput{
    position:absolute;
    right: 6vw;
    margin: 5px 6px;
    background-color: var(--orange);
    border-radius: 12px;
    border-color: transparent transparent;
    color: white;
}
@media (min-width:1900px){
    #button-imput{
        right: 7vw;
    }
}
@media (max-width: 460px){
    .seguirnos{
        width: 98vw;
    }
    #mail input{
        width: 80vw;
    }
    #button-imput{
        right: 3vw;
    }
}


