/* =============== */
/* === General === */
/* =============== */

#front-page
/* #front-page h2, */
#front-page h3,
/* #colophon h1, */
/* #colophon h2, */
#colophon h3 {
	font-family: 'Hind', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
}

/* #front-page h1,
#colophon h1 {
	font-size: 50px;
	line-height: 65px;
	letter-spacing: 2px;
	margin-bottom: 20px;
} */

/* #front-page h2,
#colophon h2 {
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 10px;
} */

/* #front-page h3,
#colophon h3 {
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 2px;
	margin-bottom: 15px;
} */

/*  #front-page h4, */
#colophon h4 {
  	font-family: 'Playfair Display', serif;
	font-size: 16px;
	line-height: 16px;
  	font-style: italic;
	letter-spacing: 1.5px;
  	text-transform: none; 
} 
.sub-title-home-page{
	font-size: 30px;
}

/* #front-page h4 {
  font-weight: 900;
} */

#colophon h4 {
  font-weight: 700;
}

/* #front-page .link {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  text-transform: capitalize;
  padding: 19px 44px 16px;
  letter-spacing: 1.5px;
}

#front-page .link:hover {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	transition: none !important;
}

#front-page .link.button.ghost {
  padding: 17px 40px 14px;
	border: 2px solid #fff !important;
}

#front-page .link.button.ghost.dark {
	border: 2px solid #113A3E !important;
} */

#fp-group-1 {
  background-image: url("/wp-content/themes/vault/images/fp-group1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#fp-group-3 {
  background-image: url("/wp-content/themes/vault/images/fp-group3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* =================== */
/* === Hero Banner === */
/* =================== */

#fp-hero-banner {
  display: grid;
  grid-template-columns: 1fr;
  --hero-banner-height: 105vh; 
  height: var(--hero-banner-height);
  width: 100%;
}

#fp-hero-banner #hero-video-wrap {
  position: relative;
  height: var(--hero-banner-height);
  max-width: 100%;
  overflow: hidden;
}

#fp-hero-banner #hero-video-wrap video {
  display: block;
  width: 100%;
  height: var(--hero-banner-height);
  object-fit: cover;
}

@media (width < 1400px) {
	#fp-hero-banner {
		--hero-banner-height: 105vh;
	}
}


@media (width < 550px ) {
  #fp-hero-banner #hero-video-wrap {
    max-width: 100vw;
	margin-top: 61px;
  }

  #fp-hero-banner {
    --hero-banner-height: initial;
  }

  #fp-hero-banner #hero-video-wrap video {
    object-position: center; /* Center the video when logo is cut off */
	max-width: 100%;
	object-fit: contain;
  }
}

/* =================== */
/* === Work Blocks === */
/* =================== */

#fp-work-blocks {
	--fp-work-blocks-mt: 80px;
	margin-top: 0px;
  margin-bottom: 140px;
}

#fp-work-blocks .heading {
  text-align: center;
  margin-bottom: 30px;
}


#fp-work-blocks .heading h2 {
  margin-bottom: 0;
}

#fp-work-blocks .link-wrap {
  text-align: center;
  margin-top: 30px;
}

#fp-work-blocks .project {
  margin-bottom: 30px;
	padding-right: 7px !important;
	padding-left: 7px !important;
}

#fp-work-blocks .project .inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

#fp-work-blocks .project.small {
  height: 300px;
}

#fp-work-blocks .project.large {
  height: 400px;
}

#fp-work-blocks .project.larger {
	height: 500px;
}

#fp-work-blocks .project .clicker {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  background: none;
}

#fp-work-blocks .project .clicker span {
  position: absolute;
  overflow: hidden;
  left: 15px;
  right: 80px;
  bottom: 15px;
  opacity: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-family: 'Hind', sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out; 
}

#fp-work-blocks .project .arrow {
  position: absolute;
  z-index: 3;
  height: 18px;
  width: auto;
  bottom: 15px;
  right: 15px;
  opacity: 0.7;
  transition: all 0.3s ease-in-out; 
}

#fp-work-blocks .project .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scale(1);
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

#fp-work-blocks .project .bg.front {
  z-index: 1;
  opacity: 1;
}

#fp-work-blocks .project .bg.back {
  z-index: 0;
  opacity: 1;
  background-color: #063c37;
  color: #063c37;
}

#fp-work-blocks .project:hover .clicker span {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

#fp-work-blocks .project:hover .arrow {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#fp-work-blocks .project:hover .bg {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}

 #fp-work-blocks .project:hover .bg.front {
  opacity: 0.2;
  transform: grayscale(0.2) saturation(3) brightness(0.5);
}

@media (width < 550px) {
	
	#fp-work-blocks {
		--fp-work-blocks-mt: 40px;
	}
}


/* =================== */
/* === Agency Reel === */
/* =================== */

#fp-agency-reel {
  padding-bottom: 120px;
}

#fp-agency-reel h2 {
  text-align: center;
  margin-bottom: 30px;
}

#fp-agency-reel video {
  width: 100%;
  max-height: 100%;
}

#fp-agency-reel video:hover {
  cursor: pointer;
}

#reel-video {

}

/* ====================== */
/* === Our Philosophy === */
/* ====================== */

#fp-our-philosophy {
  background: transparent linear-gradient(120deg, #11393D 0%, #08675C 100%, #08675C 100%) 0% 0% no-repeat padding-box;
  color: #ffffff;
  padding-top: 100px;
  padding-bottom: 110px;
}

#fp-our-philosophy h3 {
  margin-bottom: 25px;
}

#fp-our-philosophy .text :nth-last-child(1) {
  margin-bottom: 0;
}

#fp-our-philosophy .links {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 25px;
}

#fp-our-philosophy .links a {
  width: 260px;
  text-align: center;
}

#fp-our-philosophy .links a.first {
  margin-bottom: 25px;
}

@media (width < 1200px) {
	#fp-our-philosophy .links {
		align-items: start;
	}
}

/* ========================== */
/* === Strategic Insights === */
/* ========================== */

#fp-strategic-insights {
  padding-top: 120px;
  margin-bottom: 120px;
}

#fp-strategic-insights .wrapper {
  background: rgb(255 255 255 / 60%);
  padding: 40px 30px;
  border: 1px solid #eaeaea;
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}

.insights-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#fp-strategic-insights .heading h3 {
  margin-bottom: 25px;
}

#fp-strategic-insights .si-section-heading {
  outline: 0px solid blue; 
  display: flex;
  justify-content: center;
  text-align: center;
}

#fp-strategic-insights .si-section-heading h2 {
  margin-bottom: 10px;
}
.si-card-wrapper {
  display: grid;
  --si-card-wrapper-column-count: 3;
  grid-template-columns: repeat(var(--si-card-wrapper-column-count), 1fr);
  gap: 55px;
}

#fp-strategic-insights .si-card {
  height: 100%;
  outline: 0px dashed red;
	max-width: 275px;
}

#fp-strategic-insights .si-inner-wrap {
  max-width: 300px;
  margin: 0 auto;
  outline: 0px solid black;
}

#fp-strategic-insights .si-img-wrap {
  display: flex;
  justify-content: start;
/*   width: 100%;
  height: 300px; */
  outline: 0px solid red;
}

#fp-strategic-insights .si-img-wrap img {
  width: 100%;
  height: auto;
}

.si-content { 
  margin-top: 1rem;
}

.clamped-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/************************************/
/* strategic insights media queries */
/************************************/

@media (max-width: 1100px) {
  #fp-strategic-insights .wrapper {
    width: 90%;
  }
}

@media (max-width: 952px) {
  .si-card-wrapper {
    --si-card-wrapper-column-count: 1;
    gap: 50px;
  }  
  
}

/* ====================== */
/* === Call to Action === */
/* ====================== */

#fp-call-to-action {
  text-align: center;
  padding-bottom: 120px;
  position: relative;
}

#fp-call-to-action .inner {
  padding: 0 40px;
}

#fp-call-to-action .title :nth-last-child(1) {
  margin-bottom: 0;
}

#fp-call-to-action .link-wrap {
  margin-top: 30px;
}

/* ===================== */
/* === Media Queries === */
/* ===================== */

@media (max-width: 1449.98px) {

}

@media (max-width: 1322.98px) {

  #fp-work-blocks .project.large {
    height: 400px;
  }
  
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

  #fp-work-blocks .project.large,
  #fp-work-blocks .project.larger {
    height: 300px;
  }

  /* OUR PHILOSOPHY */

  #fp-our-philosophy .links {
    text-align: left;
    margin-top: 45px;
  }
  
  #fp-our-philosophy .links a.first {
    margin-right: 25px;
  }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

  /* WORK BLOCKS */

  #fp-work-blocks .project.small{
	height: 400px;
	}
  #fp-work-blocks .project.large{
	height: 400px;
	}
  #fp-work-blocks .project.larger {
    height: 400px;
  }

  #fp-work-blocks .project .clicker {
    background-image: url("/wp-content/themes/vault/images/work-mobile-gradient.png");
    background-size: 100% 120px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
  }

  #fp-work-blocks .project .clicker span {
    opacity: 1 !important;
  }
  
  #fp-work-blocks .project .arrow {
    opacity: 1 !important;
  }
  
  #fp-work-blocks .project .bg {
    transform: scale(1) !important;
  }
  
  #fp-work-blocks .project .bg.front {
    opacity: 1 !important;
  }

  #fp-strategic-insights .wrapper {
    padding: 40px 20px;
  }

  #content > img.happy-lines {
    bottom: -10px;
    height: 20px;
    display: none;
  }

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

  #fp-strategic-insights .wrapper {
    padding: 40px;
  }

  #fp-hero-banner .happy-lines {
    bottom: -10px;
    height: 20px;
  }

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

  /* GENERAL */

/* 	#front-page h1 {
    font-size: 32px;
    line-height: 47px;
	}

	#front-page h2 {
		font-size: 30px;
		line-height: 43px;
	}
	
	#front-page h3 {
		font-size: 18px;
		line-height: 28px;
	} */

  /* WORK BLOCKS */

  #fp-work-blocks .project.small,
  #fp-work-blocks .project.large,
  #fp-work-blocks .project.larger{
    height: 400px;
  }

  /* AGENCY REEL */

  #fp-agency-reel video.play {
    transform: scale(1);
    box-shadow: 0px 0px 16px 5px rgb(0 0 0 / 0%);
  }

  /* OUR PHILOSOPHY */

  #fp-our-philosophy .links {
    margin-top: 40px;
  }

  /* STRATEGIC INSIGHTS */

  #fp-strategic-insights .thumbnail {
    margin-bottom: 40px;
  }

  #fp-strategic-insights .wrapper {
    padding: 30px 10px;
  }


}
