/* // X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */

/* CSS for the website body */
body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: rgb(0, 0, 0);
  margin: 10px 10px;
}

.navbar-brand {
  -ms-text-size-adjust: auto;
}

.nav-link {
  color: white;  
}


/* background colour */
.bg-dark {
  --bs-bg-opacity: 0;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-primary {
  --bs-bg-opacity: 0;
  background-color: rgb(0, 0, 0)
}

/* project button */
.btn {
  font-size: 10px;
  margin-bottom: 10px;
}

/* footer */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(0, 0, 0);
  color: white;
  text-align: center;
}

.fixed-bottom {
  background-color: rgb(0, 0, 0);
  left: 23%;
  right: 23%;
}

/* CSS for privacy policy alert */
.alert {
  position: sticky;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* Privacy alert banner */
.alert-warning {
  margin-top: 20px;
  color: #000000;
  background-color: #575757;
  border-color: #000000;
}

.alert-warning .alert-link {
  color: #000000;
}

/* CSS for Exhibitions page  */
a {
  color: #ffffff;
  text-decoration: none;
}

a:link {
  color: rgb(255, 254, 254);
}

tbody,
tfoot,
th,
thead {
  font-size: 4vw;
}

td {
  font-size: 2vw;
}

/* image on index page */
.hero-image {
  filter: blur(8px);
  -webkit-filter: blur(8px);
  /* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* index page  code */
.hero-text {
  background-color: rgb(0,0,0); /* Fallback color */
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px; 
  text-align: center;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
  margin-top: 0.5rem;
  text-align: center;
  font-size: x-large;
}


.carousel-container {
  position: relative;
  display: block;
  max-width: 900px;
  min-height: 250px;
  margin-top: 20px; 
  margin: 10px auto;
} 

/* css for Portfolio gallery and other pages */
.main {
  width: 100%;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px 60px 0px;
  background-color: black;
}

.gallery {
  display: grid;
  width: 90%;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}


.gallery__item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.gallery__item img:hover {
  transform: scale(1.1);
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.733);
  margin-top: -1px;
  animation: zoom 0.3s ease-in-out;
}

@keyframes zoom {
  from {
      transform: scale(0);
  }
  to {
      transform: scale(1);
  }
}

.modal img {
  width: 90%;
  object-fit: cover;
}

.nextBtn{
  position: absolute;
  font-size: 25px; 
  color: white;
  right: 10%;
}

.prevBtn{
  position: absolute;
  font-size: 25px; 
  color: white;
  left: 10%;
}


.closeBtn {
  color: rgba(255, 255, 255, 0.87);
  font-size: 25px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.closeBtn:hover {
  color: rgb(255, 255, 255);
}

@media (max-width: 950px) {
  .gallery {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .gallery {
      grid-template-columns: repeat(1, 1fr);
  }
} 


/* for the publications and news pages */
.row {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
  /* padding: 0px 4px; */
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%;
  /* IE10 */
  flex: 25%;
  max-width: 100%;
  /* padding: 0 8px; */
}

.column .img-fluid {
  margin-top: 10px;
  margin-bottom: 8px;
}

.card-body {
  flex: 1 1 auto;
  padding: 0rem;
}

video {
  display: block;
  margin: 0 auto;
}

  
.carousel-container {
  position: relative;
  display: block;
  max-width: 900px;
  min-height: 250px;
  /* margin-top: 20px; */
  margin: 10px auto;
}

/* possibly unused */
.carousel-containerII {
  display: block;
  width: 100%;
  min-height: 250px;
  margin-top: 31px;
}

/* possibly unused */
.carousel-containerIII {
  display: block;
  margin-top: 31px;
  /* padding-left: 70px;
  padding-right: 50px; */
}


.flex-container {
  position: relative;
  margin-top: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  font-size: 30px;
  text-align: center;
}

.flex-item-left {
  background-color: #000000;
  padding: 0px;
  flex: 50%;
}

.flex-item-right {
  background-color: #000000;
  padding: 20px;
  flex: 50%;
}



/* CSS for main container in site */
.container-fluid {
  display: block;
  padding: 0.75rem;
  max-height: 600px;
  margin: 0px 5px;
}

.carousel-indicators .active {
  display: block;
  opacity: 1;
}

.carousel-indicators {
  /* margin-right: 1%;
  margin-left: 1%; */
  padding: 10px 10px;
  width: auto;
  height: 100px;
  position: static;
}

.carousel-indicators [data-bs-target] {
  width: 100px;
  margin-right: 1%;
  margin-left: 1%;
  position: static;
}

button.active {
  width: 100px;
}

.px {
  padding: 1rem !important;
}

.exhibition-container {
  margin: 40px 0 40px;
}

.navbar-light .navbar-toggler {
  color: rgb(255, 255, 255);
  border-color: rgba(0, 0, 0, .1);
}

/* social media css */
.social {
  margin: -25px 8px;
}

.fa {
  padding: 5px;
  font-size: 20px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin-left: -8px;
  margin-right: 8px;
  border-radius: 50%;
}

.sm-icons {
  flex-direction: row;
}

.carousel-container_footer {
  width: 400px;
  height: 200px;
}


@media only screen and (max-width: 800px) {
  .sm-icons .nav-item {
    padding-right: 1em;
  }
}

.fa:hover {
  opacity: 10.7;
}

.fa-instagram {
  background: #8a3ab9;
  background: #000000;
  color: white;
}

.fa-behance-square {
  background: #125688;
  background: #000000;
  color: white;
}

a:hover {
  color: rgb(250, 250, 250);
}

.markup-format ul:not(.wc_payment_methods) li {
  list-style-type: none !important;
}

/* IMAGES */
/* CSS for size of displayed main image */
/* .d-block{
  display:block;
  width: 100%;
  height: 40px;  
} */

.img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: scale-down;
  align-items: center;
}

.img-fluidI {
  margin-left: 25px;
  margin-right: 25px;
  width: 200px;
  height: 255px;
  /* object-fit: cover; */
}

.center {
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.bg-info {
  background-color: black !important;
  color: white;
  --bs-bg-opacity: 0;
  text-align: center;
}

.bg-infoII {
  background-color: black !important;
  color: white;
  --bs-bg-opacity: 0;
  text-align: center;
  font-size: small;
}

.placeholder {
  opacity: 1;
  display: inline-block !important;
  min-height: 20px;
  vertical-align: middle;
  cursor: wait;
  margin-top: 5px;
  margin-bottom: 2px;
}

.placeholderII {
  opacity: 1;
  display: inline-block !important;
  min-height: 5px;
  vertical-align: middle;
  cursor: wait;
  font-size: 0.7rem;
  /* margin-top: 50px; */
}

.placeholderIII {
  opacity: 1;
  display: inline-block !important;
  min-height: 5px;
  vertical-align: middle;
  cursor: wait;
  margin-top: 0px;
}

/* CSS for cards */
.card {
  color: white;
  background-color: rgb(0, 0, 0);
}

/* ABOUT PAGE CSS */
p {
  position: relative;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-top: 0px;
}

.text-left {
  font-size: x-small;
}

.text-center {
  font-size: medium;
  color: white;
  margin: 2px 0 2px 0;
  /* padding-bottom: 10px; */
  padding-top: 10px;
  padding-right: 10px;
}

div.l {
  text-align: left;
}

/* CONTACT PAGE CSS */
/*CSS for submit btn in contact */
.btn-kfs {
  /* color: rgb(1, 168, 219);   */
  background-color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.699);
  color: rgb(65, 62, 62);
}

h2 {
  color: rgb(255, 251, 251);
}

/* CSS for submit btn */
.btn.btn-info {
  background-color: rgb(248, 248, 248);
  border-color: rgba(245, 245, 245, 0.699);
  color: #000;
}

.btn.btn-info:hover {
  background: rgb(255, 255, 255);
}


/** on active **/
.btn.btn-info:active {
  background: rgb(255, 255, 255);
}

.form-label {
  color: white;
  margin-bottom: .5rem;
  margin-top: 1rem;
}

/* CSS for distance between main nav and collapsed navbar */
.navbar-nav {
  margin-top: 0.35rem;
  z-index: 1;
}

/* CSS for border around collapsed navbar*/
.btn-border-light {
  border-color: rgba(6, 110, 136, 0);
  border-style: solid;
  border-width: 1px;
}

/* LIGHTSLIDER CSS */
/* .lSSlideWrapper{
  position: fixed;
} */

/* .lSSlideOuter .lSPager.lSGallery{
margin: 2px;
} */

.lSAction>a {
  width: 32px;
  display: block;
  top: 49%;
  height: 32px;
  /* background-image: url(); */
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -15px;
  opacity: .5;
  -webkit-transition: opacity .35s linear 0s;
  transition: opacity .35s linear 0s;
}

#lightSlider {
  list-style: none outside none;
  padding-left: 0;
  margin-bottom: 220px;
  height: 2220px !important;
}

.lSSlideOuter .lSSlideWrapper .lightSlider.lSSlide {
  min-height: 280px !important;
  padding-bottom: 9% !important;
  /* object-fit: scale-down;  */
  /* object-fit: contain;    */
}

.lSSlideWrapper,
.lSSlideWrapper .lSFade {
  position: relative;
}

.lSSlideOuter .lSPager.lSGallery {
  height: 100px;
}

ul {
  list-style: none outside none;
  padding-left: 0;
  margin-bottom: 0;
}

li {
  display: block;
  cursor: pointer;
}

.lSSlideOuter .lSPager.lSGallery li {
  margin-top: 5px;
  opacity: 1.5;
}

.lSSlideOuter .lSPager.lSpg {
  position: absolute;
  bottom: 5%;
  display: inline-block;
}

.lSSlideOuter .lslide .active {
  height: 300px;
}

.lSSlideOuter .lSPager.lSGallery li.active {
  opacity: 1.5;
}

.lSSlideOuter .lSPager.lSGallery li.active:hover,
.lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 0;
}

.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: 80px;
  width: 150px;
  margin-left: 1px;
  margin-right: 1px;
}

li element.style {
  margin-right: 2px;
}

/* 07/07/22 css disused - maybe useful */
/* .lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li{
padding-bottom: 220;
} */

/* .lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li {
  border-radius: 0;
  width: 71px !important;
  margin-right: 4px !important;
}  */

/* li .lSlide.active img {
   height: 500px !important; 
}  */

/* .lSSlideOuter .lSSlideWrapper .lightSlider.lSSlide {
  min-height: 290px !important; 
   object-fit: scale-down; 
  /* object-fit: contain;   
} */

/* .lSSlideOuter .lSSlideWrapper .lightSlider.lSSlide li.lslide.active .img-fluid{
  height: auto;
} */

/* MEDIA QUERIES */
/* Responsive layout - makes a one column-layout instead of two-column layout */
/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
/* @media screen and (max-width: 700px) {
  .row {
    flex-direction: column;
  }
} */

@media (min-width: 320px) {

  /* ul .lSSlideOuter .lightSlider.lSSlide {
    max-width: 300px;
    height: 300px;
    min-height: 500px !important;
  } */
}

.img-fluid_II {
  width: 100%;
  height: auto;
}

@media (min-width: 425px) {

  .social {
    margin: -20px 12px;
  }

  .fa {
    padding: 5px;
    font-size: 20px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin-left: -8px;
    margin-right: 8px;
    border-radius: 50%;
  }

  /* .lSSlideOuter .lSSlideWrapper .lightSlider.lSSlide {
    min-height: 436px !important;
    /* object-fit: cover;  
  } */

  .img-fluid-portfolioI {
    width: 100%;
    height: 345px;
  }

  .img-fluid-portfolio {
    width: 100%;
    height: 345px;
  }

  .img-fluid-portfolioII {
    width: 100%;
    height: 345px;
  }
}

@media (min-width: 576px) and (orientation:landscape) {

  .social {
    margin: 0px -4px;
  }

  .fa {
    padding: 5px;
    font-size: 20px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin-left: -8px;
    margin-right: 8px;
    border-radius: 50%;
  }

  /* .img-fluid {
    width: 100%;
    height: 550px;
  } */

  .img-fluidIII {
    width: 100%;
    height: 225px;
  }

  .img-fluidIV {
    width: 100%;
    height: 370px;
  }

  .img-fluid-portfolio {
    width: 100%;
    height: 473px;
  }

  .img-fluid-portfolioI {
    width: 100%;
    height: 473px;
  }

  .img-fluid-portfolioII {
    width: 100%;
    height: 473px;
  }


  /* .lSSlideOuter .lSSlideWrapper .lightSlider.lSSlide {
    min-height: 77% !important;
    /* object-fit: cover;  
  } */
}


/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (orientation:portrait) {

  .social {
    margin: 0px 22px;
  }

  .fa {
    padding: 5px;
    font-size: 20px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin-left: -8px;
    margin-right: 8px;
    border-radius: 50%;
  }

  .img-fluid-portfolio {
    width: 100%;
    height: 473px;
  }

  .img-fluid-portfolioI {
    width: 100%;
    height: 473px;
  }

  .img-fluid-portfolioII {
    width: 100%;
    height: 473px;
  }

  .img-fluidII {
    width: 100%;
    height: 500px;
  }

  .img-fluidIII {
    width: 100%;
    height: 360px;
  }

  .img-fluidIV {
    width: 100%;
    height: 370px;
  }

  /* .lSSlideOuter .lSSlideWrapper .lightSlider.lSSlide {
    min-height: 436px !important;
    /* object-fit: cover;  
  } */
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

  .social {
    margin-left: 2%;
  }

  .img-fluid {
    max-width: 100%;
    height: auto;
    transform: translate(0%, 0%);
  }

  .img-fluidII {
    width: 100%;
    min-height: 700px;
  }

  .img-fluid-portfolio {
    width: 100%;
    height: 637px;
  }

  .img-fluid-portfolioI {
    width: 100%;
    height: 637px;
  }

  .img-fluid-portfolioII {
    width: 100%;
    height: 637px;
  }
}


@media screen and (max-width: 800px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media (max-width: 800px) {
  .flex-container {
    flex-direction: column;
  }
}


/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (min-width: 992px) {
  .column {
    -ms-flex: 50%;
    flex: 25%;
    max-width: 100%;
  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

  .social {
    margin-top: -25px;
  }

  .img-fluid-portfolioI {
    width: 100%;
    height: 320px;
  }

  .img-fluid-portfolioII {
    width: 100%;
    height: 320px;
  }

  .img-fluid-portfolio {
    width: 100%;
    height: 320px;
  }

  .img-fluidII {
    width: 100%;
    height: 850px;
  }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (min-width: 1200px) {
  .column {
    -ms-flex: 50%;
    flex: 25%;
    max-width: 100%;
  }
}


/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

  .social {
    margin-left: 1%;
    margin-right: 3%;
  }

  /* .img-fluid-index {
    width: 100%;
    height: 800px;
    object-fit: contain;
  } */

  /* .img-fluid {
    width: 100%;
    height: 790px;
  } */


  .img-fluid-portfolioI {
    width: 100%;
    height: 400px;
  }

  .img-fluid-portfolioII {
    width: 100%;
    height: 400px;
  }

  .img-fluidII {
    width: 100%;
    height: 1100px;
  }

  .img-fluid-portfolio {
    width: 100%;
    height: 400px;
  }
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1440px) {

  .social {
    margin-left: 1%;
    margin-right: 3%;
  }

  .img-fluid-portfolioI {
    width: 100%;
    /* height: auto;
    transform: translate(0%, 0%); */
  }

  .img-fluid-portfolioI {
    width: 100%;
    height: 500px;
  }

  .img-fluid-portfolioII {
    width: 100%;
    height: 500px;
  }

  .img-fluidII {
    width: 100%;
    height: 1200px;
  }

  .img-fluid-portfolio {
    width: 100%;
    height: 500px;
  }
}