@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Gilda+Display&display=swap');

body {
	font-family: "Barlow", sans-serif;
	font-weight: 300;
	color: #fff;
	background-color: #222;
}

.preHeader {
	font-family: "Barlow Condensed", sans-serif;
	color: #aa8453;
	font-weight: 400;
	letter-spacing: .5rem;
	opacity: 1;
}

h1, h2, h3, h4, h5 {
	font-family: "Gilda Display", serif;
	font-weight: 400;
}
p {
	letter-spacing: .05rem;
	opacity: .5;
}

@media screen and (min-width:1400px) {
	.display-1 {
		font-size: 6rem;
	}
}

@media screen and (max-width:767px) {
	.display-1 {
		font-size: 2rem;
		line-height: 2.4rem;
	}
	
	.carousel img {
		height: 400px;
		width: auto;
		object-fit: cover;
		object-position: center center;
	}
}

header .nav-link {
	opacity: 1;
}
.display-1 {
	font-family: "Gilda Display", serif;
}

nav {
	text-transform: uppercase;
}

.mobileLogo {
	height: 40px;
	
}

.navScroll1 img {
	height: 50px;
}
.navScroll1 {
	margin-top: -100px;
	transition: .4s;
	
	box-shadow: 2px 2px 4px rgba(0,0,0,.5);
}
.navScroll1.shrink {
	margin-top: 0px;
	
}

.color {
	color: #aa8453;
}

.bgColor {
	background-color: #1b1b1b;
}

.bgGradient {
	 background: radial-gradient(circle at top right, #2a2a2a,#222);
}


.nav-link {
	color: #fff;
	opacity: .6;
	font-size: 14px;
	transition: .2s;
	font-weight: 500;
	letter-spacing: .1rem;
}
.nav-link:hover {
	color: #fff!important;
	opacity: 1;
	font-size: 14px;
}

.nav-link.active {
	color: #fff;
	opacity: 1!important;
	font-size: 14px;
	font-weight: 500;
}

.nav-button {
	color: #fff!important;
	opacity: 1;
	border: solid #fff 1px;
	padding: .5rem 1.5rem;
	transition: .2s ease-in;
	font-weight: 500;
}

nav.shrink .nav-button {
	padding: .25rem 1.5rem;
}

.nav-link.btn1 {
	font-size: 14px;
	display: block;
}
.nav-link.btn1:hover {
	color: #fff!important;
}

.navigation1 .nav-item a {
	padding: 4px 0!important;
	opacity: 1!important;
}

.parallax {
      position: relative;
      min-height: 100vh;     
      overflow: hidden;
    }

    .parallax-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 120%; /* a bit taller so it has room to move */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transform: translateY(0);
      will-change: transform;
      z-index: -1;
    }

.navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }


.btn1 {
	background-color: transparent;
	color: #fff;
	letter-spacing: .1rem;
	font-weight: 500;
	font-size: 18px;
	border: solid #fff 1px;
	text-transform: uppercase;
	position: relative;
	transition: .4s;
	overflow: hidden;
}

.btn1:hover {
	border: solid #aa8453 1px;
	color: #fff!important;
}

.btn1::before {
	content: "";
	height: 110%;
	width: 0%;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	background-color: #fff;
	z-index: -1;
	transition: .4s ease-out;
	opacity: 0;
}

.btn1:hover::before {
	content: "";
	height: 110%;
	width: 110%;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	background-color: #aa8453;
	z-index: -1;
	opacity: 1;
}

.bgGray {
	background-color: #dcdcdc;
}

.shadow {
	box-shadow: 2px 2px 4px rgba(0,0,0,.75)!important;
}

.bounce_button:hover {
  animation: bounce 0.4s ease-in; /* Apply bounce animation on hover */
}

@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform:     translateY(-30px);
		transform:         translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-5px);
		-ms-transform:     translateY(-5px);
		transform:         translateY(-5px)
	}
}

.smaller {
	font-size: 12px;
}

.carousel-caption {
	background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
	position: absolute;
  right: 0%;
  bottom: 0rem;
  left: 0%;
  padding-top: 1.25rem;
}

.carousel-indicators button {
	height: 12px!important;
	width: 12px!important;
	border-radius: 50%;
}

.opacity-1 {
	opacity: 1!important;
}

.footerLink {
	transition: .4s;
}

.footerLink:hover {
	filter: brightness(0) invert();
}

.ag-format-container {
  width: 1142px;
  margin: 0 auto;
}

.ag-animate-text-block {
  margin: 50px 0;
}
.ag-toggle_title {	
  line-height: 1.2;
  margin: 0 0 50px;
  text-align: center;
  color: #FFF;
}
.ag-toggle_tagline {
  margin: 0 0 20px;

  text-align: center;
  font-size: 20px;
  color: #FFF;
}
.cd-words-wrapper {
  color: #aa8453;
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

}

@media only screen and (max-width: 639px) {
  .ag-toggle_title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 479px) {

}

@media (min-width: 768px) and (max-width: 979px) {
  .ag-format-container {
    width: 750px;
  }

}

@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 960px;
  }

}
.border-white {
  --bs-border-opacity: .15;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

li::marker {
	color: #aa8453!important;
}

.sentence {
  font-weight: 300;
  font-size: 3rem;
	line-height: 3rem;
}

.slidingVertical{
	display: block;
	width: 100%;
}

.slidingVertical span{
  font-weight: 600;
	-webkit-animation: bottomToTop 9s cubic-bezier(0.6, 0.05, 0.4, 1) infinite 0s;
	        animation: bottomToTop 6.1s cubic-bezier(0.6, 0.05, 0.4, 1) infinite 0s;
	color: #aa8453;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	left: 50%!important;
	transform: translateX(-50%)!important;
}


.slidingVertical span:nth-child(2){
	        animation-delay: 2s;
  
}
.slidingVertical span:nth-child(3){
	        animation-delay: 4s;
}

/*topToBottom Animation*/

@-webkit-keyframes bottomToTop{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: translateY(20px); }
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(-20px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

img {
	transition: .4s;
}

img:hover {
	filter: brightness(1.2);
}
