/******     STRUCTURE PAGE WEB      ******/

/****** MAIN CONTENT OF THE PAGE ******/
html {
    height: 100%;
}

body {
    min-height: 100%;
}

.content-page {
    width: 100%;
    min-height: calc(100vh - 400px); /**height 100px of nav and height 400px of footer**/
}

/****** HEADER ******/
header {
    width: 100%;
}

/****** NAVBAR ******/
.nav-item {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.navbar-logo {
    height: 80px;
}

/****** FOOTER  ******/
footer{
    width: 100%;
}

.footer-logo:hover {
	opacity: 0.8;
}

/****** CAROUSEL ******/
.carousel-control-prev {
    left: -20px;
    border-bottom: 0;
    font-size: 40px;
}

.carousel-control-next {
    right: -20px;
    border-bottom: 0;
    font-size: 40px;
}

.carousel-indicators li {
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

/****** MODAL ******/
.modal-img-w-100 {
    min-width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

/****** GENERAL  ******/

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

.rounded-md {
    border-radius: 20px;
}

.btn-link:hover {
	opacity: 0.5;
}

/****** CARD PRIMARY ******/
.access-card-primary {
    height: 250px;
    overflow: scroll;
    border-width: 1px;
    border-style: solid;
    border-color: gray;

    .content {
        margin: 30px;
        & .title {
            text-align: center;
            color: gray;
            font-size: 1.25rem;
        }
        & .text {
            text-align: justify;
            color: black;
        }
    }

    &:hover {
        border-width: 3px;
        cursor: pointer;
        & .content .text {text-decoration: underline;}
        
    }
}

.img-w-100 {
    min-width: 100%;
    height: 400px;
    object-fit: cover;
}

/****** CARD SECONDARY ******/
.access-card-secondary {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 20px;

    & img {
        position: relative;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease-out;
    }

    & .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        backdrop-filter: blur(10px);
    }

    &:hover {
        & img {transform: scale(1.2);}
        cursor: pointer;
    }
}