
/* --- MAIN --- */

.carouselContainer {
    height: 650px;
}

.carouselContainer img {
    max-width: 100%;
    max-height: 100%;
    height: 650px;
    object-fit: contain;
}

/*Recreate the svg arrows and change the colour*/
.carousel-control-prev-icon {
    width: 40px;
    height: 40px;
    /*to change the colour of the arrows: change fill value The last 6 digits = hex value of colour.*/
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23808080' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23808080' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-caption {
    bottom: 230px;
    color: #fff;
}

.carousel-caption h5 {
    font-weight: bold;
}

/* Number text (1/3 etc) */
.totalImagesNumber {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/*.d-block w-100 {
    max-width: 100%;
    max-height: 100%;
}
*/
.carousel-item {
    height: 900px;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    /*max-width: 100%;*/
    max-height: 100%;
    z-index: -1;
}

/* CSS for the button on details page */
.projectButton {
    background-color: #008CBA; /* Blue */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

/* Left & Right Post */

.right-image-post {
    /*    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(250, 250, 250, 0.1);*/
}

.left-image img,
.right-image img {
    border-radius: 5px;
    height: auto;
    width: 100%;
}

.right-image-post h4,
.left-image-post h4 {
    margin-top: 30px;
}

.right-image-post p,
.left-image-post p {
    margin-top: 20px;
}

/* --- CSS for demo video --- */
.videoContainer {
    margin: 0 auto;
    width: 100%;
}

.videoContainer video {
    width: 100%;
    height: auto;
}

/*
.carousel-indicators li {
    width: 70px;
    height: 36px;
    border: 1px solid #222;
}

.carousel-indicators .active {
    border: 1px solid #ff7474;
}*/