@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-ExtraBold.otf");
  font-weight: 700;
}
@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Heavy.ttf");
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  overflow-x: hidden;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

input::placeholder, textarea::placeholder {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

body {
  font-weight: 500;
  line-height: 1;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #FFF;
  background-color: #161616;
  position: relative;
  z-index: 10;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body .header {
  width: 100%;
}
body .header__inner {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .header__inner--logo {
  width: 125px;
}
body .header__inner--logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body .header__inner--actions {
  width: calc(100% - 125px);
  text-align: right;
}
@media (min-width: 768px) {
  body .header__inner--actions {
    display: none;
  }
}
body .header__inner--actions .hamburger svg {
  width: 32px;
  height: auto;
  fill: #FFF;
}
body .header__inner--nav {
  width: calc(100% - 125px);
  display: none;
}
@media (min-width: 768px) {
  body .header__inner--nav {
    display: block;
  }
}
body .header__inner--nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body .header__inner--nav ul li {
  margin-left: 25px;
}
body .header__inner--nav ul li a {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
body .header__inner--nav ul li a:hover, body .header__inner--nav ul li a:focus {
  color: #FF9A03;
}
body .header__inner--nav ul li.current_page_item a {
  color: #FF9A03;
}
body .mobile-menu {
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  overflow-y: scroll;
  max-width: 400px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media (min-width: 1024px) {
  body .mobile-menu {
    display: none;
  }
}
body .mobile-menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
body .mobile-menu__inner {
  padding: 25px 25px 50px 25px;
  position: relative;
  z-index: 10;
}
body .mobile-menu__inner--top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .mobile-menu__inner--top .image {
  width: 60%;
}
body .mobile-menu__inner--top .image img {
  width: 125px;
  height: auto;
  vertical-align: bottom;
}
body .mobile-menu__inner--top .close {
  width: 40%;
  text-align: right;
}
body .mobile-menu__inner--top .close svg {
  cursor: pointer;
  width: 25px;
  height: 25px;
}
body .mobile-menu__inner--top .close svg path {
  fill: #FF9A03;
}
body .mobile-menu__inner--nav {
  margin-top: 35px;
}
body .mobile-menu__inner--nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .mobile-menu__inner--nav ul > li {
  margin-bottom: 25px;
}
body .mobile-menu__inner--nav ul > li.current_page_item a {
  color: #FF9A03;
}
body .mobile-menu__inner--nav ul > li > a {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #FFF;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
body .mobile-menu__inner--nav ul > li > a:hover, body .mobile-menu__inner--nav ul > li > a:focus {
  color: #FF9A03;
}
body .mobile-menu__inner--nav ul > li > a.open svg {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
body .mobile-menu__inner--nav ul > li > a svg {
  width: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body .mobile-menu__inner--nav ul > li .sub-menu {
  display: none;
  margin-top: 25px;
}
body .mobile-menu__inner--nav ul > li .sub-menu li a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0px;
}
body .mobile-menu__inner--info {
  border-top: 1px solid #FFF;
  padding-top: 25px;
}
body .mobile-menu__inner--info .block {
  margin-bottom: 35px;
}
body .mobile-menu__inner--info .block h4 {
  color: #FF9A03;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0 0 25px 0;
  font-size: 20px;
}
body .mobile-menu__inner--info .block ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
body .mobile-menu__inner--info .block ul li {
  margin-bottom: 15px;
  letter-spacing: 0.2em;
  color: #FFF;
}
body .mobile-menu__inner--info .block ul li:last-child {
  margin-bottom: 0;
}
body .mobile-menu__inner--info .block ul li a {
  color: #FFF;
  letter-spacing: 0.2em;
}
body .mobile-menu__inner--info .block .button {
  margin-top: 25px;
  display: inline-block;
}
body .mobile-menu__inner--info .block .button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FF9A03;
  font-weight: 700;
  font-size: 1.125rem;
}
body .mobile-menu__inner--info .block .button a:hover i, body .mobile-menu__inner--info .block .button a:focus i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
body .mobile-menu__inner--info .block .button a i {
  margin-left: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body .mobile-menu__inner--info .block .times {
  max-width: 300px;
  width: 100%;
}
body .mobile-menu__inner--info .block .times ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
}
body .mobile-menu__inner--info .block .times ul li.current-day {
  padding-left: 20px;
}
body .mobile-menu__inner--info .block .times ul li.current-day:before {
  display: block;
}
body .mobile-menu__inner--info .block .times ul li.current-day .day, body .mobile-menu__inner--info .block .times ul li.current-day .time {
  font-weight: 700;
}
body .mobile-menu__inner--info .block .times ul li:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #FF9A03;
  border-radius: 50%;
  display: none;
}
body .mobile-menu__inner--info .block .times ul li .day {
  width: 40%;
}
body .mobile-menu__inner--info .block .times ul li .time {
  width: 60%;
  text-align: right;
}
body .mobile-menu__inner--info .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}
body .mobile-menu__inner--info .socials__social {
  margin-right: 10px;
}
body .mobile-menu__inner--info .socials__social a {
  color: #FF9A03;
  font-size: 24px;
}
body .mobile-menu__inner--info .socials__social a:hover, body .mobile-menu__inner--info .socials__social a:focus {
  color: #FFF;
}

body .footer {
  background-color: #100F0F;
}
body .footer__inner {
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 12.5px 25px 12.5px;
}
body .footer__inner--column {
  width: 100%;
  padding: 0 12.5px;
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  body .footer__inner--column {
    width: 26.66666%;
  }
}
body .footer__inner--column:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  body .footer__inner--column:first-child {
    width: 20%;
  }
}
body .footer__inner--column img {
  max-width: 150px;
  width: 100%;
  vertical-align: bottom;
}
body .footer__inner--column .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}
body .footer__inner--column .socials__social {
  margin-right: 10px;
}
body .footer__inner--column .socials__social a {
  color: #FF9A03;
  font-size: 24px;
}
body .footer__inner--column .socials__social a:hover, body .footer__inner--column .socials__social a:focus {
  color: #FFF;
}
body .footer__inner--column p {
  color: #FF9A03;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 20px 0;
}
body .footer__inner--column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .footer__inner--column ul li {
  margin-top: 10px;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 400;
}
body .footer__inner--column ul li a {
  letter-spacing: 0.2em;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
body .footer__inner--column ul li a:hover, body .footer__inner--column ul li a:focus {
  color: #FF9A03;
}
body .footer__copyright {
  padding: 0 12.5px 25px 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1366px;
  margin: 0 auto;
}
body .footer__copyright .left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 12.5px;
}
@media (min-width: 1024px) {
  body .footer__copyright .left {
    width: 73.33334%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body .footer__copyright .left p {
  font-size: 14px;
  width: 100%;
}
@media (min-width: 1024px) {
  body .footer__copyright .left p {
    width: auto;
  }
}
body .footer__copyright .left ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 15px 0 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 1024px) {
  body .footer__copyright .left ul {
    width: auto;
    margin: 0;
  }
}
body .footer__copyright .left ul li {
  padding-left: 12.5px;
  margin-left: 12.5px;
  border-left: 1px solid #FFF;
}
@media (max-width: 1023px) {
  body .footer__copyright .left ul li:first-child {
    margin-left: 0;
    padding-left: 0;
    border: none;
  }
}
body .footer__copyright .left ul li a {
  font-size: 14px;
  color: #FFF;
}
body .footer__copyright .left ul li a:hover, body .footer__copyright .left ul li a:focus {
  color: #FF9A03;
}
body .footer__copyright .right {
  width: 100%;
  margin-top: 15px;
  padding: 0 12.5px;
}
@media (min-width: 1024px) {
  body .footer__copyright .right {
    width: 26.66666%;
    margin-top: 0;
  }
}
body .footer__copyright .right p {
  font-size: 14px;
}
body .footer__copyright .right p a {
  color: #FBFF49;
}

body.page-template-home .hero__inner {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px;
}
body.page-template-home .hero__inner img, body.page-template-home .hero__inner video {
  width: 100%;
  aspect-ratio: 19/6;
  border-radius: 20px;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner img, body.page-template-home .hero__inner video {
    border-radius: 40px;
  }
}
body.page-template-home .letters__inner {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 15px 0;
}
@media (min-width: 768px) {
  body.page-template-home .letters__inner {
    padding: 15px 25px;
  }
}
body.page-template-home .letters__inner .inner {
  padding: 25px 0;
  background: rgba(217, 217, 217, 0.03);
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-home .letters__inner .inner {
    border-radius: 30px;
  }
}
body.page-template-home .letters__inner .inner:before {
  content: "";
  position: absolute;
  left: 0;
  border-radius: 30px;
  height: 100%;
  width: 50%;
  top: 0;
  z-index: 10;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.24%, #000000), color-stop(44.28%, rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, #000000 11.24%, rgba(0, 0, 0, 0) 44.28%);
}
body.page-template-home .letters__inner .inner:after {
  content: "";
  position: absolute;
  right: -1px;
  border-radius: 30px;
  height: 100%;
  width: 50%;
  top: 0;
  z-index: 10;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.24%, #000000), color-stop(44.28%, rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, #000000 11.24%, rgba(0, 0, 0, 0) 44.28%);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body.page-template-home .letters__inner .inner:before, body.page-template-home .letters__inner .inner:after {
  display: none;
}
@media (min-width: 768px) {
  body.page-template-home .letters__inner .inner:before, body.page-template-home .letters__inner .inner:after {
    display: block;
  }
}
body.page-template-home .letters__inner .inner .swiper-text {
  width: 100%;
  overflow: hidden;
}
body.page-template-home .letters__inner .inner .swiper-text .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
body.page-template-home .letters__inner .inner .swiper-text .swiper-wrapper .swiper-slide {
  width: auto;
  margin-right: 125px;
  position: relative;
}
@media (min-width: 768px) {
  body.page-template-home .letters__inner .inner .swiper-text .swiper-wrapper .swiper-slide {
    margin-right: 225px;
  }
}
body.page-template-home .letters__inner .inner .swiper-text .swiper-wrapper .swiper-slide:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -90px;
  width: 65px;
  height: 1px;
  background-color: #FF9A03;
}
@media (min-width: 768px) {
  body.page-template-home .letters__inner .inner .swiper-text .swiper-wrapper .swiper-slide:after {
    right: -195px;
    width: 160px;
  }
}
body.page-template-home .letters__inner .inner .swiper-text .swiper-wrapper .swiper-slide p {
  font-family: Gilroy;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}
@media (min-width: 768px) {
  body.page-template-home .letters__inner .inner .swiper-text .swiper-wrapper .swiper-slide p {
    font-size: 48px;
  }
}
body.page-template-home .intro {
  position: relative;
  z-index: 11;
}
body.page-template-home .intro__inner {
  max-width: 675px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px 0 25px;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-template-home .intro__inner {
    padding: 30px 25px 0 25px;
  }
}
body.page-template-home .intro__inner p {
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
  line-height: 1.4;
  margin: 20px 0 0 0;
}
@media (min-width: 768px) {
  body.page-template-home .intro__inner p {
    font-size: 22px;
  }
}
body.page-template-home .intro__inner .button {
  margin-top: 35px;
  text-align: center;
}
body.page-template-home .intro__inner .button a {
  display: inline-block;
  padding: 15px 35px 15px 40px;
  border: 1px solid #FF9A03;
  border-radius: 22px;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.4em;
}
body.page-template-home .intro__inner .button a:hover, body.page-template-home .intro__inner .button a:focus {
  background-color: #FF9A03;
}
body.page-template-home .services {
  position: relative;
  z-index: 10;
}
body.page-template-home .services__parallax {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
body.page-template-home .services__parallax div {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.page-template-home .services__parallax div h2 {
  font-size: 60px;
  opacity: 0.2;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: Gilroy;
  font-weight: 900;
}
@media (min-width: 375px) {
  body.page-template-home .services__parallax div h2 {
    font-size: 70px;
  }
}
@media (min-width: 400px) {
  body.page-template-home .services__parallax div h2 {
    font-size: 85px;
  }
}
@media (min-width: 768px) {
  body.page-template-home .services__parallax div h2 {
    font-size: 125px;
  }
}
@media (min-width: 1024px) {
  body.page-template-home .services__parallax div h2 {
    font-size: 200px;
  }
}
@media (min-width: 1200px) {
  body.page-template-home .services__parallax div h2 {
    font-size: 250px;
  }
}
body.page-template-home .services__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner {
    padding: 100px 12.5px 50px 12.5px;
  }
}
body.page-template-home .services__inner--item {
  padding: 0 12.5px;
  margin-bottom: 25px;
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner--item {
    width: 50%;
  }
}
body.page-template-home .services__inner--item .inner {
  width: 100%;
  height: 100%;
  background-color: #272726;
  padding: 95px 25px 25px 25px;
  border-radius: 45px;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (min-width: 1024px) {
  body.page-template-home .services__inner--item .inner {
    padding: 120px 50px 50px 50px;
  }
}
body.page-template-home .services__inner--item .inner:hover, body.page-template-home .services__inner--item .inner:focus {
  background-color: #FF9A03;
}
body.page-template-home .services__inner--item .inner:hover .icon img, body.page-template-home .services__inner--item .inner:focus .icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
body.page-template-home .services__inner--item .inner .icon {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
}
@media (min-width: 1024px) {
  body.page-template-home .services__inner--item .inner .icon {
    top: 50px;
    left: 50px;
  }
}
body.page-template-home .services__inner--item .inner .icon img {
  height: 50px;
  width: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner--item .inner .icon img {
    height: 70px;
  }
}
body.page-template-home .services__inner--item .inner .content {
  padding-top: 35px;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner--item .inner .content {
    padding-top: 70px;
  }
}
body.page-template-home .services__inner--item .inner .content h3 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.045em;
  font-weight: 600;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner--item .inner .content h3 {
    font-size: 26px;
  }
}
body.page-template-home .services__inner--item .inner .content p {
  color: #FFF;
  max-width: 400px;
  width: 100%;
  font-weight: 400;
  margin: 15px 0 0 0;
  line-height: 1.2;
  letter-spacing: 0.055em;
}
body.page-template-home .projects {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 11;
  padding: 0 0 50px 0;
}
@media (min-width: 768px) {
  body.page-template-home .projects {
    height: 860px;
    position: relative;
    width: 100%;
  }
}
body.page-template-home .projects .inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
body.page-template-home .projects__bg_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  body.page-template-home .projects__bg_list {
    display: none;
  }
}
body.page-template-home .projects__bg_list .bg-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
  opacity: 0;
  background-size: cover;
  background-position: top;
}
body.page-template-home .projects__bg_list .bg-item.active {
  opacity: 1;
}
body.page-template-home .projects__wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .projects__wrapper {
    font-size: 0;
    letter-spacing: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
  }
}
body.page-template-home .projects__wrapper .project {
  display: inline-block;
  width: 100%;
  position: relative;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (min-width: 768px) {
  body.page-template-home .projects__wrapper .project {
    overflow: hidden;
    height: 270px;
    width: 100%;
  }
}
body.page-template-home .projects__wrapper .project:hover, body.page-template-home .projects__wrapper .project:focus {
  text-decoration: none;
}
body.page-template-home .projects__wrapper .project.active::before {
  opacity: 1;
}
body.page-template-home .projects__wrapper .project.active .project__bg {
  opacity: 0;
}
body.page-template-home .projects__wrapper .project.active .project__inner .title {
  opacity: 0.2;
}
body.page-template-home .projects__wrapper .project.title-active .project__inner .title {
  opacity: 1 !important;
}
@media (min-width: 768px) {
  body.page-template-home .projects__wrapper .project:nth-child(2) .project__bg {
    background-position: center -270px;
  }
}
@media (min-width: 768px) {
  body.page-template-home .projects__wrapper .project:nth-child(3) .project__bg {
    background-position: center -540px;
  }
}
body.page-template-home .projects__wrapper .project__bg {
  position: absolute;
  top: 0;
  background-size: cover;
  background-position: top;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
body.page-template-home .projects__wrapper .project__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.page-template-home .projects__wrapper .project__inner .title {
  padding: 100px 25px 100px 25px;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
  width: 100%;
  position: relative;
  z-index: 10;
  height: 100%;
}
body.page-template-home .projects__wrapper .project__inner .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(32.43%, rgba(4, 4, 4, 0.8)), color-stop(40.19%, rgba(4, 4, 4, 0.624054)), color-stop(67.69%, rgba(4, 4, 4, 0)));
  background: linear-gradient(90deg, rgba(4, 4, 4, 0.8) 32.43%, rgba(4, 4, 4, 0.624054) 40.19%, rgba(4, 4, 4, 0) 67.69%);
  z-index: -1;
}
body.page-template-home .projects__wrapper .project__inner .title h4 {
  color: #FFF;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  font-size: 32px;
}
@media (min-width: 768px) {
  body.page-template-home .projects__wrapper .project__inner .title h4 {
    font-size: 49px;
  }
}
body.page-template-home .work {
  position: relative;
  z-index: 10;
}
body.page-template-home .work__title {
  width: 100%;
  padding: 0 25px;
}
@media (min-width: 768px) {
  body.page-template-home .work__title {
    margin-top: -50px;
    margin-left: -50px;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  body.page-template-home .work__title {
    margin-left: -75px;
  }
}
body.page-template-home .work__title h2 {
  font-size: 42px;
  opacity: 0.2;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  font-family: Gilroy;
  font-weight: 900;
}
@media (min-width: 375px) {
  body.page-template-home .work__title h2 {
    font-size: 48px;
  }
}
@media (min-width: 768px) {
  body.page-template-home .work__title h2 {
    font-size: 125px;
    opacity: 0.14;
  }
}
@media (min-width: 1024px) {
  body.page-template-home .work__title h2 {
    font-size: 200px;
  }
}
@media (min-width: 1480px) {
  body.page-template-home .work__title h2 {
    font-size: 250px;
  }
}
body.page-template-home .work__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 0 25px 50px 25px;
}
@media (min-width: 768px) {
  body.page-template-home .work__inner {
    margin: -50px auto 0 auto;
  }
}
@media (min-width: 1024px) {
  body.page-template-home .work__inner {
    margin-top: -75px;
  }
}
body.page-template-home .work__inner .inner {
  max-width: 600px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.page-template-home .work__inner .inner .button {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  margin-top: 25px;
}
@media (min-width: 768px) {
  body.page-template-home .work__inner .inner .button {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
body.page-template-home .work__inner .inner .button a {
  display: inline-block;
  padding: 15px 35px 15px 40px;
  border: 1px solid #FF9A03;
  border-radius: 22px;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.4em;
}
body.page-template-home .work__inner .inner .button a:hover, body.page-template-home .work__inner .inner .button a:focus {
  background-color: #FF9A03;
}
body.page-template-home .work__inner .inner p {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 0 0;
  line-height: 1.4;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  body.page-template-home .work__inner .inner p {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 22px;
  }
}
body.page-template-home .work__slider {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 25px 75px 25px;
  width: 100%;
}
body.page-template-home .work__slider .inner {
  width: 100%;
  background-color: #1C1C1C;
  padding: 45px 50px;
  border-radius: 50px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-home .work__slider .inner {
    padding: 45px 75px;
  }
}
body.page-template-home .work__slider .inner .swiper-left, body.page-template-home .work__slider .inner .swiper-right {
  position: absolute;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.page-template-home .work__slider .inner .swiper-left i, body.page-template-home .work__slider .inner .swiper-right i {
  font-size: 32px;
  color: #FF9A03;
}
@media (min-width: 768px) {
  body.page-template-home .work__slider .inner .swiper-left i, body.page-template-home .work__slider .inner .swiper-right i {
    font-size: 48px;
  }
}
body.page-template-home .work__slider .inner .swiper-left {
  left: 15px;
}
@media (min-width: 768px) {
  body.page-template-home .work__slider .inner .swiper-left {
    left: 35px;
  }
}
body.page-template-home .work__slider .inner .swiper-right {
  right: 15px;
}
@media (min-width: 768px) {
  body.page-template-home .work__slider .inner .swiper-right {
    right: 35px;
  }
}
body.page-template-home .work__slider .inner .swiper-logos {
  overflow: hidden;
  position: relative;
  width: 100%;
}
body.page-template-home .work__slider .inner .swiper-logos .swiper-wrapper .swiper-slide {
  padding: 0 10px;
  width: 100%;
  text-align: center;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 375px) {
  body.page-template-home .work__slider .inner .swiper-logos .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-home .work__slider .inner .swiper-logos .swiper-wrapper .swiper-slide {
    width: 33.3333%;
  }
}
@media (min-width: 1024px) {
  body.page-template-home .work__slider .inner .swiper-logos .swiper-wrapper .swiper-slide {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  body.page-template-home .work__slider .inner .swiper-logos .swiper-wrapper .swiper-slide {
    width: 20%;
  }
}
body.page-template-home .work__slider .inner .swiper-logos .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body.page-template-services .hero__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 25px 0 25px;
}
body.page-template-services .hero__inner .content {
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}
body.page-template-services .hero__inner .content h1 {
  color: #FFF;
  font-size: 48px;
  margin: 0 0 15px 0;
}
@media (min-width: 768px) {
  body.page-template-services .hero__inner .content h1 {
    font-size: 58px;
  }
}
@media (min-width: 1200px) {
  body.page-template-services .hero__inner .content h1 {
    font-size: 88px;
  }
}
body.page-template-services .hero__inner .content p {
  letter-spacing: 0.055em;
  line-height: 1.6;
}
body.page-template-services .hero__inner .image {
  width: 100%;
}
body.page-template-services .hero__inner .image img, body.page-template-services .hero__inner .image video {
  width: 100%;
  height: auto;
  aspect-ratio: 1211/218;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  min-height: 200px;
}
body.page-template-services .items {
  position: relative;
  z-index: 10;
}
body.page-template-services .items__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 12.5px 50px 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-services .items__inner {
    padding: 25px 12.5px 50px 12.5px;
  }
}
body.page-template-services .items__inner--item {
  padding: 0 12.5px;
  margin-bottom: 25px;
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-services .items__inner--item {
    width: 50%;
  }
}
body.page-template-services .items__inner--item .inner {
  width: 100%;
  height: 100%;
  background-color: #272726;
  padding: 95px 25px 25px 25px;
  border-radius: 45px;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (min-width: 1024px) {
  body.page-template-services .items__inner--item .inner {
    padding: 120px 50px 50px 50px;
  }
}
body.page-template-services .items__inner--item .inner:hover, body.page-template-services .items__inner--item .inner:focus {
  background-color: #FF9A03;
}
body.page-template-services .items__inner--item .inner:hover .icon img, body.page-template-services .items__inner--item .inner:focus .icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
body.page-template-services .items__inner--item .inner .icon {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 10;
}
@media (min-width: 1024px) {
  body.page-template-services .items__inner--item .inner .icon {
    top: 50px;
    left: 50px;
  }
}
body.page-template-services .items__inner--item .inner .icon img {
  height: 50px;
  width: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  body.page-template-services .items__inner--item .inner .icon img {
    height: 70px;
  }
}
body.page-template-services .items__inner--item .inner .content {
  padding-top: 35px;
}
@media (min-width: 768px) {
  body.page-template-services .items__inner--item .inner .content {
    padding-top: 70px;
  }
}
body.page-template-services .items__inner--item .inner .content h3 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.045em;
  font-weight: 600;
}
@media (min-width: 768px) {
  body.page-template-services .items__inner--item .inner .content h3 {
    font-size: 26px;
  }
}
body.page-template-services .items__inner--item .inner .content p {
  color: #FFF;
  max-width: 400px;
  width: 100%;
  font-weight: 400;
  margin: 15px 0 0 0;
  line-height: 1.2;
  letter-spacing: 0.055em;
}

body.page-template-work .hero__inner, body.tax-types .hero__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 15px 25px 0 15px;
}
body.page-template-work .hero__inner .content, body.tax-types .hero__inner .content {
  max-width: 600px;
  margin: 0 auto 60px auto;
  text-align: center;
  padding: 0 10px;
}
body.page-template-work .hero__inner .content h1, body.tax-types .hero__inner .content h1 {
  color: #FFF;
  font-size: 48px;
  margin: 0 0 15px 0;
}
@media (min-width: 768px) {
  body.page-template-work .hero__inner .content h1, body.tax-types .hero__inner .content h1 {
    font-size: 58px;
  }
}
@media (min-width: 1200px) {
  body.page-template-work .hero__inner .content h1, body.tax-types .hero__inner .content h1 {
    font-size: 88px;
  }
}
body.page-template-work .hero__inner .content p, body.tax-types .hero__inner .content p {
  letter-spacing: 0.055em;
  line-height: 1.6;
}
body.page-template-work .hero__inner .content p a, body.tax-types .hero__inner .content p a {
  color: #FF9A03;
}
body.page-template-work .hero__inner .filters, body.tax-types .hero__inner .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  body.page-template-work .hero__inner .filters, body.tax-types .hero__inner .filters {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.page-template-work .hero__inner .filters__item, body.tax-types .hero__inner .filters__item {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  body.page-template-work .hero__inner .filters__item, body.tax-types .hero__inner .filters__item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-work .hero__inner .filters__item, body.tax-types .hero__inner .filters__item {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  body.page-template-work .hero__inner .filters__item, body.tax-types .hero__inner .filters__item {
    width: 20%;
  }
}
body.page-template-work .hero__inner .filters__item.active a, body.tax-types .hero__inner .filters__item.active a {
  background-color: #FF9A03;
}
body.page-template-work .hero__inner .filters__item a, body.tax-types .hero__inner .filters__item a {
  display: inline-block;
  text-align: center;
  width: 100%;
  border: 1px solid #FF9A03;
  color: #FFF;
  border-radius: 22px;
  letter-spacing: 0.4em;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 10px;
  text-transform: uppercase;
}
body.page-template-work .hero__inner .filters__item a:hover, body.page-template-work .hero__inner .filters__item a:focus, body.tax-types .hero__inner .filters__item a:hover, body.tax-types .hero__inner .filters__item a:focus {
  background-color: #FF9A03;
}
body.page-template-work .items, body.tax-types .items {
  position: relative;
  z-index: 10;
}
body.page-template-work .items__inner, body.tax-types .items__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 12.5px 50px 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-work .items__inner, body.tax-types .items__inner {
    padding: 25px 12.5px 50px 12.5px;
  }
}
body.page-template-work .items__inner .row, body.tax-types .items__inner .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
body.page-template-work .items__inner .row:nth-child(even) .item:first-child, body.tax-types .items__inner .row:nth-child(even) .item:first-child {
  width: 100%;
  aspect-ratio: 860/258;
}
@media (min-width: 480px) {
  body.page-template-work .items__inner .row:nth-child(even) .item:first-child, body.tax-types .items__inner .row:nth-child(even) .item:first-child {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-work .items__inner .row:nth-child(even) .item:first-child, body.tax-types .items__inner .row:nth-child(even) .item:first-child {
    width: 66.6666%;
  }
}
body.page-template-work .items__inner .row .item, body.tax-types .items__inner .row .item {
  min-height: 200px;
  position: relative;
  z-index: 10;
  aspect-ratio: 420/258;
  width: 100%;
  border-radius: 32px;
  padding: 0 12.5px;
  margin-bottom: 25px;
}
@media (min-width: 480px) {
  body.page-template-work .items__inner .row .item, body.tax-types .items__inner .row .item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-work .items__inner .row .item, body.tax-types .items__inner .row .item {
    width: 33.33333%;
  }
}
body.page-template-work .items__inner .row .item:nth-child(3), body.tax-types .items__inner .row .item:nth-child(3) {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-work .items__inner .row .item:nth-child(3), body.tax-types .items__inner .row .item:nth-child(3) {
    width: 33.3333%;
  }
}
body.page-template-work .items__inner .row .item .inner, body.tax-types .items__inner .row .item .inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
body.page-template-work .items__inner .row .item .inner:hover:after, body.page-template-work .items__inner .row .item .inner:focus:after, body.tax-types .items__inner .row .item .inner:hover:after, body.tax-types .items__inner .row .item .inner:focus:after {
  opacity: 1;
}
body.page-template-work .items__inner .row .item .inner:after, body.tax-types .items__inner .row .item .inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  border-radius: 32px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body.page-template-work .items__inner .row .item .inner__bg, body.tax-types .items__inner .row .item .inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
body.page-template-work .items__inner .row .item .inner__bg img, body.page-template-work .items__inner .row .item .inner__bg video, body.tax-types .items__inner .row .item .inner__bg img, body.tax-types .items__inner .row .item .inner__bg video {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  vertical-align: bottom;
}
body.page-template-work .items__inner .row .item .inner__content, body.tax-types .items__inner .row .item .inner__content {
  padding: 50px 20px 20px 20px;
}
body.page-template-work .items__inner .row .item .inner__content h3, body.tax-types .items__inner .row .item .inner__content h3 {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  body.page-template-work .items__inner .row .item .inner__content h3, body.tax-types .items__inner .row .item .inner__content h3 {
    font-size: 24px;
  }
}
body.page-template-work .items__inner .row .item .inner__content h3 i, body.tax-types .items__inner .row .item .inner__content h3 i {
  color: #FF9A03;
  margin-left: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 36px;
}

body.single-work .hero__inner {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 25px 0 25px;
}
body.single-work .hero__inner .content {
  max-width: 720px;
  margin: 0 auto 40px auto;
  text-align: center;
}
body.single-work .hero__inner .content h4 {
  color: #FF9A03;
  font-weight: 600;
  letter-spacing: 0.33em;
  margin: 0 0 10px 0;
}
body.single-work .hero__inner .content h1 {
  color: #FFF;
  font-size: 32px;
  margin: 0 0 15px 0;
}
@media (min-width: 768px) {
  body.single-work .hero__inner .content h1 {
    font-size: 40px;
  }
}
body.single-work .hero__inner .content p {
  letter-spacing: 0.055em;
  line-height: 1.6;
}
body.single-work .hero__inner .content p a {
  color: #FF9A03;
}
body.single-work .hero__inner .image {
  width: 100%;
}
body.single-work .hero__inner .image img, body.single-work .hero__inner .image video {
  width: 100%;
  height: auto;
  aspect-ratio: 1314/400;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  min-height: 250px;
}
body.single-work .about__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.single-work .about__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-work .about__inner--left {
    width: 60%;
    padding-right: 25px;
  }
}
body.single-work .about__inner--left h2 {
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.045em;
}
@media (min-width: 768px) {
  body.single-work .about__inner--left h2 {
    font-size: 40px;
  }
}
body.single-work .about__inner--left h2 strong {
  color: #FF9A03;
}
body.single-work .about__inner--left p {
  line-height: 1.6;
  letter-spacing: 0.055em;
  margin: 20px 0 0 0;
}
body.single-work .about__inner--left p a {
  color: #FF9A03;
}
body.single-work .about__inner--right {
  width: 100%;
  margin-top: 25px;
}
@media (min-width: 768px) {
  body.single-work .about__inner--right {
    width: 40%;
    margin-top: 0;
    padding-left: 25px;
  }
}
body.single-work .about__inner--right img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  height: 250px;
}
@media (min-width: 768px) {
  body.single-work .about__inner--right img {
    height: 100%;
  }
}
body.single-work .gallery {
  background-color: #100F0F;
}
body.single-work .gallery__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 12.5px 50px 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.single-work .gallery__inner--item {
  width: 100%;
  padding: 0 12.5px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  body.single-work .gallery__inner--item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  body.single-work .gallery__inner--item {
    width: 33.3333%;
  }
}
body.single-work .gallery__inner--item img {
  width: 100%;
  aspect-ratio: 381/241;
  min-height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  vertical-align: bottom;
}
body.single-work .related {
  background-color: #100F0F;
}
body.single-work .related__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 0 12.5px 25px 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 50px;
  position: relative;
  z-index: 10;
}
body.single-work .related__inner:before {
  content: "";
  max-width: 1024px;
  width: 100%;
  height: 1px;
  background-color: #FF9A03;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
body.single-work .related__inner h2 {
  width: 100%;
  text-align: center;
  font-size: 32px;
  margin: 0 0 50px 0;
}
@media (min-width: 768px) {
  body.single-work .related__inner h2 {
    font-size: 40px;
    margin: 0 0 100px 0;
  }
}
body.single-work .related__inner .item {
  width: 100%;
  padding: 0 12.5px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  body.single-work .related__inner .item {
    width: 33.333%;
  }
}
body.single-work .related__inner .item .inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  aspect-ratio: 366/457;
  min-height: 250px;
}
body.single-work .related__inner .item .inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
body.single-work .related__inner .item .inner__bg img, body.single-work .related__inner .item .inner__bg video {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  vertical-align: bottom;
}
body.single-work .related__inner .item .inner__content {
  padding: 50px 20px 20px 20px;
}
body.single-work .related__inner .item .inner__content h3 {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  body.single-work .related__inner .item .inner__content h3 {
    font-size: 24px;
  }
}
body.single-work .related__inner .item .inner__content h3 i {
  color: #FF9A03;
  margin-left: 10px;
  font-size: 36px;
}

body.single-service .hero__inner {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 25px 0 25px;
}
body.single-service .hero__inner .content {
  max-width: 1480px;
  margin: 0 auto 75px auto;
  width: 100%;
}
body.single-service .hero__inner .content .inner {
  max-width: 720px;
  width: 100%;
}
body.single-service .hero__inner .content .inner h1 {
  color: #FFF;
  font-size: 32px;
  margin: 0 0 15px 0;
  font-weight: 800;
  letter-spacing: 0.045em;
}
@media (min-width: 768px) {
  body.single-service .hero__inner .content .inner h1 {
    font-size: 40px;
  }
}
body.single-service .hero__inner .content .inner h1 strong {
  color: #FF9A03;
}
body.single-service .hero__inner .content .inner p {
  letter-spacing: 0.055em;
  line-height: 1.6;
  max-width: 550px;
  width: 100%;
  font-weight: 400;
}
body.single-service .hero__inner .image {
  width: 100%;
}
body.single-service .hero__inner .image img, body.single-service .hero__inner .image video {
  width: 100%;
  height: auto;
  aspect-ratio: 1314/340;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  min-height: 250px;
}
body.single-service .blocks__inner {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 12.5px 0 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.single-service .blocks__inner--item {
  width: 100%;
  padding: 0 12.5px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  body.single-service .blocks__inner--item {
    width: 50%;
  }
}
body.single-service .blocks__inner--item .inner {
  width: 100%;
  height: 100%;
  padding: 50px 25px;
  background-color: #202020;
  border-radius: 45px;
}
@media (min-width: 768px) {
  body.single-service .blocks__inner--item .inner {
    padding: 60px 50px;
  }
}
body.single-service .blocks__inner--item .inner h2 {
  color: #FFF;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 900;
  font-family: Gilroy;
}
@media (min-width: 768px) {
  body.single-service .blocks__inner--item .inner h2 {
    font-size: 32px;
  }
}
body.single-service .blocks__inner--item .inner p {
  line-height: 1.6;
  color: #FFF;
  letter-spacing: 0.055em;
  font-weight: 400;
  margin: 20px 0 0 0;
}
body.single-service .blocks__inner--item .inner p a {
  color: #FF9A03;
}
body.single-service .work {
  background-color: #100F0F;
}
body.single-service .work__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 12.5px 25px 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.single-service .work__inner {
    padding: 75px 12.5px 25px 12.5px;
  }
}
body.single-service .work__inner .content {
  padding: 0 12.5px;
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}
body.single-service .work__inner .content .inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
body.single-service .work__inner .content .inner h2 {
  width: 100%;
  text-align: center;
  font-size: 32px;
  margin: 0;
}
@media (min-width: 768px) {
  body.single-service .work__inner .content .inner h2 {
    font-size: 40px;
  }
}
body.single-service .work__inner .content .inner p {
  margin: 20px 0 0 0;
  line-height: 1.6;
  color: #FFF;
  letter-spacing: 0.055em;
}
body.single-service .work__inner .content .inner .button {
  margin-top: 25px;
}
body.single-service .work__inner .content .inner .button a {
  display: inline-block;
  text-align: center;
  border: 1px solid #FF9A03;
  color: #FFF;
  border-radius: 22px;
  letter-spacing: 0.4em;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 25px;
  text-transform: uppercase;
}
body.single-service .work__inner .content .inner .button a:hover, body.single-service .work__inner .content .inner .button a:focus {
  background-color: #FF9A03;
}
body.single-service .work__inner .item {
  width: 100%;
  padding: 0 12.5px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  body.single-service .work__inner .item {
    width: 33.333%;
  }
}
body.single-service .work__inner .item .inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  aspect-ratio: 366/457;
  min-height: 250px;
}
body.single-service .work__inner .item .inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
body.single-service .work__inner .item .inner__bg img, body.single-service .work__inner .item .inner__bg video {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  vertical-align: bottom;
}
body.single-service .work__inner .item .inner__content {
  padding: 50px 20px 20px 20px;
}
body.single-service .work__inner .item .inner__content h3 {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  body.single-service .work__inner .item .inner__content h3 {
    font-size: 24px;
  }
}
body.single-service .work__inner .item .inner__content h3 i {
  color: #FF9A03;
  margin-left: 10px;
  font-size: 36px;
}

body.page-template-about .hero__inner {
  max-width: 1720px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 25px;
  position: relative;
  z-index: 10;
}
@media (max-width: 1023px) {
  body.page-template-about .hero__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.page-template-about .hero__inner--left {
  width: 400px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: -100px;
}
@media (min-width: 1024px) {
  body.page-template-about .hero__inner--left {
    width: 500px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    padding-left: 25px;
  }
}
@media (min-width: 1480px) {
  body.page-template-about .hero__inner--left {
    width: 650px;
  }
}
body.page-template-about .hero__inner--left img, body.page-template-about .hero__inner--left video {
  border-radius: 45px;
  aspect-ratio: 650/370;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
body.page-template-about .hero__inner--right {
  position: absolute;
  z-index: -1;
  bottom: -100px;
  right: 0;
  padding-right: 25px;
  display: none;
}
@media (min-width: 1200px) {
  body.page-template-about .hero__inner--right {
    display: block;
  }
}
body.page-template-about .hero__inner--right img, body.page-template-about .hero__inner--right video {
  aspect-ratio: 270/340;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  width: 100%;
  border-radius: 45px;
  height: auto;
}
body.page-template-about .hero__inner--content {
  width: 100%;
  margin: 0 0 25px 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: center;
}
@media (min-width: 1024px) {
  body.page-template-about .hero__inner--content {
    margin: 0 0 0 auto;
    max-width: 480px;
    text-align: left;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 1200px) {
  body.page-template-about .hero__inner--content {
    margin: 0 190px 0 auto;
  }
}
@media (min-width: 1480px) {
  body.page-template-about .hero__inner--content {
    max-width: 600px;
    margin: 0 250px 0 auto;
  }
}
body.page-template-about .hero__inner--content h1 {
  color: #FFF;
  font-size: 48px;
  margin: 0 0 15px 0;
}
@media (min-width: 768px) {
  body.page-template-about .hero__inner--content h1 {
    font-size: 58px;
  }
}
@media (min-width: 1200px) {
  body.page-template-about .hero__inner--content h1 {
    font-size: 88px;
  }
}
body.page-template-about .hero__inner--content p {
  max-width: 400px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.055em;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  body.page-template-about .hero__inner--content p {
    padding-left: 50px;
    margin: 0;
  }
}
body.page-template-about .creators {
  background-color: #121212;
  border-top-left-radius: 64px;
}
body.page-template-about .creators__top {
  padding: 100px 0 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 1200px) {
  body.page-template-about .creators__top {
    padding: 160px 0 60px 0;
  }
}
body.page-template-about .creators__top--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-about .creators__top--left {
    width: 60%;
  }
}
body.page-template-about .creators__top--left .inner {
  max-width: 720px;
  padding: 0 25px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-about .creators__top--left .inner h2 {
  font-size: 32px;
  font-weight: 600;
}
@media (min-width: 768px) {
  body.page-template-about .creators__top--left .inner h2 {
    font-size: 40px;
  }
}
body.page-template-about .creators__top--left .inner h2 span {
  color: #FF9A03;
}
body.page-template-about .creators__top--left .inner p {
  line-height: 1.6;
  letter-spacing: 0.055em;
  font-weight: 400;
  margin: 25px 0 0 0;
}
@media (min-width: 768px) {
  body.page-template-about .creators__top--left .inner p {
    padding-left: 25px;
  }
}
body.page-template-about .creators__top--left .inner p strong, body.page-template-about .creators__top--left .inner p a {
  font-weight: 400;
  color: #FF9A03;
}
body.page-template-about .creators__top--right {
  width: 100%;
  margin-top: 60px;
}
@media (min-width: 768px) {
  body.page-template-about .creators__top--right {
    width: 40%;
    margin-top: 0;
  }
}
body.page-template-about .creators__top--right img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 641/250;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
}
@media (min-width: 768px) {
  body.page-template-about .creators__top--right img {
    aspect-ratio: 641/375;
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
  }
}
body.page-template-about .creators__top--parallax {
  text-align: center;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  body.page-template-about .creators__top--parallax {
    bottom: -100px;
  }
}
body.page-template-about .creators__top--parallax div {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.page-template-about .creators__top--parallax div p {
  font-size: 60px;
  opacity: 0.04;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: Gilroy;
  font-weight: 900;
}
@media (min-width: 375px) {
  body.page-template-about .creators__top--parallax div p {
    font-size: 70px;
  }
}
@media (min-width: 400px) {
  body.page-template-about .creators__top--parallax div p {
    font-size: 85px;
  }
}
@media (min-width: 768px) {
  body.page-template-about .creators__top--parallax div p {
    font-size: 125px;
  }
}
@media (min-width: 1024px) {
  body.page-template-about .creators__top--parallax div p {
    font-size: 200px;
  }
}
@media (min-width: 1200px) {
  body.page-template-about .creators__top--parallax div p {
    font-size: 250px;
  }
}
body.page-template-about .creators__bottom .inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding: 0 25px 60px 25px;
  text-align: center;
}
body.page-template-about .creators__bottom .inner h2 {
  font-size: 32px;
  font-weight: 600;
}
@media (min-width: 768px) {
  body.page-template-about .creators__bottom .inner h2 {
    font-size: 40px;
  }
}
body.page-template-about .creators__bottom .inner h2 span {
  color: #FF9A03;
}
body.page-template-about .creators__bottom .inner p {
  line-height: 1.6;
  letter-spacing: 0.055em;
  font-weight: 400;
  margin: 25px 0 0 0;
}
body.page-template-about .creators__bottom .inner p strong, body.page-template-about .creators__bottom .inner p a {
  font-weight: 400;
  color: #FF9A03;
}
body.page-template-about .creators__bottom .inner .button {
  margin-top: 25px;
}
body.page-template-about .creators__bottom .inner .button a {
  display: inline-block;
  text-align: center;
  border: 1px solid #FF9A03;
  color: #FFF;
  border-radius: 22px;
  letter-spacing: 0.4em;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 25px 15px 30px;
  text-transform: uppercase;
}
body.page-template-about .creators__bottom .inner .button a:hover, body.page-template-about .creators__bottom .inner .button a:focus {
  background-color: #FF9A03;
}
body.page-template-about .impressum__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 25px;
}
body.page-template-about .impressum__inner img, body.page-template-about .impressum__inner video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1127/376;
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

body.page-template-contact .hero__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 15px 25px 0 15px;
}
body.page-template-contact .hero__inner .content {
  max-width: 720px;
  margin: 0 auto 60px auto;
  text-align: center;
  padding: 0 10px;
}
body.page-template-contact .hero__inner .content h1 {
  color: #FFF;
  font-size: 48px;
  margin: 0 0 15px 0;
}
@media (min-width: 768px) {
  body.page-template-contact .hero__inner .content h1 {
    font-size: 58px;
  }
}
@media (min-width: 1200px) {
  body.page-template-contact .hero__inner .content h1 {
    font-size: 88px;
  }
}
body.page-template-contact .hero__inner .content p {
  letter-spacing: 0.055em;
  line-height: 1.6;
  font-weight: 400;
}
body.page-template-contact .hero__inner .content p a {
  color: #FF9A03;
}
body.page-template-contact .hero__inner .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  body.page-template-contact .hero__inner .filters {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.page-template-contact .hero__inner .filters__item {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  body.page-template-contact .hero__inner .filters__item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-contact .hero__inner .filters__item {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  body.page-template-contact .hero__inner .filters__item {
    width: 20%;
  }
}
body.page-template-contact .hero__inner .filters__item.active a {
  background-color: #FF9A03;
}
body.page-template-contact .hero__inner .filters__item a {
  display: inline-block;
  text-align: center;
  width: 100%;
  border: 1px solid #FF9A03;
  color: #FFF;
  border-radius: 22px;
  letter-spacing: 0.4em;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 10px;
  text-transform: uppercase;
}
body.page-template-contact .hero__inner .filters__item a:hover, body.page-template-contact .hero__inner .filters__item a:focus {
  background-color: #FF9A03;
}
body.page-template-contact .featured {
  padding: 0 25px 25px 25px;
}
body.page-template-contact .featured img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  min-height: 250px;
  aspect-ratio: 1399/220;
  border-radius: 35px;
}
body.page-template-contact .contact {
  background-color: #101010;
}
body.page-template-contact .contact__inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.page-template-contact .contact__inner .left p.title, body.page-template-contact .contact__inner .right p.title {
  color: #FF9A03;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.2em;
}
body.page-template-contact .contact__inner .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__inner .left {
    width: 40%;
    padding-right: 12.5px;
  }
}
body.page-template-contact .contact__inner .left ul {
  list-style: none;
  margin: 25px 0 0 0;
  padding: 0;
}
body.page-template-contact .contact__inner .left ul li {
  line-height: 1.5;
  color: #FFF;
  letter-spacing: 0.2em;
  font-weight: 500;
}
body.page-template-contact .contact__inner .left .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}
body.page-template-contact .contact__inner .left .socials__social {
  margin-right: 10px;
}
body.page-template-contact .contact__inner .left .socials__social a {
  color: #FF9A03;
  font-size: 24px;
}
body.page-template-contact .contact__inner .left .socials__social a:hover, body.page-template-contact .contact__inner .left .socials__social a:focus {
  color: #FFF;
}
body.page-template-contact .contact__inner .right {
  width: 100%;
  margin-top: 25px;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__inner .right {
    width: 60%;
    margin-top: 0;
    padding-left: 12.5px;
  }
}
body.page-template-contact .contact__inner .right p.title {
  margin: 0 0 25px 0;
}
body.page-template-contact .contact__inner .right .gform_confirmation_wrapper .gform_confirmation_message {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
body.page-template-contact .contact__inner .right .gform_wrapper .gform_validation_errors {
  display: none;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield label {
  display: none;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield.gfield_error .ginput_container input, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield.gfield_error .ginput_container textarea {
  border-color: red;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input {
  height: 40px;
  padding: 0 25px;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea {
  height: 100px;
  padding: 15px 25px;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea {
  border-radius: 25px;
  border: 1px solid #FF9A03;
  color: #FFF;
  font-weight: 400;
  font-size: 14px;
  background-color: transparent;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input:focus, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea:focus {
  outline: 0;
  border-color: #FF9A03;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input::-webkit-input-placeholder, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea::-webkit-input-placeholder {
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #FFF;
  font-size: 14px;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input::-moz-placeholder, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea::-moz-placeholder {
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #FFF;
  font-size: 14px;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input:-ms-input-placeholder, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea:-ms-input-placeholder {
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #FFF;
  font-size: 14px;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input::-ms-input-placeholder, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea::-ms-input-placeholder {
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #FFF;
  font-size: 14px;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input::placeholder, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea::placeholder {
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #FFF;
  font-size: 14px;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea {
  height: 100px;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_body .gform_fields .gfield .validation_message {
  display: none;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 0;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_footer input {
  width: 150px;
  border: 1px solid #FF9A03;
  color: #FFF;
  letter-spacing: 0.2em;
  background-color: transparent;
  border-radius: 10px;
  padding: 15px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body.page-template-contact .contact__inner .right .gform_wrapper form .gform_footer input:hover, body.page-template-contact .contact__inner .right .gform_wrapper form .gform_footer input:focus {
  background-color: #FF9A03;
}
body.page-template-contact .maps {
  padding: 25px;
}
body.page-template-contact .maps .acf-map {
  height: 300px;
  width: 100%;
}