@charset "utf-8";
/* CSS Document */

html {
  overflow: overlay;
}

body {
	background-color: #F5F5F5;
	margin: 0;
}

a {
    color: #6b8eb2;
    text-decoration: none; 
  }

a:hover {
    color: #1c365c; 
     
  }

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #F5F5F5; 
}
 
::-webkit-scrollbar-thumb {
  background: #B9CADA;	
}

::-webkit-scrollbar-thumb:hover {
  background: #6b8eb2; 
}

:root {
	--bs-primary-rgb: 107, 143, 178; /* PRAX Blue */
	--bs-secondary-color: rgba(50, 50, 50, .8);
	--bs-dark-rgb: 107, 143, 178; /* PRAX Blue */
	--bs-body-font-family: 'Roboto', sans-serif;
	--bs-link-color: #6b8eb2;
    --bs-link-hover-color: #1c365c; 
	}
		
.btn-primary {
	--bs-btn-bg: #6b8eb2;
	--bs-btn-hover-bg: #1c365c;
}

.navbar-custom {
	--bs-navbar-padding-y: 0rem;
	--bs-navbar-nav-link-padding-x: 0.6rem;	
	z-index: 5;
	letter-spacing: 1px;

    }

.navbar-toggler {
      border: none;
    }	
	
.navbar-toggler:focus {
      outline: none;
      box-shadow: none; 
    }

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
	
  to {
    -webkit-transform: scale(1.1, 1.1);
  }
}


@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
	
  to {
    transform: scale(1.1, 1.1);
  }
}







.fs-7 {
  font-size: 0.75rem;
}

.carousel, .carousel-item {
    height: calc(100vh - 70px);
	width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
		    }

.carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover; 
    }
	  

.carousel-inner .carousel-item.active > img {
/* -webkit-animation: zoom 4s forwards linear;*/
animation: zoom 4s forwards linear;
transition: transform 0.5s linear;
}
      









.desaturate-20 {
	filter: saturate(80%) brightness(110%);
		}
.desaturate-30 {
	filter: saturate(70%) brightness(110%);
		}
.desaturate-40 {
	filter: saturate(60%) brightness(110%);
		}
.desaturate-50 {
	filter: saturate(50%) brightness(110%);
		}

.vignette {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  box-shadow: 0 0 200px rgba(0,0,0,0.5) inset;
	z-index: 3;
	pointer-events: none;

}
	
.praxlogo {
	width: 70px;
	height: 70px;
	top: 0;
	left: 0;
	background-image: url("https://praxstudio.com.au/images/PRAX_Logo_Colour.svg");
	background-size: contain;
	z-index: 2;
		}

.praxlogosvgcontainer {
	width: 350px;
	height: 350px;
	position: fixed;
	margin: auto;
	z-index: 2;
	animation: textAnimation 4s ease-in-out 1 forwards;
		}
		
svg path {
	fill: transparent;
	stroke: #6b8eb2;
	stroke-width: 30px;
	stroke-linejoin: "miter";
	stroke-dasharray: 11400;
	stroke-dashoffset: 11400;
	animation: textAnimation 4s ease-in-out 1 forwards;
		}

@keyframes textAnimation {
	0% {stroke-dashoffset: 11400;
		background-color: transparent;
	}
	
	80% {fill: transparent;
	background-color: transparent;
	}
	
	90% {background-color: transparent;
		fill: #6b8eb2;
		box-shadow: none;
	}
		
	100% {stroke-dashoffset: 0;
		fill: #6b8eb2;
		background-color: white;
		box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.20);
		}
		}

.overlay {
position: absolute;
top: 0;
width: calc(100% - 1.5rem);
height: 100%;
background-color: rgba(107, 143, 178, 0.7);
opacity: 0;
transition: opacity 0.3s ease;
    }	
	
.overlay-container {
position: relative;
    }

.overlay-container:hover .overlay {
opacity: 1;
    }
	
.overlay-text {
  	color: #FFFFFF;
  	font-family: 'Roboto', sans-serif;
	letter-spacing: 1px;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	}

.icon-bg {
	height: 80px;
	width: 80px;
}

iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%;
}

.img-container {
  height: 100%; 
}

.object-fit-cover {
  height: 100%;   
  object-fit: cover; 
}	
	
.footer-bottom {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
overflow: hidden;
}

.form-control-message {
		height: 260px;
	}

.card-bg {
border: var(--bs-border-width) solid var(--bs-border-color);
border-radius: var(--bs-border-radius);
	}

.hover-shadow {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add a deeper shadow */
  transform: translateY(-5px); /* Slightly lift the card */
}

@media (min-width: 768px) {
  .footer-bottom {
 position: fixed;
	
  }	
}
	
	
