@charset "utf-8";
/* #region ..... set up basic page resets .........*/
@view-transition{
  navigation: auto;
}
::view-transition-group(root) {
  animation-duration:2s;
}
body {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
  grid-template-rows: 130px 1fr auto;
  grid-template-columns: 1fr auto 1fr;
    text-rendering: optimizeLegibility;
    color: black;
    overflow-x: hidden;
  }

 @media screen and (min-width:1500px) {
  body{
grid-template-rows: 70px 1fr auto; 
}
}

  html {
    height: 100vh;
    height: 100svh;
    font-family: system-ui, sans-serif;
    line-height: 1.2rem;
  }
  * {
    box-sizing: border-box;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, ol, ul, li, article, figcaption, figure, footer, header, menu, nav, section, summary, time, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background:transparent;
  }

  img,
picture{
  max-width: 100%;
  display: block;
  height: auto;
  max-height: 100%;
  font-style:italic;
}
/* set up text items */
p, ul{
    font-size: 1rem;
    color: black;
    font-weight: 400;
    text-wrap:pretty;
    line-height: 1.7rem;  
    margin-bottom: 0.3rem;
  }
  ul{
    margin-left: 2rem;
  }
  p, li{
    text-wrap: pretty;
  }
  h1, h2, h3{
      color: black;
      text-wrap:balance;
  }
  
  h1{
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 50ch;
    font-weight: 700;
  }
  h2{
    font-size: 1.4rem;
    line-height: 1.7rem;
    font-weight: 600;
  }
  h3{
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: 600;
  }
  
  a{
    text-decoration: none;
    color: black;
  }
  .text80{
    max-width: 80ch;
    width: fit-content;
   margin-inline: auto;
;
  }

  .space1{
    margin-bottom:1rem;
  }
   .space2{
    margin-bottom:2rem;
  }
  .br{
    border: red solid thin;
  }
  .bb{
    border: blue solid thin;
  }
  .centerit{
    margin: auto;
  }
  /* #endregion ..... set up basic page resets .........*/

  /* #region basic page layout */
  .fixed-header{
    position:fixed;
    top:0;
   display: grid;
grid-template-columns: auto auto 1fr;
grid-template-rows: auto;
    z-index: 999;
   width:98%;
   margin: 0 1%;
    background-color: white;    
  }
  @media screen and (min-width:1000px) {
    .fixed-header {
      grid-template-columns: 1fr auto 1fr;
}
    
  }

  .main-wrapper{
    display:flex;
    flex-direction: column;
    grid-area: 2/1/3/-1;
    margin-inline:auto;
    max-width: 98%;
    overflow-x: hidden;
  }
  .footer {
    display: flex;
    grid-area: 3/1/4/-1;
    flex-direction: column;
      padding-top:1rem;
    justify-content: space-around;
    align-content: center;
    padding-bottom: 20px;

  }
  /* #endregion basic page layout */
/* #region fixed header */
/*.fixedheader-center {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-bottom: 2rem;
}*/
.logobox{
    grid-area: 1/1/2/3;
  
}
@media screen and (min-width:1000px) {
 .logobox{
   grid-area: 1/1/2/2;
 }
}
.langbox{
    grid-area: 1/3/2/4;
  display: flex;
  justify-content: center;
  align-items: center;
 min-width: 6rem;
 font-weight: 700;
 font-size: 1.5rem;
 }
 .langbox a{
    color: black;
    width: fit-content;
    margin-inline: auto 15px;
  ;
 }
 /*##############################################
set up navigation
###############################################*/
.arrowicon {
    border: solid #474396;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin: 0px 5px 4px 5px;
  }
  .right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .left {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .up {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .down {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .nav{
    display:flex;
    grid-area: 2/1/3/4;  
   margin: 0px auto 1rem auto;
    max-width: fit-content;
    height: 2rem;
  }
@media screen and (min-width:1500px)  {
  .nav {
   grid-area: 1/2/2/3;
   margin: auto;
   }
}


  .menu-icons {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
  }
  .nav-list {
    display: flex;
    justify-content: center;
    margin-inline: auto;
    width: 100%;
    z-index: 1600;
    list-style: none;
  }

  .nav ul {
    list-style: none;
    padding-left: 0px;
  }
  .nav-list li {
    line-height: 2rem;
    position: relative;
    list-style: none;
  }
  .nav-list a {
    display: block;
    color: black;
    padding: 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 650ms;
  }
  .nav-list a:hover {
    color: red;
  }
  .sub-menu li {
    line-height: 3rem;
  }
  .sub-menu {
    width: 13rem;
    display: block;
    position: absolute;
    border-top: 3px solid lightgray;
    background-color: white;
    z-index: 100;
    top: 5rem;
    left: 0rem;
    opacity: 0;
    visibility: hidden;
    transition: all 650ms ease;
  }
  .sub-menu a {
    font-weight: 400;
    font-size: 1rem;
  }
  .sub-menu::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: 3rem;
    border: 1.2rem solid transparent;
    border-bottom-color: lightgray;
  }
  .sub-menu .sub-menu::before {
    top: .9rem;
    left: -2.5rem;
    border: 1.2rem solid transparent;
    border-right-color: lightgray;
  }
  .sub-menu .sub-menu {
    border-top: none;
    border-left: 3px solid lightgray;
    top: 0;
    left: 160%;
  }
  .nav-list li:hover > .sub-menu {
    top: 3rem;
    opacity: 1;
    visibility: visible;
  }
  .sub-menu li:hover > .sub-menu {
    top: 0;
    left: 100%;
  }
  li.move-right {
    margin: auto 0 auto auto;
    line-height: initial;
  }
/* #endregion fixed header */
/* #region footer */
.footerlinks{
    display: flex;
    justify-content: space-around;
    width:100%;
    margin-inline: auto;
   }
   .footer-content{
    display: flex;
    flex-direction: column;
   width: fit-content;
  margin: 1rem auto;
   }
   .footersocial {
  display: flex;
  grid-area: 1/2/2/3;
    justify-content: center;
}
/* #endregion footer */

/*-- MARK: Content-->*/
/* #region content */
/* #region image fades */
.image-hover-group{
  display:grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
gap:2rem;
  width:100%;
  margin-inline: auto;
 }
 @media screen and (min-width:700px) {
  .image-hover-group{
 grid-template-columns: 1fr 1fr 1fr;
}
}
.image-hover-group:hover img {
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out; /* Adds a smooth transition effect */
}
.fade-images:hover  img {opacity: 1 !important;}
.fade-images-text:hover ~ .image-hover-group img{
    opacity: 1 !important;
}
.fade-images-text:hover ~ .image-hover-group img{
    opacity: 1 !important;
}
.image-hover-group img:hover {
  opacity: 1;
}


.fade-images{
  position : relative;
}

.fade-images-text{
  position : relative;
  bottom: 5.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-align: center;
  color:white;
  width: fit-content;
  margin-inline: auto;
  z-index:50;
  ;
  }
/* set up for desktop large sreens */
@media screen and (min-width:1200px) {
  .fade-images-text{
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.5rem;
    }
}
/* #endregion image fades */
.banner-cta{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  max-width: fit-content;  
  padding: 1rem 4rem;
  background-color: #f0f0f0;
  border-radius: 8px;
}
.p-heavy{
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}
.button-cta{
  display: block;
  background-color: black;
  color: white;
  border: medium outset black;
  padding: 1rem 1.5rem;
  margin:1rem;
}
.twocol-content{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap:2rem;
  max-width: 98%;
  margin-inline: 1%;
}
@media screen and (min-width:1200px) {
  .twocol-content{
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
} 
.bachelor-button-container{
    display: flex;
    justify-content: space-around;
    width:80%;
    margin:1rem 0px 0px 10%;
}
.bachelorgallery{
  margin-top: 2rem;
}
.name {
    font-size: 20px;
    font-weight: 600;
    font-family:'bradleyitc';
         line-height: 1.2rem;
    
        
}
/*-- MARK:Gal-->*/
/* #region gallery */
.galleryholder {
  display: block;
  width: 98%;
  max-width: 1700px;
  margin: 0 auto;
}

.containerhome {
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 40px;
  grid-auto-rows: auto;
  grid-gap: 20px;
  grid-auto-flow: dense;
  max-width: 1800px;
  margin: 30px auto;
}
.container_animals {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-gap: 20px;
  grid-auto-flow: dense;
  max-width: 1800px;
  margin: auto;
  overflow: hidden;
}
.gallery-item {
  width: 100%;
  height: 100%;
}
.gallery-item .image {
  width: 100%;
  height: 100%;
}
.gallery-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.vs-1 {
  grid-row: span 1;
}
.vs-3 {
  grid-row: span 3;
}
.vs-5 {
  grid-row: span 5;
}
.vs-6 {
  grid-row: span 6;
}
.vs-9 {
  grid-row: span 9;
}
.vs-8 {
  grid-row: span 8;
}
.vsls-500 {
  grid-row: span 25;
}
.vsls-240{
  grid-row: span 12;  
}
.vsls-320 {
  grid-row: span 16;
}
.vsls-533 {
  grid-row: span 26;
}
.vsls-600 {
  grid-row: span 30;
}
@media (min-width :600px) {
  .containerhome {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-gap: 20px;
    grid-auto-flow: dense;
    max-width: 1800px;
    margin: 30px auto;
  }
  .container_animals {
   grid-template-columns: repeat(2, 1fr);
  }
     @media (min-width :1000px) {
  .container_animals {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* #endregion gallery */

/*-- MARK:Lightbox-->*/
/* #region lightbox */
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../assets/lb/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../assets/lb/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../assets/lb/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../assets/lb/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* #endregion lightbox */
.formholder {
  display: block;
  width: 98%;
  max-width: 500px;
  margin: 0 auto;
}
}