/* - - - - - - - - - - - - - - - - - -

Lobo + Vetor Zero
Custom styles

Designed + developed by Mike at shots
https://shots.net

// - - - - - - - - - - - - - - - - - - */
h3, .h3 {
  font-family: var(--font-family-primary);
  text-transform: none;
  font-weight: 500;
}

.button {
  display: inline-flex;
  height: 40px;
  align-items: center;
  border-radius: 0;
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  padding: 10px 18px;
}

.menu li a,
.menu li span {
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
}
.menu li a.active {
  color: var(--text-strong-color);
}
.menu li span svg {
  display: none;
}
.menu li .menu__dropdown {
  left: 50%;
  transform: translate(-50%, 0);
}
.menu li .menu__dropdown ul:after {
  left: calc(50% - 10px);
}
.menu li:last-child .menu__dropdown {
  transform: none;
}
.menu li:last-child .menu__dropdown ul:after {
  right: 58px;
}
.menu:not(.menu:hover) .active {
  background: var(--accent-color);
  color: white;
}
.menu > li a:hover {
  background: var(--accent-color);
  color: white;
}
.menu__search {
  position: relative;
  width: 39px;
  height: 39px;
}
.menu__search__toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
  color: var(--text-strong-color);
}
.menu__search__toggle svg {
  fill: currentColor;
  height: 20px;
}
.menu__search__toggle:hover {
  background: var(--accent-color);
  color: white;
}
.menu__search form {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
}
.menu__search form input {
  background: var(--background-alt-color);
  border: 0;
  padding: 14px 14px 14px 0;
  height: 39px;
  width: 240px;
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-strong-color);
}
.menu__search form input:focus {
  outline: none;
}

.menu:has(.menu__search:focus-within) li:not(.menu__search) {
  pointer-events: none;
}
.menu:has(.menu__search:focus-within) li:not(.menu__search) a,
.menu:has(.menu__search:focus-within) li:not(.menu__search) span {
  opacity: 0;
  pointer-events: none;
}
.menu:has(.menu__search:focus-within) .menu__search__toggle {
  background: var(--background-alt-color);
  color: var(--text-strong-color);
  transform: translateX(-240px);
}
.menu:has(.menu__search:focus-within) .menu__search form {
  opacity: 1;
  pointer-events: all;
}

.body--header-inverse .menu li a:hover {
  color: white;
}
.body--header-inverse .menu__search__toggle {
  color: white;
}

.body--geolocation .menu {
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.3, 0, 1);
}
.body--geolocation .geolocation {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.geolocation {
  position: fixed;
  z-index: 100;
  top: calc(var(--wrap-pad) / 2);
  right: calc(var(--wrap-pad) / 2);
  max-width: min(100vw - var(--wrap-pad), 440px);
  background: var(--background-alt-color);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.4s cubic-bezier(0.2, 0.3, 0, 1);
}
.geolocation p {
  font-size: 16px;
  text-align: center;
  text-wrap: balance;
}
.geolocation__buttons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-flow: wrap;
}
.geolocation .button--light {
  background: var(--text-medium-color);
  color: var(--background-alt-color);
}
.geolocation .button--light:hover {
  background: var(--text-strong-color);
}
.geolocation .button--lobo {
  background: #ffaaaa;
  color: white;
}
.geolocation .button--lobo:hover {
  background: rgb(255, 139.4, 139.4);
}
.geolocation .button--vetor {
  background: #552a8b;
  color: white;
}
.geolocation .button--vetor:hover {
  background: rgb(113.7403314917, 56.2011049724, 185.9988950276);
}

.mobile-menu li span {
  font-size: calc(var(--menu-font-size-medium) * 0.6);
}
.mobile-menu li a {
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  font-weight: 800;
}

.footer {
  text-align: unset;
  background: var(--background-alt-color);
  padding: var(--section-margin-large) 0;
}
@media only screen and (min-width: 992px) {
  .footer__layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer__contact {
  margin-top: 0;
}
.footer__contact div {
  margin-top: 0;
}
.footer__contact p {
  font-size: 16px;
}
.footer__contact a {
  margin-right: 16px;
}
.footer__contact a:hover {
  color: var(--text-strong-color);
}
.footer__contact a, .footer__contact span {
  padding: 0;
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  font-weight: 800;
}
.footer .social {
  display: flex;
  gap: 6px;
}
.footer .social li {
  margin: 0;
}
.footer .social li a {
  background: var(--text-light-color);
  color: white;
  border-radius: 0;
}
.footer .social li a:hover {
  background: var(--accent-color);
}
.footer__right {
  margin-top: 24px;
}
@media only screen and (min-width: 992px) {
  .footer__right {
    text-align: right;
    margin-top: 0;
  }
}
.footer__right .button {
  margin-top: 16px;
  background: var(--text-light-color);
  color: white;
}
.footer__right .button:hover {
  background: var(--accent-color);
}

.marketing {
  margin-top: 0 !important;
  border-top: 1px solid #d8d3ca;
}
.marketing__link {
  font-weight: 500;
}
.marketing .marketing__copyright a {
  display: none;
}
.body--vetor .marketing {
  border-top-color: #3d384e;
}
.body--vetor .marketing .marketing__link {
  color: var(--text-strong-color);
}
.body--vetor .marketing .marketing__link svg path {
  fill: var(--text-strong-color);
}

.fullscreen-video-carousel__item {
  cursor: pointer;
}

.fullscreen-video-carousel__video {
  position: absolute;
  width: 100%;
  height: 100%;
}
.fullscreen-video-carousel__video:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background-image: linear-gradient(to bottom, rgba(19, 21, 21, 0.6), rgba(19, 21, 21, 0));
  pointer-events: none;
}
.fullscreen-video-carousel__video:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20vh;
  background-image: linear-gradient(to top, rgba(19, 21, 21, 0.6), rgba(19, 21, 21, 0));
  pointer-events: none;
}

.fullscreen-video-carousel__info h3 {
  font-family: var(--font-family-primary) !important;
  text-transform: none !important;
  font-size: 16px;
  font-weight: 500;
}
.fullscreen-video-carousel__info h3 span {
  font-weight: 200;
}

.fullscreen-video-carousel__play {
  padding: 15px 0;
}
.fullscreen-video-carousel__play svg {
  height: 40px;
}

#fp-nav {
  z-index: 90;
}

.fullpage-item.active .fullscreen-video-carousel__info h2,
.fullpage-item.active .fullscreen-video-carousel__info h3 {
  opacity: 1;
  transform: translate(0, 0);
}
.fullpage-item.active .fullscreen-video-carousel__info h2 {
  transition: all 0.4s cubic-bezier(0.2, 0.3, 0, 1) 0.5s;
}
.fullpage-item.active .fullscreen-video-carousel__info h3 {
  transition: all 0.8s cubic-bezier(0.2, 0.3, 0, 1) 0.5s;
}
.fullpage-item.active .fullscreen-video-carousel__play svg {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.2, 0.3, 0, 1) 0.6s;
}

.video__details li:nth-child(3) {
  color: var(--text-medium-color);
}

.grid-item__title h2 {
  text-wrap: balance;
}

.director-reels {
  margin-top: 0;
}

.director-reels__menu {
  margin-top: 20px !important;
}
.director-reels__menu:has(.button:hover) .button:not(:hover) {
  background: var(--background-alt-color);
  color: var(--text-medium-color);
}
.director-reels__menu .button:hover {
  background: var(--accent-color);
  color: var(--text-inverse-color);
}

.body--director .grid-item__title h2 {
  font-size: 20px;
}
.body--director .text h3 {
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
}

.director-link {
  margin-top: 20px;
}

.block-video__details {
  text-transform: none;
}
.block-video__details__primary {
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  font-weight: 800;
}
.block-video__details__secondary {
  font-weight: 500;
  color: var(--text-medium-color);
}

.video__details li:first-child {
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  font-weight: 800;
}

.block-player {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--background-inverse-color);
  width: auto;
  opacity: 1;
  visibility: visible;
}
.block-player__cover {
  cursor: pointer;
}
.block-player__cover:hover .block-video__play {
  transform: scale(0.9);
}
.block-player__cover--hidden {
  visibility: hidden;
}

.block-player-thumbs {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-flow: wrap;
}
.block-player-thumbs__thumb {
  width: 200px;
  cursor: pointer;
}
.block-player-thumbs__thumb__image {
  position: relative;
}
.block-player-thumbs__thumb__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 25, 43, 0.6);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
  display: flex;
}
.block-player-thumbs__thumb:hover .block-player-thumbs__thumb__overlay, .block-player-thumbs__thumb--active .block-player-thumbs__thumb__overlay {
  opacity: 1;
}
.block-player-thumbs__thumb__overlay svg {
  margin: auto;
  height: 32px;
  fill: white;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.2, 0.3, 0, 1);
}
.block-player-thumbs__thumb--active .block-player-thumbs__thumb__overlay svg {
  opacity: 1;
}
.block-player-thumbs__thumb__details {
  margin-top: 8px;
  font-size: 14px;
}
.block-player-thumbs__thumb__details__primary {
  font-family: var(--font-family-secondary);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-strong-color);
}
.block-player-thumbs__thumb__details__secondary {
  font-weight: 500;
  color: var(--text-medium-color);
}
@media only screen and (max-width: 687px) {
  .block-player-thumbs__thumb {
    width: 120px;
  }
  .block-player-thumbs__thumb .block-player-thumbs__thumb__details {
    display: none;
  }
}

.body--about .text {
  max-width: 960px;
}
.body--lobo .body--about .text {
  text-wrap: balance;
}
@media only screen and (min-width: 1600px) {
  .body--about .text {
    max-width: 1080px;
  }
}

.about-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
  column-gap: 60px;
}
@media only screen and (min-width: 992px) {
  .about-contact__grid {
    grid-template-columns: 1fr 1fr;
  }
  .body--vetor .about-contact__grid {
    grid-template-columns: fit-content(60%) 1fr;
  }
}
.about-contact__grid a {
  color: var(--text-medium-color);
}
.about-contact__grid a:hover {
  color: var(--text-strong-color);
}
.about-contact__primary h4 {
  margin-top: 30px;
}
.about-contact__primary h4:first-child {
  margin-top: 0;
}
.body--vetor .about-contact__primary .h2 {
  font-size: 18px;
}
@media only screen and (min-width: 688px) {
  .body--vetor .about-contact__primary .h2 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1312px) {
  .body--vetor .about-contact__primary .h2 {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1600px) {
  .body--vetor .about-contact__primary .h2 {
    font-size: 44px;
  }
}
.about-contact__details h4 {
  margin-top: 20px;
}
.about-contact__details h4:first-child {
  margin-top: 0;
}
.about-contact__details p {
  margin-top: 0;
  text-wrap: balance;
}

.about-reps__list {
  margin-top: 30px;
}
@media only screen and (min-width: 688px) {
  .about-reps__list {
    display: grid;
    column-gap: var(--wrap-pad);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-start;
  }
}
@media only screen and (min-width: 992px) {
  .about-reps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 992px) {
  .about-reps__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.about-reps__list__item {
  border-top: 2px solid var(--text-light-color);
  padding: 20px 0;
  display: grid;
  column-gap: 20px;
  row-gap: 4px;
}
.about-reps__list__col {
  text-wrap: balance;
  line-height: 1.2;
  word-break: break-word;
  font-size: 14px;
}
@media only screen and (min-width: 1600px) {
  .about-reps__list__col {
    font-size: 16px;
  }
}
.about-reps__list__col:first-child, .about-reps__list__col:nth-child(3) {
  font-weight: 600;
}
.about-reps__list__col a {
  color: var(--text-medium-color);
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}
.about-reps__list__col a:hover {
  color: var(--text-strong-color);
}

.body--search .grid-item__title h2 {
  font-size: 20px;
}

.search-header form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--background-alt-color);
}
.search-header form:focus-within {
  box-shadow: 0 0 0 2px var(--accent-color);
}
.search-header form input {
  background: transparent;
  border: 0;
  padding: 20px;
  height: 60px;
  flex-grow: 1;
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-strong-color);
}
@media only screen and (min-width: 992px) {
  .search-header form input {
    padding: 20px 28px;
    height: 80px;
    font-size: 32px;
  }
}
.search-header form input:focus {
  outline: none;
}
.search-header form button {
  margin-right: 10px;
}
@media only screen and (min-width: 992px) {
  .search-header form button {
    margin-right: 20px;
  }
}

.search-no-results {
  padding: var(--section-margin-large) var(--wrap-pad);
  background: var(--background-inverse-color);
}
.search-no-results h2 {
  color: var(--text-inverse-color);
  text-align: center;
  text-wrap: balance;
}

.search-pagination .wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.search-pagination .button {
  background: var(--text-light-color);
  color: white;
}
.search-pagination .button:hover {
  background: var(--accent-color);
}