/*
Theme Name: PeteDiazProductions
Author: Furlough
Author URI: https://wordpress.org/
Version: 0.1
Text Domain: petediazproductions
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  overflow-x: hidden;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 749px) {
  html,
  body {
    font-size: 14px;
  }
}
html *,
body * {
  box-sizing: border-box;
  max-width: 100%;
}

picture {
  display: flex;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: black;
  transition: all 0.5s ease;
}
a:hover {
  color: #D9A500;
}

h1 {
  font-size: 54px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 749px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 42px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 749px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 32px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 749px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 749px) {
  h4 {
    font-size: 14px;
  }
}

h5 {
  font-size: 18px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  h5 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 749px) {
  h5 {
    font-size: 12px;
  }
}

h6 {
  font-size: 14px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  h6 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 749px) {
  h6 {
    font-size: 10px;
  }
}

.color-primary {
  color: #D9A500;
}

.bg-primary {
  background: #D9A500;
}

.ft-main.ft-main--grid {
  display: grid;
  grid-template-columns: 100%;
  grid-template-areas: "header" "content";
}
.ft-main.ft-main--grid-double {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto 1fr;
  grid-template-areas: "slider header" "slider content";
}
@media only screen and (max-width: 991px) {
  .ft-main.ft-main--grid-double {
    grid-template-columns: 100%;
    grid-template-areas: "header" "slider" "content";
  }
}
.ft-main.ft-main--grid-double .ft-header,
.ft-main.ft-main--grid-double .ft-content {
  max-width: max(740px, 740 / 1920 * 100vw);
}
.ft-main .ft-main--left {
  grid-area: slider;
  padding-right: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .ft-main .ft-main--left {
    padding-right: 0;
  }
}
.ft-header {
  grid-area: header;
}

.ft-content {
  grid-area: content;
}
.ft-content > .ft-section-banner {
  margin-top: 0;
}
.ft-content > .ft-section-banner .ft-banner-absolute {
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .ft-content > .ft-section-banner .ft-banner-absolute {
    margin-top: 50px;
  }
}

.ft-button, .ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-slider-item--button {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.5s ease;
  font-weight: 500;
  cursor: pointer;
}
.ft-button.ft-button-1, .ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-button-1.ft-slider-item--button {
  background: #D9A500;
  color: #fff;
}
.ft-button.ft-button-1:hover, .ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-button-1.ft-slider-item--button:hover {
  background: #a67e00;
}
.ft-button.ft-button-2, .ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-button-2.ft-slider-item--button {
  background: #000;
  color: #fff;
}
.ft-button.ft-button-2:hover, .ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-button-2.ft-slider-item--button:hover {
  background: #D9A500;
}
.ft-button.ft-button-3, .ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-button-3.ft-slider-item--button {
  color: #fff;
  border: 1px solid #fff;
}
.ft-button.ft-button-3:hover, .ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-button-3.ft-slider-item--button:hover {
  border: 1px solid #D9A500;
  background: #D9A500;
}

.ft-section {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .ft-section {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .ft-section.ft-equipment-section {
    margin-top: 0;
  }
}

.ft-container {
  width: 100%;
  max-width: 1150px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.ft-container.without-padding {
  padding-left: 0;
  padding-right: 0;
}

.ft-text-left {
  text-align: left;
}

.ft-text-center {
  text-align: center;
}

.ft-text-right {
  text-align: right;
}

.ft-standard-content .ft-standard--title {
  margin-bottom: 8px;
}
@media only screen and (max-width: 749px) {
  .ft-standard-content .ft-standard--title {
    font-size: 30px;
    text-align: center;
  }
}
.ft-standard-content .ft-standard--title.equipment-title {
  margin-top: 0;
}
.ft-standard-content .ft-standard--subtitle {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 749px) {
  .ft-standard-content .ft-standard--subtitle {
    font-size: 18px;
  }
}
.ft-standard-content .ft-standard--textarea {
  margin-top: 40px;
}

.ft-contact-form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0;
}
.ft-contact-form p {
  margin-top: 0;
  margin-bottom: 0;
}
.ft-contact-form .ft-input-row .ft-input-col {
  margin-bottom: 20px;
}
.ft-contact-form .ft-input-row .ft-input-col .ft-input {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 42px;
  border: 1px solid transparent;
  border-radius: 13px;
  min-height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  background: rgba(49, 49, 49, 0.46);
}
.ft-contact-form .ft-input-row .ft-input-col .ft-input::placeholder {
  color: #fff;
}
.ft-contact-form .ft-message-col {
  position: relative;
}
.ft-contact-form .ft-message-col textarea {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  padding: 15px 20px 50px 20px;
  border: 1px solid transparent;
  color: #fff;
  background: rgba(49, 49, 49, 0.46);
  border-radius: 13px;
  height: 172px;
  margin-bottom: 20px;
}
.ft-contact-form .ft-message-col textarea::placeholder {
  color: #fff;
}
.ft-contact-form .ft-message-col .ft-input-submit .ft-input {
  cursor: pointer;
  height: 42px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  color: #fff;
  background: #D9A500;
  border-radius: 50px;
}
.ft-contact-form .ft-message-col .ft-input-submit .ft-input:hover {
  background: #a67e00;
}
.ft-contact-form .wpcf7-spinner {
  position: absolute;
  z-index: 1;
  top: 140px;
  right: 0;
  transform: translateX(-40px);
}

.ft-header {
  position: fixed;
  z-index: 100;
  height: auto;
  width: 100%;
  min-height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  transition: background-color 0.5s ease;
}
.ft-header.ft-header-scroll {
  background: #010307;
  transition: background-color 0.5s ease;
}
.ft-header.ft-header-scroll .header-menu .menu .menu-item a {
  line-height: 60px;
}
.ft-header.ft-header-scroll .ft-header--logo img {
  height: 50px;
}
.ft-header .toggle {
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .ft-header .toggle {
    display: none;
  }
}
.ft-header .toggle svg {
  margin-top: 5px;
  height: 24px;
}
.ft-header .toggle:hover svg path {
  fill: #D9A500;
  transition: all 0.5s ease;
}
.ft-header .ft-header--logo {
  width: 140px;
}
@media only screen and (max-width: 991px) {
  .ft-header .ft-header--logo {
    display: inline-flex;
    width: 100%;
    max-width: 70px;
  }
}
.ft-header .ft-header--logo img {
  height: 64px;
  width: auto;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .ft-header .ft-header--logo img {
    height: 50px;
  }
}
.ft-header .ft-header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .ft-header .ft-header-grid {
    height: 60px;
  }
}
.ft-header .ft-header-search {
  max-width: 740px;
}
.ft-header .ft-account {
  margin-left: 16px;
}
@media only screen and (max-width: 991px) {
  .ft-header .ft-account {
    display: none;
  }
}
.ft-header .ft-header--social-media {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .ft-header .ft-header--social-media {
    display: none;
  }
}
.ft-header .ft-header--social-media a:not(:last-child) {
  margin-right: 10px;
}

.header-menu {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .header-menu {
    display: none;
  }
}
.header-menu .menu {
  display: flex;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  justify-content: center;
}
.header-menu .menu .menu-item {
  display: inline-flex;
}
.header-menu .menu .menu-item a {
  display: inline-flex;
  margin: 0 16px;
  padding: 5px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 100px;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease;
}
.header-menu .menu .menu-item a:hover {
  color: #D9A500;
}
.header-menu .menu .menu-item.current-menu-item a {
  border-bottom: 2px solid #D9A500;
}

.sidebar {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 350px;
  min-height: 100vh;
  padding: 30px;
  background: #010307;
  transform: translateX(-110%);
  transition: all 0.5s ease;
  height: 100vh;
  overflow-y: scroll;
}
@media only screen and (min-width: 992px) {
  .sidebar {
    display: none !important;
  }
}
.sidebar::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.sidebar {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.sidebar .sidebar-logo {
  margin-top: 20px;
  margin-bottom: 40px;
}
.sidebar .sidebar-logo a {
  display: inline-flex;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul.menu {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
}
.sidebar ul.menu li:last-child {
  margin-bottom: 0;
}
.sidebar ul li {
  margin-bottom: 15px;
}
.sidebar ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
}
.sidebar ul .sub-menu li {
  margin-bottom: 0;
  margin-top: 7px;
}
.sidebar ul .sub-menu li a {
  font-weight: normal;
  color: #787878;
}
.sidebar .sidebar-social-media {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.sidebar .sidebar-social-media a:not(:last-child) {
  margin-right: 10px;
}

body.open-sidebar .sidebar {
  transform: translateX(0);
}
body .ft-search {
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  body .ft-search {
    margin-bottom: 56px;
  }
}
body .ft-search form {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #787878;
}
body .ft-search form button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
body .ft-search form input {
  outline: none;
  width: 100%;
  border: none;
  color: #787878;
  font-size: 20px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.ft-section-footer-block-info {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background: linear-gradient(to top, #010307 50%, transparent 50%);
}
.ft-section-footer-block-info .ft-footer-block-info {
  padding: clamp(80px, 100 / 1920 * 100vw, 120px) clamp(30px, 50 / 1920 * 100vw, 50px);
  background: #D9A500;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
}
.ft-section-footer-block-info .ft-footer-block-info--title {
  margin-top: 0;
  margin-bottom: 1rem;
}
.ft-section-footer-block-info .ft-footer-block-info--button-container {
  margin-top: 1rem;
}

.ft-footer {
  padding-top: 25px;
  background: #010307;
  color: #615F5F;
}
.ft-footer .ft-footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 70px;
}
@media only screen and (max-width: 991px) {
  .ft-footer .ft-footer-columns {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
  }
}
@media only screen and (max-width: 749px) {
  .ft-footer .ft-footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.ft-footer .footer-column--header {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  width: 100%;
}
.ft-footer .footer-column--link {
  margin-bottom: 4px;
}
.ft-footer .footer-column--link-a {
  font-size: 16px;
  color: #615F5F;
  text-decoration: none;
}
.ft-footer .footer-column--link-a:hover {
  color: #D9A500;
}
.ft-footer .footer-column--textarea {
  margin-bottom: 20px;
  font-size: 16px;
}
.ft-footer .footer-column--image {
  margin-bottom: 20px;
}
@media only screen and (max-width: 749px) {
  .ft-footer .footer-column--image picture {
    justify-content: center;
  }
}
.ft-footer .footer-column--social-media a:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (max-width: 749px) {
  .ft-footer .footer_column_3 {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 749px) {
  .ft-footer .footer_column_3 .footer-column--link {
    width: 50%;
  }
}

.ft-footer-bottom {
  border-top: 1px solid #2C2A2A;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  align-items: center;
}
@media only screen and (max-width: 749px) {
  .ft-footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
  }
}
.ft-footer-bottom .copyright {
  font-size: 14px;
}
@media only screen and (max-width: 749px) {
  .ft-footer-bottom .copyright {
    justify-content: center;
    text-align: center;
  }
}
.ft-footer-bottom .ft-footer-bottom--links {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 749px) {
  .ft-footer-bottom .ft-footer-bottom--links {
    justify-content: center;
  }
}
.ft-footer-bottom .ft-footer-bottom--links a {
  font-size: 14px;
  color: #615F5F;
  text-decoration: none;
}
.ft-footer-bottom .ft-footer-bottom--links a:hover {
  color: #D9A500;
}
.ft-footer-bottom .ft-footer-bottom--links a + a {
  margin-left: 10px;
}

/*
.ft-footer{
  padding-top: 25px ;

  .footer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
  }
  .footer-menu{
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    align-items: center;
    gap: 27px;
    a{
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      text-decoration: none;
      color: #585858;
    }
  }
  .footer-contacts{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    margin-top: 40px;
    @media only screen and (max-width: 749px) {
      flex-direction: column;
      gap: 26px;
    }
    .contact{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 13px;
      a{
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
      }
    }
  }
  .footer-social-media{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 25px;
  }
  .footer-newsletter{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    margin: auto;
    margin-top: 32px;
    @media only screen and (max-width: 991px){
      flex-direction: column;
      gap: 30px;
    }
    .fn-desctiption{
      h3{
        font-size: 25px;
        font-weight: 700;
        margin: 0;
        color: $color_primary;
        @media only screen and (max-width: 991px){
          text-align: center;
        }
      }
      p{
        padding: 0;
        margin: 0;
        font-size: 14px;
        color: #585858;
        @media only screen and (max-width: 991px){
          text-align: center;
        }
      }
    }
    .fn-form{
      form {

        p{
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 5px;
          @media only screen and (max-width: 749px){
            flex-direction: column;
          }
          @media only screen and (max-width: 749px){
            width: 100%;
          }
        }
        .wpcf7-email {
          background-color: transparent;
          border: 1px solid #000;
          outline: none;
          width: 100%;
          padding: 9px 16px;
          font-size: 14px;
          border-radius: 14px;
          width: 237px;
          @media only screen and (max-width: 749px){
            width: 100%;
            padding: 20px 16px;
          }
        }
        .wpcf7-submit{
          background-color: $color_primary;
          border: 1px solid $color_primary;
          outline: none;
          padding: 9px 16px;
          font-size: 14px;
          font-weight: 600;
          border-radius: 14px;
          color: #fff;
          @media only screen and (max-width: 749px){
            width: 100%;
            padding: 11px 16px;
            margin-top: 15px;
          }

        }
        .wpcf7-spinner{
          display: none;
        }
      }
    }
  }

  .copyright{
    margin-top: 36px;
    border-top: 1px solid $color_primary;
    padding: 32px;
    text-align: center;
    font-size: 14px;
    color: #949494;
    @media only screen and (max-width: 749px) {
      font-size: 12px;
    }
  }
}

*/
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-carousel .owl-stage {
  max-width: none;
}

.ft-left-slider {
  position: relative;
  box-shadow: 0 0 50px 0 #989898;
  border-radius: 0 50px 50px 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .ft-left-slider {
    border-radius: 0 0 40px 40px;
    box-shadow: 0 20px 36px 0 #989898;
  }
}
.ft-left-slider .ft-slider-item {
  position: relative;
  min-height: calc(995 / 1920 * 100vw);
}
@media only screen and (max-width: 991px) {
  .ft-left-slider .ft-slider-item {
    min-height: 424px;
  }
}
.ft-left-slider .ft-slider-item--img-bg img {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}
.ft-left-slider .ft-slider-item--overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1A1A1A;
  opacity: 0.6;
}
.ft-left-slider .ft-slider-item--logo {
  position: absolute;
  z-index: 3;
  top: clamp(20px, 100 / 1920 * 100vw, 100px);
  left: clamp(20px, 190 / 1920 * 100vw, 170px);
  max-width: clamp(78px, 156 / 1920 * 100vw, 156px);
}
@media only screen and (max-width: 991px) {
  .ft-left-slider .ft-slider-item--logo {
    top: 62px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.ft-left-slider .ft-slider-item--content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding-left: clamp(20px, 190 / 1920 * 100vw, 170px);
  padding-right: clamp(20px, 190 / 1920 * 100vw, 170px);
}
.ft-left-slider .ft-slider-item--content .ft-slider-item--text {
  color: #fff;
}
.ft-left-slider .ft-slider-item--content .ft-slider-item--text *:first-child,
.ft-left-slider .ft-slider-item--content .ft-slider-item--text *:last-child {
  margin-top: 0;
}
.ft-left-slider .ft-slider-item--content .ft-slider-item--text h1 {
  font-size: clamp(32px, 56 / 1920 * 100vw, 56px);
}
@media only screen and (max-width: 991px) {
  .ft-left-slider .ft-slider-item--content .ft-slider-item--text h1 {
    font-size: 37px;
    line-height: normal;
    margin-bottom: 13px;
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .ft-left-slider .ft-slider-item--content .ft-slider-item--text p {
    font-size: 14px;
    text-align: center;
  }
}
.ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-slider-item--button {
  margin-top: clamp(20px, 50 / 1920 * 100vw, 50px);
  padding: clamp(10px, 15 / 1920 * 100vw, 15px) clamp(40px, 60 / 1920 * 100vw, 60px);
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  .ft-left-slider .ft-slider-item--content .ft-slider-item--button-container .ft-slider-item--button {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.ft-left-slider .owl-nav {
  position: absolute;
  z-index: 2;
  bottom: 51px;
  left: calc(50% + 90px);
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.46);
  font-size: 39px;
}
@media only screen and (max-width: 991px) {
  .ft-left-slider .owl-nav {
    bottom: -31px;
    margin-top: 0;
    left: calc(50% + 60px);
  }
}
.ft-left-slider .owl-nav button:hover {
  color: #fff;
}
.ft-left-slider .owl-dots {
  position: absolute;
  z-index: 2;
  display: flex;
  bottom: 100px;
  left: calc(50% - 8px);
  transform: translate(-50%, -50%);
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .ft-left-slider .owl-dots {
    bottom: 20px;
    left: calc(50% - 30px);
  }
}
.ft-left-slider .owl-dots .owl-dot {
  width: 21px;
  height: 21px;
}
.ft-left-slider .owl-dots .owl-dot span {
  display: flex;
  background-color: #D9D9D9;
  color: #040404;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  width: 21px;
  height: 21px;
}
.ft-left-slider .owl-dots .owl-dot.active span {
  background-color: rgba(217, 217, 217, 0.46) !important;
  color: #fff;
}
.ft-left-slider .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: none;
}

.ft-slider.owl-theme .owl-nav {
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .ft-slider.owl-theme .owl-nav [class*=owl-] {
    font-size: 40px;
    text-align: left;
    color: rgba(0, 0, 0, 0.6);
  }
  .ft-slider.owl-theme .owl-nav [class*=owl-]:hover {
    color: #000000;
  }
}
.ft-slider.owl-theme .owl-dots {
  display: none;
}

.ft-section-gallery {
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #010307;
}
.ft-section-gallery .ft-gallery-container + .ft-gallery-content-container,
.ft-section-gallery .ft-gallery-content-container + .ft-gallery-container {
  margin-top: 50px;
}

.ft-gallery .owl-stage-outer {
  position: relative;
}
.ft-gallery .owl-stage-outer:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 50px;
  width: 33%;
  transform: translateX(-50%);
  background: url("./assets/img/gallery_shadow.png");
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 749px) {
  .ft-gallery .owl-stage-outer:after {
    height: 35px;
  }
}
.ft-gallery .owl-stage {
  display: flex;
  align-items: flex-end;
}
.ft-gallery .owl-item.active.center .ft-gallery-item {
  padding: 0;
  transition: all 0.5s ease;
}
.ft-gallery .ft-gallery-item--img {
  display: inline-flex;
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.ft-gallery .ft-gallery-item--img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}
.ft-gallery .owl-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.ft-gallery .owl-dots .owl-dot {
  width: 21px;
  height: 21px;
}
.ft-gallery .owl-dots .owl-dot span {
  display: flex;
  background-color: transparent;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 21px;
  height: 21px;
}
.ft-gallery .owl-dots .owl-dot.active span {
  background-color: #fff !important;
  color: #010307;
}

.ft-gallery-content {
  text-align: center;
}
.ft-gallery-content .ft-gallery-content--title {
  font-size: 50px;
  font-weight: bold;
}
.ft-gallery-content .ft-gallery-content--subtitle {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #787878;
}
@media only screen and (max-width: 749px) {
  .ft-gallery-content .ft-gallery-content--subtitle {
    font-size: 18px;
  }
}
.ft-gallery-content .ft-gallery-content--textarea {
  margin-top: 20px;
}

.ft-section-banner {
  position: relative;
  min-height: 500px;
  background: #010307;
}
@media only screen and (max-width: 749px) {
  .ft-section-banner {
    min-height: 100vh;
  }
}
.ft-section-banner img {
  width: 100%;
}
@media only screen and (max-width: 749px) {
  .ft-section-banner img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
  }
}

.ft-banner-absolute {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ft-banner--title {
  font-size: clamp(60px, 100 / 1920 * 100vw, 100px);
  line-height: 1;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .ft-banner--title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 749px) {
  .ft-banner--title {
    font-size: 32px;
  }
}
.ft-banner--subtitle {
  margin-top: 40px;
  font-size: 20px;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  .ft-banner--subtitle {
    margin-top: 30px;
  }
}
.ft-banner--textarea {
  margin-top: 40px;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  .ft-banner--textarea {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 749px) {
  .ft-banner--textarea p br {
    display: none;
  }
}
.ft-banner--btn-container {
  margin-top: 30px;
}

.ft-section-services .ft-container {
  max-width: 1340px;
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (max-width: 991px) {
  .ft-section-services .ft-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.ft-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ft-services .ft-services--item {
  position: relative;
  flex-basis: 33.3333333333%;
  padding: 25px 15px;
}
@media only screen and (max-width: 991px) {
  .ft-services .ft-services--item {
    flex-basis: 50%;
    padding: 10px;
  }
}
.ft-services .ft-services--item--image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.ft-services .ft-services--item--overlay {
  opacity: 0;
  border-bottom: 1px solid #fff;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding: 2px 0;
  position: absolute;
  left: 50%;
  bottom: max(15%, 20px);
  transform: translateX(-50%);
}
@media only screen and (max-width: 749px) {
  .ft-services .ft-services--item--overlay {
    font-size: 14px;
  }
}
.ft-services .ft-services--item--title {
  color: #A8A8A8;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
}
@media only screen and (max-width: 749px) {
  .ft-services .ft-services--item--title {
    font-size: 14px;
    margin-bottom: 13px;
  }
}
.ft-services .ft-services--item--title:after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 10px;
  height: 10px;
  background: #D9A500;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.5s ease;
}
.ft-services .ft-services--item--link {
  text-decoration: none;
  transition: all 0.5s ease;
}
.ft-services .ft-services--item--link * {
  transition: all 0.5s ease;
}
.ft-services .ft-services--item--link:hover {
  transition: all 0.5s ease;
}
.ft-services .ft-services--item--link:hover .ft-services--item--title {
  color: #D9A500;
}
.ft-services .ft-services--item--link:hover .ft-services--item--title:after {
  opacity: 1;
}
.ft-services .ft-services--item--link:hover .ft-services--item--overlay {
  opacity: 1;
}

.ft-services--rows .ft-services--item[data-index="0"] .ft-services--item--link {
  border-top: 1px solid #4A4B4E;
}
.ft-services--rows .ft-services--item[data-show="0"] {
  display: none;
  visibility: hidden;
}
.ft-services--rows .ft-services--item--link {
  display: grid;
  grid-template-columns: 60px 260px auto 280px;
  grid-template-areas: "num title text more";
  grid-gap: 20px;
  align-items: center;
  position: relative;
  padding: 50px 0;
  width: 100%;
  border-bottom: 1px solid #4A4B4E;
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  .ft-services--rows .ft-services--item--link {
    grid-template-columns: 50px auto 280px;
    grid-template-areas: "num title more" "text text more";
    padding: 25px 0;
  }
}
@media only screen and (max-width: 749px) {
  .ft-services--rows .ft-services--item--link {
    grid-template-columns: 50px auto;
    grid-template-areas: "num title" "text text" "more more";
  }
}
@media only screen and (min-width: 750px) {
  .ft-services--rows .ft-services--item--link:hover .ft-services--item--image {
    opacity: 1;
    visibility: visible;
  }
}
.ft-services--rows .ft-services--item--num {
  grid-area: num;
  font-size: 24px;
  font-weight: 500;
}
.ft-services--rows .ft-services--item--title {
  grid-area: title;
  color: #A8A8A8;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
}
.ft-services--rows .ft-services--item--text {
  grid-area: text;
}
.ft-services--rows .ft-services--item--more {
  grid-area: more;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media only screen and (max-width: 749px) {
  .ft-services--rows .ft-services--item--more {
    justify-content: space-around;
    align-items: center;
  }
}
.ft-services--rows .ft-services--item--svg {
  justify-self: flex-end;
}
.ft-services--rows .ft-services--item--svg svg {
  width: 52px;
  height: 52px;
}
@media only screen and (min-width: 750px) {
  .ft-services--rows .ft-services--item--image {
    position: absolute;
    z-index: 2;
    left: 55%;
    top: 50%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transform: translate(-50%, -50%) rotate(10deg);
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 749px) {
  .ft-services--rows .ft-services--item--image {
    margin-top: 15px;
    border-radius: 10px;
    transform: rotate(3deg);
    overflow: hidden;
  }
}
.ft-services--rows .ft-services--item--image .saImgWrapper {
  display: flex;
  height: 0;
  padding-top: 64%;
}
@media only screen and (max-width: 749px) {
  .ft-services--rows .ft-services--item--image .saImgWrapper {
    width: 250px;
  }
}
.ft-services--rows .ft-services--item--image .saImgWrapper img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}

.ft-services-rows--cta {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  user-select: none;
}

@media only screen and (max-width: 749px) {
  .ft-about-img .ft-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.ft-about-img .ft-standard-image--img {
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 749px) {
  .ft-about-img .ft-standard-image--img {
    border-radius: 0;
  }
}

.section-home-services-row {
  background: #010307;
  padding-top: 80px;
  padding-bottom: 120px;
  margin-top: 0;
}
@media only screen and (max-width: 749px) {
  .section-home-services-row {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.section-home-services-row .ft-services-header--title,
.section-home-services-row .ft-services--item--num,
.section-home-services-row .ft-services--item--title {
  color: #fff;
}
.section-home-services-row .ft-services--item--text {
  color: #CACACA;
}
.section-home-services-row .ft-services--item--link:hover .ft-services--item--num {
  color: #D9A500;
}
.section-home-services-row .ft-services--item--link:hover .ft-services--item--title {
  color: #D9A500;
}
.section-home-services-row .ft-services--item--link:hover .ft-services--item--text {
  color: #CACACA;
}

.about-black-section {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 0;
  background: #010307;
}
@media only screen and (max-width: 749px) {
  .about-black-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.about-black-section .ft-text-with-image {
  display: grid;
  grid-template-columns: 380fr 710fr;
  grid-template-areas: "content image";
  grid-gap: 30px 80px;
}
@media only screen and (max-width: 749px) {
  .about-black-section .ft-text-with-image {
    grid-template-areas: "content" "image";
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
}
.about-black-section .ft-text-with-image--title {
  color: #fff;
}
.about-black-section .ft-text-with-image--subtitle {
  color: #D9A500;
}
.about-black-section .ft-text-with-image--textarea {
  color: #fff;
}
.ft-gear-section {
  margin-top: 0;
  background: #010307;
}
.ft-gear-section .ft-standard-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 1024px) {
  .ft-gear-section .ft-standard-image {
    margin-top: min(-10%, -130px);
  }
}

.contact-page {
  background: #010307;
  background: #010307 url("./assets/img/bg-contact.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.contact-page .ft-section-contact-info {
  padding-top: 120px;
  padding-bottom: 120px;
}

.slider-section--title {
  padding: 44px 0;
}

.ft-slider .owl-item.active:first-of-type .slider-item--text {
  color: #ddd;
}
.ft-slider .slider-item .slider-item--text {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #A8A8A8;
}
.ft-slider .owl-nav.disabled {
  display: flex;
  font-size: 55px;
  line-height: 0.6;
  margin-top: 20px;
}
.ft-slider .owl-nav.disabled button {
  color: #606060;
}
.ft-slider .owl-nav.disabled button:hover {
  color: #000;
}

.ft-standard-content .slider-section--title.ft-standard--title {
  text-align: left;
}

.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 29px;
}
.events-header h3 {
  font-size: 25px;
  font-weight: 700;
  color: #000;
}
@media only screen and (max-width: 749px) {
  .events-header h3 {
    text-align: center;
  }
}

.event-link {
  color: #A8A8A8;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 749px) {
  .event-link.event-desktop-link {
    display: none;
  }
}

.event-link.event-mobile-link {
  padding: 45px 25px 0 25px;
}
@media only screen and (min-width: 750px) {
  .event-link.event-mobile-link {
    display: none;
  }
}

.ft-events {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 749px) {
  .ft-events {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ft-events .image {
  height: 50px;
}
.ft-events .image img {
  object-fit: contain;
}
.ft-events h4 {
  color: #A8A8A8;
  font-size: 14px;
  font-weight: 500;
}

.ft-contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 120px;
}
@media only screen and (max-width: 991px) {
  .ft-contact-info {
    grid-gap: 50px;
  }
}
@media only screen and (max-width: 749px) {
  .ft-contact-info {
    grid-template-columns: 1fr;
    grid-gap: 47px;
  }
}
.ft-contact-info .ft-contact-info--a {
  color: #fff;
}
@media only screen and (max-width: 749px) {
  .ft-contact-info .ft-contact-info--a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 36px;
  }
}
@media only screen and (max-width: 749px) {
  .ft-contact-info .ft-contact-info--a .ft-contact-info--header {
    grid-column: 1/3;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}
.ft-contact-info .ft-contact-info--b {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ft-contact-info .ft-contact-info--block {
  display: flex;
  gap: 18px;
}
@media only screen and (max-width: 749px) {
  .ft-contact-info .ft-contact-info--block {
    gap: 7px;
  }
}
.ft-contact-info .ft-contact-info--title {
  color: #fff;
}
.ft-contact-info h4.ft-contact-info--title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.ft-contact-info .ft-contact-info--subtitle {
  margin-bottom: 15px;
}
.ft-contact-info .ft-contact-info--text {
  margin-bottom: 15px;
}
.ft-contact-info .ft-contact-info--text,
.ft-contact-info .ft-contact-info--subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.ft-contact-info .ft-contact-info--textarea {
  margin-bottom: 70px;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  .ft-contact-info .ft-contact-info--textarea {
    text-align: center;
  }
}
.ft-contact-info .ft-contact-info--link {
  color: #fff;
}

.page-id-65 .ft-section p {
  text-align: center;
}

.ft-logo-grid .saLogosGrid {
  display: grid;
  grid-template-columns: repeat(var(--sa-logos-per-row--desktop), 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 991px) {
  .ft-logo-grid .saLogosGrid {
    grid-template-columns: repeat(var(--sa-logos-per-row--tablet), 1fr);
  }
}
@media only screen and (max-width: 749px) {
  .ft-logo-grid .saLogosGrid {
    grid-template-columns: repeat(var(--sa-logos-per-row--mobile), 1fr);
  }
}
.ft-logo-grid .saLogosGrid img {
  margin: 0 auto;
}

.ft-text-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content image";
  grid-gap: 50px;
  align-items: center;
}
@media only screen and (max-width: 749px) {
  .ft-text-with-image {
    grid-template-areas: "content" "image";
    grid-template-columns: 1fr;
  }
}
.ft-text-with-image--a {
  grid-area: content;
}
.ft-text-with-image--b {
  grid-area: image;
}
.ft-text-with-image--title {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.ft-text-with-image--subtitle {
  color: #D9A500;
}
.ft-text-with-image--btn-container {
  margin-top: 30px;
}
.ft-slider-testimonials .owl-stage {
  display: flex;
  padding: 5px 0;
}
.ft-slider-testimonials .slider-item {
  height: 100%;
  padding: 25px 30px;
  margin: 2px;
  border-radius: 15px;
  border: 1px solid #F5F5F5;
  background: #fff;
  transition: all 0.5s ease;
}
.ft-slider-testimonials .slider-item:hover {
  background: #D9A500;
  color: #fff;
}
.ft-slider-testimonials .slider-item:hover .ft-testimonials--quote svg path {
  fill: #fff;
  transition: all 0.5s ease;
}
.ft-slider-testimonials .ft-testimonials--quote {
  display: flex;
}
.ft-slider-testimonials .ft-testimonials--quote svg path {
  fill: #f0db9d;
  transition: all 0.5s ease;
}
.ft-slider-testimonials .ft-testimonials--quote--after {
  justify-content: flex-end;
}
.ft-slider-testimonials .owl-nav {
  font-size: 50px;
}
@media only screen and (max-width: 749px) {
  .ft-slider-testimonials .owl-nav {
    font-size: 30px;
  }
}
.ft-slider-testimonials .owl-nav .owl-prev,
.ft-slider-testimonials .owl-nav .owl-next {
  margin-left: 15px;
  margin-right: 15px;
}
.ft-slider-testimonials .owl-nav .owl-prev:hover,
.ft-slider-testimonials .owl-nav .owl-next:hover {
  color: #D9A500;
}

.ft-section-recent-productions {
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #010307;
}
@media only screen and (max-width: 749px) {
  .ft-section-recent-productions {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.ft-recent-productions--header {
  color: #fff;
}

.ft-recent-productions {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-gap: 30px;
}
@media only screen and (min-width: 750px) {
  .ft-recent-productions {
    display: grid;
    grid: repeat(20, 1fr)/repeat(20, 1fr);
  }
  .ft-recent-productions .ft-recent-productions--item:nth-child(1) {
    grid-area: 1/1/12/12;
  }
  .ft-recent-productions .ft-recent-productions--item:nth-child(1) picture {
    height: 0;
    padding-top: 82.7%;
  }
  .ft-recent-productions .ft-recent-productions--item:nth-child(2) {
    grid-area: 1/12/10/21;
  }
  .ft-recent-productions .ft-recent-productions--item:nth-child(2) picture {
    height: 0;
    padding-top: 63.7%;
  }
  .ft-recent-productions .ft-recent-productions--item:nth-child(3) {
    grid-area: 12/1/21/12;
  }
  .ft-recent-productions .ft-recent-productions--item:nth-child(3) picture {
    height: 0;
    padding-top: 57.9%;
  }
  .ft-recent-productions .ft-recent-productions--item:nth-child(4) {
    grid-area: 10/12/21/21;
  }
  .ft-recent-productions .ft-recent-productions--item:nth-child(4) picture {
    height: 0;
    padding-top: 96%;
  }
  .ft-recent-productions .ft-recent-productions--item picture {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 750px) and (max-width: 749px) {
  .ft-recent-productions .ft-recent-productions--item picture {
    height: 0;
    padding-top: 56.25%;
  }
}
@media only screen and (min-width: 750px) {
  .ft-recent-productions .ft-recent-productions--item img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
  }
}
@media only screen and (max-width: 749px) {
  .ft-recent-productions {
    grid-template-columns: 1fr;
  }
}
.ft-recent-productions--block {
  padding: 25px 20px;
}
.ft-recent-productions--block p {
  margin-bottom: 0;
}
.ft-recent-productions--item--title {
  margin-top: 15px;
  font-size: 26px;
  color: #fff;
}
.ft-recent-productions--item--text {
  margin-top: 15px;
  color: #CACACA;
}
.ft-recent-productions--item--image {
  overflow: hidden;
  border-radius: 15px;
}
.ft-recent-productions--item--tags {
  display: flex;
  flex-wrap: wrap;
}
.ft-recent-productions--item--tags a,
.ft-recent-productions--item--tags span {
  padding: 5px 15px;
  background: #fff;
  color: #D9A500;
  font-size: 14px;
  border-radius: 50px;
}
.ft-recent-productions--item--tags a + a,
.ft-recent-productions--item--tags span + span {
  margin-left: 10px;
}

/*# sourceMappingURL=style.css.map */
