@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&family=Roboto:wght@300&display=swap');

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
   }

.main {
    flex-grow: 1;
}

h3 {
    margin: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #00A499;
    }

a {
    text-decoration: none;
    color: #00A499;
}
    
a.hover {
      background-color: red;
      color: #0b5234;
    }
    
p {
    font-family: "Roboto+Condensed", sans-serif;
    font-size: 1.0em;
    font-weight: 300;
    }
    
/* Make the image fully responsive */
.carousel-inner img {
    width: 100%;
    }
    
.cus-gallery {
    height: 35vw;
    object-fit: cover;
    }
    
.cus-card {
    width: 400px;
    }
    
.cus-card:hover {
    border: 1px solid #00A499;
    }
    
.cus-img {
    width: 300px;
    object-fit: cover;
        
    }

.carousel-control-next-icon {
    position: absolute;
    right: -50px;
    background-color: rgba(250, 250, 250, 0.1);
}

.carousel-control-prev-icon {
    position: absolute;
    left: -50px;
    background-color: rgba(250, 250, 250, 0.1);
}

.carousel-indicators {
    position: absolute;
    bottom: -50px;
}

.exhibitionLogo {
    height: 100px;
}

.toast-pos {
    font-family: 'Roboto Condensed', sans-serif;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.button-content {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.875rem;
}

@media (max-width: 991px) {

    .carousel-control-next-icon {
        position: absolute;
        right: 10px;
        background-color: rgba(250, 250, 250, 0.8);
    }
    
    .carousel-control-prev-icon {
        position: absolute;
        left: 10px;
        background-color: rgba(250, 250, 250, 0.8);
    }
    
}




