@import url("https://fonts.googleapis.com/css2?family=Bentham&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");


:root {

  --calcWidth: calc(var(--vw, 1vw) * 100);
  --calcWidth: calc(var(--vh, 1vw) * 100);
}

* {
  box-sizing: border-box;
}

body {
  /* background-color: rgb(68, 79, 233); */
  font-family: "Roboto", sans-serif;

  background: linear-gradient(to left, rgb(26, 30, 85) 0%, rgb(68, 79, 233) 20%, rgb(68, 79, 233) 80%, rgb(26, 30, 85) 100%);

}

.footnote-copy {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: content-box;
  margin-bottom: 20px;
  color: #ced3f8;
  font-size: smaller;
}


.logo-div {
  position: absolute;
  top: 0;
  z-index: 12;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

}

.logo-div .mask-logo {
  background: rgba(255, 255, 255, 0.267);

  mask-image: linear-gradient(to right,
      transparent 0%,
      /* Start fully transparent on the left */
      black 15%,
      /* Become fully opaque at 15% from the left */
      black 85%,
      /* Remain fully opaque until 85% from the left */
      transparent 100%
      /* End fully transparent on the right */
    );
  /* For older browser compatibility */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%);

}



.kerrmedia-logo {
  /* top: calc(var(--vw, 1vw) * 5); */
  width: calc(var(--vw, 1vw) * 45);
  height: auto;
}

.full-page-image-div {
  width: 96%;

  background-color: lightblue;
  border-radius: 15px;
  /* Rounds all corners with a 15px radius */

  margin-top: calc(var(--vw, 1vw) * 20);
  padding: 0%;
  overflow: hidden;
  border: rgb(12, 16, 75) solid 4px;
  box-sizing: border-box;
}

.full-page-image {
  display: block;
  width: 100%;
  height: auto;
  /* object-fit: cover;
  padding: 0%; */
}

.mySlides {
  display: none;
  border-radius: clamp(8px, calc(var(--vw, 1vw) * 4), 44px);
  border: rgba(255, 255, 255, 0.384) solid 0px;
  overflow: hidden;

}

.about-return-div {
  margin-top: clamp(20px, calc(var(--vw, 1vw) * 3), 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.aboutreturn{
  height: 6%;
  display: flex;
  width: 28ch;
  justify-content: center;
  align-items: center;
  vertical-align: -0.2em;
  border: #2c2fc9 solide 2px;
  
}

.link-none {
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
  color: #a7aee4;
}

.link-none-pp {
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
  color: #a7aee4;
}



img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {

  /* Rounds all corners with a 15px radius */

  margin-top: calc(var(--vw, 1vw) * 22);

  width: 70%;

  margin-left: auto;
  margin-right: auto;

  max-width: 1000px;
  position: relative;


}

/* Caption text */
.image-caption-text {
  color: #f2f2f2;
  font-size: clamp(15px, calc(var(--vw, 1vw) * 4), 24px);
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: clamp(14px, calc(var(--vw, 1vw) * 18), 24px);
  padding: 4% 4%;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #8a7ef7;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #2c2fc9;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px
  }
}