html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "interstate", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100%;
  color: #2D2C2D;
}
body.no-body-scroll {
  position: fixed;
  max-width: 100%;
  width: 100%;
  overflow-y: scroll;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

embed,
iframe,
object {
  max-width: 100%;
}

input, select, option, textarea {
  font-family: inherit;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

p {
  margin: 0 0 1.5em;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

input[type=search],
input[type=submit],
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/*Lists*/
ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul, li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

.inline-pipe-list {
  list-style: none;
}
.inline-pipe-list,
.inline-pipe-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
}
.inline-pipe-list li::after {
  display: block;
  content: "|";
  margin: 0 0.5em;
}
.inline-pipe-list li:last-child::after {
  display: none;
}

/*Headings*/
h1,
.h1-like {
  font-style: normal;
  font-weight: 400;
  font-size: 58px;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  margin: 0 0 5px;
}

h2,
.h2-like {
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: normal;
  margin: 0 0 16px;
}

h3,
.h3-like {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: normal;
  margin: 0 0 16px;
}

h4,
.h4-like {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
  margin: 0 0 15px;
}

.has-accent {
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.has-accent::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: #00C0F3;
}

/*Links and Buttons*/
a {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 33px;
  border: 3px transparent solid;
  text-decoration: none;
  cursor: pointer;
  background-color: #00C0F3;
  color: #2A2323;
}
.btn:visited {
  color: #2A2323;
}
.btn:focus {
  color: #2A2323;
}
.btn:hover {
  color: #00C0F3;
}
.btn:active {
  color: #2A2323;
}
.btn svg {
  flex-shrink: 0;
  width: 1em;
  height: auto;
  transition: transform 0.3s ease, fill 0.2s ease;
}
.btn svg.icon-arrow {
  width: 11.37px;
}
.btn.has-style-outline {
  background-color: transparent;
  border-color: currentColor;
  color: currentColor;
}
.btn.has-style-outline:visited {
  color: currentColor;
}
.btn.has-style-outline:focus {
  color: currentColor;
}
.btn.has-style-outline:hover {
  color: #00C0F3;
}
.btn.has-style-outline:active {
  color: currentColor;
}
.btn:hover {
  border-color: transparent;
  background-color: #000;
}
.btn:hover .icon-arrow {
  transform: translateX(5px);
}

.link-underline {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 3px;
  overflow: hidden;
  color: #363940;
}
.link-underline:visited {
  color: #363940;
}
.link-underline:focus {
  color: #363940;
}
.link-underline:active {
  color: #363940;
}
.link-underline::before, .link-underline::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transition: transform 0.4s ease;
}
.link-underline::before {
  z-index: 1;
  background-color: #00C0F3;
}
.link-underline::after {
  z-index: 2;
  transform: translateX(-101%);
  background-color: #363940;
}
.link-underline:hover::after, .link-underline:focus::after {
  transform: none;
}
.has-dark-bkgd .link-underline {
  color: #fff;
}
.has-dark-bkgd .link-underline:visited {
  color: #fff;
}
.has-dark-bkgd .link-underline:focus {
  color: #fff;
}
.has-dark-bkgd .link-underline:active {
  color: #fff;
}
.has-dark-bkgd .link-underline::after {
  background-color: #fff;
}

/* Icons / SVG */
[class^=icon-],
[class*=" icon-"] {
  fill: currentColor;
  width: 1.5rem;
  height: 1.5rem;
}

/*Other Styles*/
.menu,
.sub-menu,
.slick-controls {
  list-style: none;
  margin: 0;
}

.container {
  width: 94%;
  max-width: 1100px;
  margin: auto;
}

.screen-reader-text,
.slick-visually-hidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus,
.slick-visually-hidden:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.cover-image {
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
}
.cover-image img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cover-image-link {
  display: block;
  overflow: hidden;
}
.cover-image-link .cover-image {
  transition: transform 0.4s ease;
}
.cover-image-link:hover .cover-image, .cover-image-link:focus .cover-image {
  transform: scale(1.1);
}

/*Layout*/
.site-layout {
  position: relative;
  z-index: 1;
}
@media (min-height: 501px) and (min-width: 783px) {
  .site-layout {
    padding-left: 237px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
            animation: none !important;
    transition-duration: 0s !important;
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
  }
}
.fade-in {
  opacity: 0;
}
.fade-in.loaded, .is-internet-explorer .fade-in {
  opacity: 1;
  -webkit-animation: fadeInUp 0.5s forwards;
          animation: fadeInUp 0.5s forwards;
}

.site-header {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 238px;
  background-color: #000;
  color: #fff;
}
.site-header a {
  color: inherit;
}
.site-header a:visited {
  color: inherit;
}
.site-header a:focus {
  color: inherit;
}
.site-header a:active {
  color: inherit;
}
.site-header-mobile {
  display: none;
}
.site-header::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 50px;
  background-color: transparent;
  pointer-events: none;
  box-shadow: inset 36px 0 36px -36px rgba(0, 0, 0, 0.36);
}

.site-branding,
.site-navigation-responsive {
  background-color: inherit;
}

.site-branding {
  padding: 36px 42px 10px;
}
.site-branding-logo {
  display: block;
  margin: auto;
}

@media (max-height: 650px) and (min-width: 783px) {
  .site-branding-logo {
    width: 100px;
  }
}
@media (max-height: 500px), (max-width: 782px) {
  .site-header {
    display: block;
    width: 100%;
    bottom: auto;
    background-color: transparent;
  }
  .admin-bar .site-header {
    top: 32px;
  }

  .site-branding {
    display: none;
  }

  .site-header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 29px 12px 36px;
    transition: background-color 0.2s ease;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(26px);
            backdrop-filter: blur(26px);
  }
  .site-header-mobile-logo {
    width: 150px;
    flex-shrink: 0;
  }
  .site-header-mobile-logo a,
.site-header-mobile-logo svg {
    display: block;
  }
  .site-header-mobile-logo img,
.site-header-mobile-logo svg {
    width: auto;
    max-height: 60px;
  }
  .site-header-mobile-logo .viocity-logo-mobile {
    /*
    .mobile-nav-active &{
      &-text{
        &--viocity{
          fill: $dark-grey;
        }
        &--group{
          fill:#5a5b5e;
        }
      }
      &--color{
        opacity:1;
      }
    }
    */
  }
  .site-header-mobile-logo .viocity-logo-mobile-text--viocity, .site-header-mobile-logo .viocity-logo-mobile-text--group {
    fill: #fff;
  }
  .site-header-mobile-logo .viocity-logo-mobile--color {
    opacity: 0;
  }
  .site-header-mobile-btn--menu {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    color: #fff;
  }
  .site-header-mobile-btn--menu:visited {
    color: #fff;
  }
  .site-header-mobile-btn--menu:focus {
    color: #fff;
  }
  .site-header-mobile-btn--menu:active {
    color: #fff;
  }
  .site-header-mobile-btn-text {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.166em;
    text-transform: uppercase;
  }
  .site-header-mobile-btn .close-text {
    display: none;
  }
  .mobile-nav-active .site-header-mobile-btn--menu {
    color: #fff;
  }
  .mobile-nav-active .site-header-mobile-btn--menu:visited {
    color: #fff;
  }
  .mobile-nav-active .site-header-mobile-btn--menu:focus {
    color: #fff;
  }
  .mobile-nav-active .site-header-mobile-btn--menu:hover {
    color: #fff;
  }
  .mobile-nav-active .site-header-mobile-btn--menu:active {
    color: #fff;
  }
  .mobile-nav-active .site-header-mobile-btn .open-text {
    display: none;
  }
  .mobile-nav-active .site-header-mobile-btn .close-text {
    display: block;
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.hamburger-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 16px;
  width: 18px;
  color: #00C0F3;
}
.mobile-nav-active .hamburger-button {
  transform-origin: center;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-iteration-count: 0.5;
          animation-iteration-count: 0.5;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.hamburger-button-line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
}
.hamburger-button-line--1 {
  transform: scaleX(0.666);
  transition: transform 0.4s ease-in-out, background-color 0.4s ease, transform-origin 0.4s ease;
}
button:hover .hamburger-button-line--1 {
  transform: none;
}
.mobile-nav-active .hamburger-button-line--1, .mobile-nav-active button:hover .hamburger-button-line--1 {
  transform-origin: 0 1px;
  transform: rotate(45deg);
}
.hamburger-button-line--2 {
  transition: transform 0.2s ease-in-out;
}
.mobile-nav-active .hamburger-button-line--2 {
  transform: scaleY(0);
}
.hamburger-button-line--3 {
  transform: scaleX(0.666);
  transition: transform 0.4s ease-in-out, background-color 0.4s ease, transform-origin 0.4s ease;
}
button:hover .hamburger-button-line--3 {
  transform: none;
}
.mobile-nav-active .hamburger-button-line--3, .mobile-nav-active button:hover .hamburger-button-line--3 {
  transform-origin: 0 1px;
  transform: rotate(-45deg) translate(1px, -1px);
}

@media (min-height: 501px) and (min-width: 783px) {
  .site-navigation-responsive, .site-navigation-top {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .site-navigation-top {
    justify-content: center;
    padding-left: 42px;
  }
  .site-navigation-bottom {
    padding: 10px 42px 46px;
  }
  .site-navigation--primary {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.333;
    letter-spacing: 0.06em;
  }
  .site-navigation--primary > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 42px 15px 0;
  }
  .site-navigation--primary > li > a {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-bottom: 6px;
    text-decoration: none;
    overflow: hidden;
  }
  .site-navigation--primary > li > a::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform: translateX(-101%);
    background-color: #00C0F3;
    transition: transform 0.4s ease;
  }
  @supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
    .site-navigation--primary > li > a::after {
      width: 0;
      transform: none;
      transition: width 0.4s ease;
    }
  }
  .site-navigation--primary > li > a:hover::after {
    transform: none;
  }
  @supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
    .site-navigation--primary > li > a:hover::after {
      width: 100%;
    }
  }
  .site-navigation--primary > li.button:not(.current-menu-item) {
    margin-left: -15px;
  }
  .site-navigation--primary > li.button:not(.current-menu-item) > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 15px;
    background-color: #00C0F3;
    color: #2A2323;
  }
  .site-navigation--primary > li.button:not(.current-menu-item) > a:visited {
    color: #2A2323;
  }
  .site-navigation--primary > li.button:not(.current-menu-item) > a:focus {
    color: #2A2323;
  }
  .site-navigation--primary > li.button:not(.current-menu-item) > a:active {
    color: #2A2323;
  }
  .site-navigation--primary > li.button:not(.current-menu-item) > a:hover {
    background-color: #fff;
  }
  .site-navigation--primary > li.button:not(.current-menu-item) > a::after {
    display: none;
  }
  .site-navigation--primary > li.current-menu-item > a::after {
    transform: none;
  }
  @supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
    .site-navigation--primary > li.current-menu-item > a::after {
      width: 100%;
    }
  }
  .site-navigation--primary > li > .dropdown-trigger {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    padding-bottom: 6px;
    border: 0;
    background-color: transparent;
    color: #00C0F3;
  }
  .site-navigation--primary > li > .dropdown-trigger .icon-arrow {
    width: 12px;
    height: auto;
    transform-origin: center;
  }
  .keyboard-in-use .site-navigation--primary > li > .dropdown-trigger {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s linear;
  }
  .site-navigation--primary > li.active > a::after {
    transform: none;
  }
  .site-navigation--primary > li.active > .dropdown-trigger .icon-arrow {
    transform: rotate(180deg);
  }
  .site-navigation--primary .sub-menu {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 238px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    width: 320px;
    padding: 51px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear, transform 0.2s ease;
    transform: translateX(-100%);
    background-color: rgba(0, 0, 0, 0.66);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.28;
  }
  .site-navigation--primary .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .site-navigation--primary .sub-menu a::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 12px;
    height: 9px;
    background-image: url("../svg/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.4s ease;
  }
  .site-navigation--primary .sub-menu a:hover {
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .site-navigation--primary .sub-menu a:hover::after {
    transform: translateX(10px);
  }
  .site-navigation--primary .sub-menu-back-button {
    display: none;
  }
  .site-navigation--primary .menu-item.active .sub-menu {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s linear, transform 0.2s ease;
    transform: none;
    transition: opacity 0.2s linear, transform 0.4s ease;
  }
}
@media (min-height: 501px) and (min-width: 783px) and (max-height: 650px) and (min-width: 783px) {
  .site-navigation--primary {
    font-size: 14px;
  }
  .site-navigation--primary > li {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
@media (min-height: 501px) and (min-width: 783px) {
  .site-navigation--utility {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.42;
    letter-spacing: 0.1em;
  }
  .site-navigation--utility li {
    margin-bottom: 17px;
  }
  .site-navigation--utility a {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .site-navigation--utility a:hover {
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
}
@media (min-height: 501px) and (min-width: 783px) {
  .site-social-icons {
    margin-top: 27px;
  }
  .site-social-icons-title {
    display: none;
  }
  .site-social-icons .menu {
    display: flex;
    gap: 10px;
  }
  .site-social-icons a {
    color: #fff;
  }
  .site-social-icons a:visited {
    color: #fff;
  }
  .site-social-icons a:focus {
    color: #fff;
  }
  .site-social-icons a:hover {
    color: #00C0F3;
  }
  .site-social-icons a:active {
    color: #fff;
  }
}
@media (max-height: 500px), (max-width: 782px) {
  .site-navigation-responsive {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(26px);
            backdrop-filter: blur(26px);
    padding: 90px 36px 26px;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear, transform 0.2s ease;
    transform: translateY(-50px);
    transition: none;
  }
  .mobile-nav-active .site-navigation-responsive {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s linear, transform 0.2s ease;
    transform: none;
  }
  .site-navigation--primary {
    padding-top: 40px;
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 1;
  }
  .site-navigation--primary > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px #00C0F3 solid;
    margin-bottom: 43px;
  }
  .site-navigation--primary > li > a {
    display: block;
    text-decoration: none;
  }
  .site-navigation--primary > li > .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    padding-bottom: 6px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
  }
  .site-navigation--primary > li.active > .dropdown-trigger {
    display: none;
  }
  .site-navigation--primary .icon-arrow {
    width: 15px;
    height: auto;
    transform-origin: center;
    fill: #fff;
  }
  .site-navigation--primary .sub-menu {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear, transform 0.2s ease;
    transform: translateX(100%);
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #2A2323;
    padding: 134px 36px 26px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.333;
    letter-spacing: 0.05em;
  }
  .site-navigation--primary .sub-menu li {
    margin-bottom: 30px;
  }
  .site-navigation--primary .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
    max-width: 307px;
  }
  .site-navigation--primary .sub-menu-back-button {
    border-bottom: 1px #00C0F3 solid;
    margin-bottom: 45px;
  }
  .site-navigation--primary .sub-menu-back-button .dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 7px 7px 7px 0;
    margin-bottom: 7px;
    border: 0;
    color: inherit;
    background-color: transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.068em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .site-navigation--primary .sub-menu-back-button .icon-arrow {
    transform: rotate(180deg);
  }
  .site-navigation--primary .menu-item.active .sub-menu {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s linear, transform 0.2s ease;
    transform: none;
    transition: opacity 0.2s linear, transform 0.4s ease;
  }
  .site-navigation--utility {
    margin-top: 66px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.375;
  }
  .site-navigation--utility li {
    margin-bottom: 30px;
  }
  .site-navigation--utility a {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .site-navigation--utility a:hover {
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }

  .site-social-icons {
    margin-top: 57px;
  }
  .site-social-icons-title {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.69;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 15px;
  }
  .site-social-icons .menu {
    display: flex;
    gap: 12px;
  }
}
.site-footer {
  position: relative;
  z-index: 1;
  background-color: #000;
  color: #fff;
  padding: 60px 60px 60px 98px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
}
.site-footer-columns {
  margin: 0;
  max-width: 1059px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 15px;
}
.site-footer p {
  margin-bottom: 1em;
}
.site-footer a {
  color: inherit;
}
.site-footer a:visited {
  color: inherit;
}
.site-footer a:focus {
  color: inherit;
}
.site-footer a:active {
  color: inherit;
}
.site-footer a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.site-footer a.footer-link {
  text-decoration: none;
}
.site-footer a.footer-link span {
  transition: -webkit-text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
  text-decoration: underline;
}
.site-footer a.footer-link:hover span {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.site-footer .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.site-footer .footer-link svg {
  width: 15px;
  height: auto;
}
.site-footer-menu {
  display: flex;
  gap: 20px;
}
.site-footer-form {
  flex-shrink: 0;
}
.site-footer-form .wpforms-form {
  display: flex;
  gap: 9px;
  min-width: 343px;
}
.site-footer-form .wpforms-container .wpforms-field {
  padding: 0;
}
.site-footer-form .wpforms-container .wpforms-field-container {
  flex-grow: 1;
}
.site-footer-form .wpforms-container .wpforms-submit-container {
  padding: 0;
}
.site-footer-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 33px;
  border: 3px transparent solid;
  text-decoration: none;
  cursor: pointer;
  background-color: #00C0F3;
  color: #2A2323;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
  cursor: pointer;
  padding: 0 24px;
  height: 41px;
}
.site-footer-form button:visited {
  color: #2A2323;
}
.site-footer-form button:focus {
  color: #2A2323;
}
.site-footer-form button:hover {
  color: #00C0F3;
}
.site-footer-form button:active {
  color: #2A2323;
}
.site-footer-form button:hover {
  color: #000;
  background-color: #6D6E70;
}
.site-footer-form input {
  height: 41px;
  border: 0;
  padding: 0 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}
.site-footer-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #2A2323;
}
.site-footer-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #2A2323;
}
.site-footer-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #2A2323;
}
.site-footer-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #2A2323;
}
.site-footer-form p {
  font-size: 15px;
  margin-bottom: 8px;
}
@media (max-width: 1400px) {
  .site-footer {
    padding-left: 60px;
  }
  .site-footer-columns {
    flex-wrap: wrap;
    max-width: 500px;
  }
  .site-footer-form {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .site-footer-columns {
    display: block;
  }
}
@media (max-width: 782px) {
  .site-footer {
    padding: 0 0 45px;
    text-align: center;
  }
  .site-footer-columns {
    width: 100%;
    max-width: 100%;
  }
  .site-footer-column {
    padding-left: 45px;
    padding-right: 45px;
  }
  .site-footer-menu {
    justify-content: center;
  }
  .site-footer-form {
    padding: 45px 45px 20px;
    margin-bottom: 1.5em;
    background-color: #000;
  }
  .site-footer-form .wpforms-form {
    min-width: 0;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer-form p {
    font-size: 14px;
  }
}

/* =WordPress Core
-------------------------------------------------------------- */
#wpadminbar {
  position: fixed !important;
}

.alignnone {
  margin: 0 0 40px 0;
}

.aligncenter {
  display: block;
  margin: 0 auto 40px auto;
}

.alignright {
  float: right;
  margin: 0 0 40px 40px;
}

.alignleft {
  float: left;
  margin: 0 40px 40px 0;
}

@media (max-width: 782px) {
  .alignright,
.alignleft {
    display: block;
    float: none;
    margin: 0 auto 40px auto;
  }
}
.aligncenter,
.wp-block-spacer {
  clear: both;
}

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

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

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

.items-justified-left {
  justify-content: flex-start;
}

.items-justified-center {
  text-align: center;
  justify-content: center;
}

.items-justified-right {
  justify-content: flex-end;
}

.items-justified-space-between {
  justify-content: space-between;
}

.wp-block-embed {
  overflow-wrap: break-word;
}
.wp-block-embed figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.wp-block-embed iframe {
  max-width: 100%;
}
.wp-block-embed__wrapper {
  position: relative;
}
.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.wp-block-embed.wp-has-aspect-ratio iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.wp-block-embed.wp-has-aspect-ratio.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
  padding-top: 42.85%;
}
.wp-block-embed.wp-has-aspect-ratio.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
  padding-top: 50%;
}
.wp-block-embed.wp-has-aspect-ratio.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
  padding-top: 56.25%;
}
.wp-block-embed.wp-has-aspect-ratio.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
  padding-top: 75%;
}
.wp-block-embed.wp-has-aspect-ratio.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
  padding-top: 100%;
}
.wp-block-embed.wp-has-aspect-ratio.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before {
  padding-top: 177.77%;
}
.wp-block-embed.wp-has-aspect-ratio.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
  padding-top: 200%;
}

.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block[data-align=left] > [data-type="core/embed"],
.wp-block[data-align=right] > [data-type="core/embed"] {
  max-width: 360px;
  width: 100%;
}

.wp-block-embed.alignleft .wp-block-embed__wrapper,
.wp-block-embed.alignright .wp-block-embed__wrapper,
.wp-block[data-align=left] > [data-type="core/embed"] .wp-block-embed__wrapper,
.wp-block[data-align=right] > [data-type="core/embed"] .wp-block-embed__wrapper {
  min-width: 280px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-pause {
  display: none;
}

.slider-controls .slick-controls {
  display: flex;
  gap: 10px;
}
.slider-controls .slick-prev,
.slider-controls .slick-next {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  background-color: #00C0F3;
  color: #2A2323;
  border: 0;
  border-radius: 50%;
  transform-origin: center;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.slider-controls .slick-prev:hover,
.slider-controls .slick-next:hover {
  background-color: #000;
  color: #00C0F3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.slider-controls .slick-prev .icon-chevron,
.slider-controls .slick-next .icon-chevron {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 55%;
  width: 8.37px;
  height: auto;
  fill: currentColor;
  stroke: currentColor;
}
.slider-controls .slick-prev {
  transform: rotate(180deg);
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.play-pause-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  opacity: 0.77;
  transition: 0.2s opacity ease;
  color: inherit;
}
.play-pause-button svg {
  display: block;
  width: 24px;
  height: auto;
}
.play-pause-button .icon-pause-o {
  display: none;
}
.play-pause-button.playing .icon-pause-o {
  display: block;
}
.play-pause-button.playing .icon-play-o {
  display: none;
}
.play-pause-button:hover, .play-pause-button:focus {
  opacity: 1;
}

.popup-modal {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.popup-modal-inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.featured-content-popup .popup-modal-inner {
  max-width: 1002px;
}
.popup-modal-inner video {
  width: 100%;
  height: auto;
}
.popup-modal-content {
  max-height: 90vh;
  overflow: auto;
}
@media (max-width: 782px) {
  .popup-modal-content {
    max-height: 80vh;
  }
}
.popup-modal-close {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background-color: #00C0F3;
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.popup-modal-close .icon-x {
  width: 14.484px;
  height: 14.484px;
  margin: 0;
  fill: currentColor;
}
.popup-modal-close:hover, .popup-modal-close:focus {
  background-color: #E9E8E8;
}
@media (max-width: 1200px) {
  .popup-modal-close {
    width: 32px;
    height: 32px;
  }
  .popup-modal-close .icon-x {
    width: 12px;
    height: 12px;
  }
}
.popup-modal .wp-block-embed.wp-embed-aspect-1-2, .popup-modal .wp-block-embed.wp-embed-aspect-9-16, .popup-modal .wp-block-embed.wp-embed-aspect-1-1 {
  max-width: 40vh;
}
.popup-modal-image {
  padding-top: 38.1%;
}
.popup-modal-title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.194;
  margin-bottom: 15px;
}
@media (max-width: 782px) {
  .popup-modal-title {
    font-size: 24px;
  }
}
.popup-modal-content-inner {
  padding: 54px 88px 80px;
  background-color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 782px) {
  .popup-modal-content-inner {
    padding: 30px 24px;
  }
}

.home-hero-fixed-wrapper, .home-hero-section {
  min-height: 100vh;
  width: 100%;
}
.home-hero-section {
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: #2A2323;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-hero-section .background-video-controls {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
}
.home-hero-fixed-wrapper {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
}
.home-hero-fixed-wrapper .home-hero-content,
.home-hero-fixed-wrapper .video-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media (min-height: 501px) and (min-width: 783px) {
  .home-hero-fixed-wrapper .home-hero-content,
.home-hero-fixed-wrapper .video-background-wrapper {
    left: 228px;
  }
}
.home-hero-fixed-wrapper .video-background-wrapper {
  z-index: 1;
  filter: url(#duotone);
}
.home-hero-fixed-wrapper .video-background-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.home-hero-fixed-wrapper .video-background-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 4;
  bottom: 0;
  right: 0;
  width: 555px;
  height: 730px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  background-image: url("../svg/home-hero-watermark.svg");
  opacity: 0.21;
  mix-blend-mode: overlay;
  isolation: isolate;
}
@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
  .home-hero-fixed-wrapper .video-background-wrapper {
    background: #000;
  }
  .home-hero-fixed-wrapper .video-background-wrapper video {
    opacity: 0.35;
  }
  .home-hero-fixed-wrapper .video-background-wrapper::before {
    background: rgba(0, 192, 243, 0.26);
  }
  .home-hero-fixed-wrapper .video-background-wrapper::after {
    opacity: 0.11;
  }
}
.home-hero-fixed-wrapper .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.home-hero-fixed-wrapper .video-background {
  z-index: 2;
}
.home-hero-title {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.home-hero-content {
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding-left: 153px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.611;
}
.home-hero-content-inner {
  position: relative;
  z-index: 2;
  max-width: 604px;
  max-width: min(calc(100vw - 350px), 604px);
}
.home-hero-content p {
  margin-bottom: 2.22em;
}
.home-hero-content .btn {
  margin-right: 15px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .home-hero-content {
    padding-left: 90px;
    padding-right: 90px;
  }
  .home-hero-title {
    font-size: 58px;
  }
}
@media (max-width: 1000px) {
  .home-hero-content {
    padding-left: 60px;
    padding-right: 60px;
  }
  .home-hero-title {
    font-size: 48px;
  }
}
@media (max-height: 500px), (max-width: 782px) {
  .home-hero-content {
    align-items: center;
    padding: 105px 36px 36px;
    font-size: 16px;
  }
  .home-hero-content-inner {
    max-width: 604px;
  }
  .home-hero-title {
    font-size: 42px;
  }
}

.home-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}
.home-content--main {
  padding: 71px 77px;
}
@media (max-width: 1400px) {
  .home-content--main {
    padding: 50px;
  }
}
@media (max-width: 1200px) {
  .home-content--main {
    padding: 0 0 20px;
  }
}
.home-content--industries {
  padding: 64px 81px 60px;
}
@media (max-width: 1200px) {
  .home-content--industries {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 1000px) {
  .home-content--industries {
    padding-left: 81px;
    padding-right: 81px;
  }
}
@media (max-width: 640px) {
  .home-content--industries {
    padding-left: 36px;
    padding-right: 36px;
  }
}
.home-content--services .photo-cta-block::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 27.5%;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #E9E8E8;
}
.home-content--services .photo-cta-content {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 782px) {
  .home-content--services .photo-cta-content {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  }
}
.home-content--services .text-columns-section {
  padding-top: 45px;
  margin-top: 0;
}
.home-content--services .text-columns-section .h4-like {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
}
.home-content--services .text-columns-block {
  row-gap: 35px;
}
.home-content--services .text-columns-block .btn {
  width: 100%;
  padding: 11px 26px;
}

.floating-photo-block {
  position: relative;
  z-index: 1;
  padding-bottom: 17px;
  padding-right: 62px;
  margin-bottom: 65px;
}
.floating-photo-block:last-child {
  margin-bottom: 0;
}
.floating-photo-block-image .cover-image {
  padding-top: 54.48%;
}
.floating-photo-block-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.floating-photo-block-cta {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 50px;
  width: 460px;
  margin: 26px -50px 26px 0;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}
.floating-photo-block-cta h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.floating-photo-block-list {
  position: relative;
  z-index: 1;
  background-color: #2A2323;
  color: #fff;
  padding: 40px 35px 40px 75px;
  width: 441px;
  line-height: 1.2;
}
.floating-photo-block-list::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 40px;
  bottom: 40px;
  right: -3px;
  width: 6px;
  background-color: #00C0F3;
}
.floating-photo-block-list .menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.floating-photo-block-list a {
  position: relative;
  z-index: 1;
  padding-left: 23px;
  color: inherit;
  text-decoration: none;
}
.floating-photo-block-list a:visited {
  color: inherit;
}
.floating-photo-block-list a:focus {
  color: inherit;
}
.floating-photo-block-list a:active {
  color: inherit;
}
.floating-photo-block-list a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 12.316px;
  height: 1.2em;
  background-image: url("../svg/arrow-long.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.2s ease;
}
.floating-photo-block-list a:hover, .floating-photo-block-list a:focus {
  color: #00C0F3;
}
.floating-photo-block-list a:hover::before, .floating-photo-block-list a:focus::before {
  transform: translateX(5px);
}
.floating-photo-block.is-style-reverse {
  padding-right: 0;
  padding-left: 56px;
}
.floating-photo-block.is-style-reverse .floating-photo-block-content {
  right: auto;
  left: 0;
}
@media (max-width: 1200px) {
  .floating-photo-block, .floating-photo-block.is-style-reverse {
    padding: 0;
    margin-bottom: 20px;
  }
  .floating-photo-block-image .cover-image {
    padding-top: 54.18%;
  }
  .floating-photo-block-content {
    position: relative;
    display: block;
  }
  .floating-photo-block-cta, .floating-photo-block-list {
    width: auto;
  }
  .floating-photo-block-cta {
    margin: 0;
    z-index: 1;
    padding-left: 90px;
  }
  .floating-photo-block-list {
    margin: 0 0 0 20px;
    z-index: 2;
  }
  .floating-photo-block-list::after {
    display: none;
  }
}
@media (max-width: 782px) {
  .floating-photo-block-cta {
    padding: 27px 36px;
  }
  .floating-photo-block-list {
    padding: 30px 45px 30px 39px;
  }
}
@media (max-width: 640px) {
  .floating-photo-block h2 {
    font-size: 23px;
    margin-bottom: 10px;
  }
  .floating-photo-block p {
    margin-bottom: 1.2em;
  }
}

.offset-column-section-header, .offset-column-section-footer {
  text-align: center;
}
.offset-column-section-header {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}
.offset-column-section-title {
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
}
.offset-column-section-title::after {
  left: 50%;
  transform: translateX(-50%);
  background-color: #E9E8E8;
}
@media (max-width: 782px) {
  .offset-column-section-title {
    font-size: 43px;
  }
}
.offset-column-section-footer {
  margin-top: 60px;
}
.offset-column-section-footer .btn {
  margin: 7px;
}
@media (max-width: 1000px) {
  .offset-column-section-footer {
    margin-top: 30px;
  }
}
.offset-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
  width: 100%;
}
.offset-column-grid-item {
  font-family: "rubik", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
}
.offset-column-grid-item:nth-child(odd) {
  margin-bottom: 40px;
}
.offset-column-grid-item:nth-child(even) {
  margin-top: 40px;
}
.offset-column-grid-item .cover-image {
  padding-top: 70.6%;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.16);
  margin-bottom: 24px;
}
.offset-column-grid-item h3 {
  font-family: "rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.offset-column-grid-item .inline-pipe-list {
  margin: 10px 0;
  font-size: 10px;
  color: #6D6E70;
  text-transform: uppercase;
  letter-spacing: 0.036em;
}
@media (max-width: 1200px) {
  .offset-column-grid {
    gap: 0 45px;
  }
  .offset-column-grid-item {
    font-size: 15px;
  }
}
@media (max-width: 1000px) {
  .offset-column-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .offset-column-grid-item:nth-child(odd), .offset-column-grid-item:nth-child(even) {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.testimonials-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  background: #2A2323;
  background: linear-gradient(166.67deg, #2A2323 47%, #000 100%);
  padding: 100px 0 100px 118px;
  display: flex;
  align-items: center;
  gap: 34px;
}
@media (min-height: 501px) and (min-width: 783px) {
  .testimonials-section::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 993px;
    height: 458px;
    background: transparent url("../images/dots-testimonials.png") no-repeat center;
    background-size: 100% auto;
    top: 0;
    left: 170px;
  }
}
.testimonials-header {
  position: relative;
  z-index: 2;
  width: 322px;
  flex-shrink: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}
.testimonials-header .link-underline {
  margin: 0 30px 30px 0;
}
.testimonials-title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.testimonials-slider {
  overflow: hidden;
  min-width: 0;
  padding-left: 19px;
}
.testimonials-slider-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  min-width: 0;
}
.testimonials-slider .slick-slide {
  padding: 10px;
  filter: blur(6px);
  opacity: 0.48;
  transform: scale(0.95);
  transition: all 0.4s ease;
}
.testimonials-slider .slick-slide.slick-active, .testimonials-slider .slick-slide.slick-current-clone-animate {
  filter: none;
  opacity: 1;
  transform: none;
}
.testimonials-slider-item {
  background-color: #fff;
  color: #2D2C2D;
  width: 300px !important;
  min-height: 300px;
  flex-shrink: 0;
  padding: 49px 39px 48px 43px;
}
.testimonials-slider-item .testimonial-quote {
  margin: 0 0 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
}
.testimonials-slider-item .testimonial-source {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.28;
  color: #363940;
}
.testimonials-slider-item .testimonial-source .cover-image {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #6D6E70;
}
.testimonials-slider-item .testimonial-source p {
  margin: 0;
}
.testimonials-slider-controls {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.testimonials-slider-controls .slick-controls {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}
@media (max-width: 1200px) {
  .testimonials-section {
    padding: 90px 0 90px 90px;
  }
}
@media (max-width: 1000px) {
  .testimonials-section {
    padding: 60px 0 66px;
    display: block;
  }
  .testimonials-header {
    margin-left: 90px;
  }
  .testimonials-slider {
    padding-left: 0;
  }
  .testimonials-slider .slick-slide, .testimonials-slider .slick-slide.slick-active {
    filter: blur(6px);
    opacity: 0.48;
    transform: scale(0.95);
  }
  .testimonials-slider .slick-slide.slick-current, .testimonials-slider .slick-slide.slick-current-clone-animate {
    filter: none;
    opacity: 1;
    transform: none;
  }
  .testimonials-slider-controls {
    left: 20px;
    right: 20px;
  }
  .testimonials-slider-controls .slick-controls {
    max-width: 390px;
    margin: auto;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 783px) {
  .testimonials-section.is-overlap-mode {
    padding-top: 169px;
    padding-bottom: 450px;
    margin-bottom: -305px;
  }
  .testimonials-section.is-overlap-mode::before {
    display: none;
  }
  .testimonials-section.is-overlap-mode .testimonials-title {
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
  }
}
@media (max-width: 782px) {
  .testimonials-header {
    width: auto;
    max-width: 600px;
    padding: 0 82px;
    margin-left: 0;
  }
  .testimonials-slider-item {
    width: 309px !important;
    min-height: 0;
    padding: 30px;
  }
  .testimonials-slider-controls .slick-prev,
.testimonials-slider-controls .slick-next {
    width: 32px;
    height: 32px;
    background-position: 13px center;
  }
}
@media (max-width: 640px) {
  .testimonials-header {
    max-width: 394px;
    padding: 0 36px;
  }
}

.entry {
  overflow: hidden;
  font-family: "interstate", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}
.site-main > .entry {
  min-height: 100vh;
}
.entry a {
  color: inherit;
  -webkit-text-decoration-color: #00C0F3;
          text-decoration-color: #00C0F3;
}
.entry a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.entry > * {
  margin-left: 82px;
  margin-right: 82px;
  max-width: 650px;
}
@media (min-width: 1401px) {
  .entry > * {
    margin-left: max(82px, calc(50% - 528px));
  }
}
@media (min-width: 1201px) {
  .entry > * {
    margin-right: 450px;
  }
}
@media (max-width: 640px) {
  .entry > * {
    margin-left: 36px;
    margin-right: 36px;
  }
}
.entry .alignwide, .entry > .alignwide {
  max-width: 1045px;
}
@media (min-width: 1201px) {
  .entry .alignwide, .entry > .alignwide {
    margin-right: 82px;
  }
}
.entry > .alignfull {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.entry > .alignfull .alignwide {
  margin-left: 82px;
  margin-right: 82px;
}
@media (min-width: 1401px) {
  .entry > .alignfull .alignwide {
    margin-left: max(82px, calc(50% - 528px));
  }
}
@media (max-width: 640px) {
  .entry > .alignfull .alignwide {
    margin-left: 36px;
    margin-right: 36px;
  }
}
.entry .full-width-button-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 782px) {
  .entry .full-width-button-section {
    display: block;
  }
}
.entry .full-width-button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 45px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.016em;
  text-decoration: none;
  background-color: #00C0F3;
  color: #2A2323;
}
.entry .full-width-button-link:visited {
  color: #2A2323;
}
.entry .full-width-button-link:focus {
  color: #2A2323;
}
.entry .full-width-button-link:active {
  color: #2A2323;
}
.entry .full-width-button-link--dark {
  background-color: #2A2323;
  color: #fff;
}
.entry .full-width-button-link--dark:visited {
  color: #fff;
}
.entry .full-width-button-link--dark:focus {
  color: #fff;
}
.entry .full-width-button-link--dark:active {
  color: #fff;
}
.entry .full-width-button-link .icon-arrow-long {
  width: 23px;
  height: auto;
  transition: transform 0.2s ease;
}
.entry .full-width-button-link:hover .icon-arrow-long, .entry .full-width-button-link:focus .icon-arrow-long {
  transform: translateX(5px);
}
@media (max-width: 782px) {
  .entry .full-width-button-link {
    padding: 35px;
  }
}

.page-featured-image {
  position: relative;
  z-index: 1;
  padding-top: 32.5%;
}
@media (max-width: 782px) {
  .page-featured-image {
    padding-top: 66.74%;
  }
}

.page-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.page-featured-image + .page-header {
  margin-top: -167px;
}
.page-header-content {
  flex-grow: 1;
  min-height: 170px;
  margin-bottom: 20px;
  padding: 58px 52px 0 82px;
  background-color: #fff;
}
.page-header-content-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 689px;
  padding-bottom: 3px;
}
.page-header-content-inner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: #E9E8E8;
}
.page-header-image {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 315px;
  height: 38px;
  margin-top: -38px;
  margin-right: 62px;
  overflow: visible;
}
.page-header-image .cover-image {
  padding-top: 114%;
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.16);
}
.page-header .intro-text {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1.25em;
}
@media (min-width: 1401px) {
  .entry > .page-header {
    max-width: calc(50% + 590px);
  }
  .page-header-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
@media (max-width: 1200px) {
  .page-featured-image + .page-header {
    margin-top: -67px;
  }
  .page-header-image {
    display: none;
  }
  .page-header-content {
    margin-right: 82px;
  }
}
@media (max-width: 782px) {
  .page-featured-image + .page-header {
    margin-top: -60px;
  }
  .page-header-content {
    min-height: 60px;
    padding-top: 20px;
    padding-right: 55px;
    margin-right: 82px;
  }
  .page-header .page-title {
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 8px;
  }
  .page-header .intro-text {
    line-height: 1.5;
    margin-bottom: 1em;
  }
}
@media (max-width: 640px) {
  .page-header-content {
    padding-left: 36px;
    margin-right: 36px;
  }
}
@media (min-width: 1201px) {
  .entry > .page-header.has-no-image {
    max-width: max(823px, calc(50% + 212px));
  }
}
@media (min-width: 1001px) {
  .page-header.has-dots::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 51px;
    height: 676px;
    background: transparent url("../images/dots-entry-left.png") no-repeat center;
    background-size: 100% auto;
  }
}
@media (min-width: 783px) {
  .page-header.has-no-intro .page-header-content {
    margin-bottom: 0;
  }
  .page-header.has-no-intro .page-header-content-inner {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 782px) {
  .page-header.has-no-intro .page-header-content {
    margin-bottom: 10px;
  }
  .page-header.has-no-intro .page-header-content-inner::after {
    display: none;
  }
}

.text-columns-section {
  margin-top: 61px;
  padding: 70px 82px;
  background-color: #E9E8E8;
}
.text-columns-section .container {
  width: auto;
  max-width: 1056px;
}
@media (min-width: 1001px) {
  .entry > .text-columns-section {
    position: relative;
    z-index: 1;
  }
  .entry > .text-columns-section::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 51px;
    height: 600px;
    background: transparent url("../images/dots-entry-left.png") no-repeat center;
    background-size: 100% auto;
  }
}
.text-columns-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 94px;
}
.text-columns-block .column-title {
  font-size: 18px;
}
.text-columns-block .column-subtitle {
  display: block;
  font-size: 15px;
}
.text-columns-block .column p:last-child {
  margin-bottom: 0;
}
.text-columns-block .column--cta {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .text-columns-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .text-columns-section {
    padding: 40px 36px;
  }
}

.autoplay-video-section {
  position: relative;
  z-index: 2;
  padding-top: 55%;
}
.autoplay-video-section .video-background-wrapper {
  filter: url(#duotone);
  background-color: #2A2323;
}
.autoplay-video-section .video-controls {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 25px;
  color: #fff;
}
@media (min-width: 1001px) {
  .autoplay-video-section::before, .autoplay-video-section::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    background: transparent no-repeat center;
    background-size: 100% auto;
    height: 114px;
  }
  .autoplay-video-section::before {
    left: 0;
    top: 4px;
    width: 1062px;
    background-image: url("../images/dots-video-top.png");
  }
  .autoplay-video-section::after {
    right: 0;
    bottom: -71px;
    width: 922px;
    background-image: url("../images/dots-video-bottom.png");
  }
}

.featured-content-block {
  margin-top: 280px;
  margin-bottom: 80px;
  background-color: #F9F9F9;
  padding-top: 1px;
  padding-bottom: 130px;
}
.featured-content-block + .featured-content-block {
  margin-top: 320px;
}
.featured-content-block + .full-width-button-section {
  margin-top: 150px;
}
.featured-content-block-inner {
  position: relative;
  z-index: 1;
  margin-top: -200px;
}
.featured-content-image {
  position: relative;
  z-index: 1;
  padding-top: 51.24%;
}
.featured-content-text {
  position: relative;
  z-index: 2;
  background-color: #fff;
  max-width: 640px;
  margin-right: 68px;
  padding: 34px 40px 40px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.featured-content-image + .featured-content-text {
  position: absolute;
  left: 20px;
  bottom: -110px;
}
@media (max-width: 1000px) {
  .featured-content-image + .featured-content-text {
    position: relative;
    left: 0;
    bottom: 0;
  }
}
.featured-content-title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.featured-content-description {
  max-width: 564px;
}
@media (max-width: 1200px) {
  .featured-content-description {
    max-width: 464px;
  }
}
@media (max-width: 1000px) {
  .featured-content-text {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .featured-content-header {
    max-width: 624px;
    min-height: 28px;
    margin-top: -27px;
    margin-right: 68px;
    padding-top: 20px;
    padding-right: 58px;
    background-color: #F9F9F9;
  }
}
@media (max-width: 782px) {
  .featured-content-block {
    margin-top: 128px;
    margin-bottom: 45px;
  }
  .featured-content-block + .featured-content-block {
    margin-top: 128px;
  }
  .featured-content-block + .full-width-button-section {
    margin-top: 0;
  }
  .featured-content-block-inner {
    margin-top: -80px;
  }
}
@media (max-width: 640px) {
  .featured-content-image {
    padding-top: 66.48%;
  }
  .featured-content-header {
    padding-top: 14px;
  }
  .featured-content-title {
    margin-bottom: 14px;
    font-size: 19px;
    line-height: 1.26;
  }
}

.featured-project-section {
  margin-top: 77px;
}
.featured-project-block {
  padding-top: 1px;
  background-color: #F9F9F9;
}
.featured-project-block + .featured-project-block {
  margin-top: 100px;
}
.featured-project-slider-wrapper {
  position: relative;
  z-index: 1;
}
.featured-project-slider-controls {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  padding: 20px;
}
.featured-project-slider-controls .slick-prev,
.featured-project-slider-controls .slick-next {
  width: 26px;
  height: 26px;
  background-size: 6.29px auto;
  background-position: 10.5px center;
}
.featured-project-slider-controls .slick-prev:hover, .featured-project-slider-controls .slick-prev:focus,
.featured-project-slider-controls .slick-next:hover,
.featured-project-slider-controls .slick-next:focus {
  background-color: #E9E8E8;
}
.featured-project-slider-item {
  vertical-align: bottom;
}
.featured-project-slider-item .cover-image {
  padding-top: 51.2%;
}
.featured-project-video-link {
  position: relative;
  z-index: 1;
}
.featured-project-video-link::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 102px;
  height: 102px;
  background: rgba(255, 255, 255, 0.08) url("../svg/play-o.svg") no-repeat center;
  background-size: 62px auto;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 3px rgba(255, 255, 255, 0.1) solid;
  border-radius: 50%;
}
.featured-project-header {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin: 0 200px 100px 20px;
  padding: 34px 40px 40px;
  background-color: #fff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.featured-project-slider-wrapper + .featured-project-content .featured-project-header {
  min-height: 245px;
  margin-top: -195px;
}
@media (max-width: 1200px) {
  .featured-project-slider-wrapper + .featured-project-content .featured-project-header {
    margin-top: -100px;
  }
}
@media (max-width: 1000px) {
  .featured-project-slider-wrapper + .featured-project-content .featured-project-header {
    margin-top: 0;
    min-height: 0;
  }
}
.featured-project-title::after {
  background-color: #E9E8E8;
}
.featured-project-desc {
  max-width: 700px;
}
.featured-project-desc p:last-child {
  margin-bottom: 0;
}
.featured-project-details {
  gap: 76px;
}
.featured-project-details .h4-like {
  font-weight: bold;
  margin-bottom: 11px;
}
@media (max-width: 1000px) {
  .featured-project-block {
    padding-bottom: 44px;
    margin-bottom: 40px;
  }
  .featured-project-block:last-child {
    border-bottom: 0;
  }
  .featured-project-header {
    margin: 0 0 45px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .featured-project-title {
    font-size: 24px;
    position: relative;
    z-index: 2;
    margin-right: 100px;
    margin-top: -50px;
    min-height: 60px;
    max-width: 488px;
    padding-top: 20px;
    padding-right: 40px;
    background-color: #F9F9F9;
  }
  .featured-project-desc {
    max-width: 100%;
  }
  .featured-project-details {
    gap: 45px;
  }
}
@media (max-width: 782px) {
  .featured-project-block {
    margin-top: 140px;
    margin-bottom: 40px;
  }
  .featured-project-block + .featured-project-block {
    margin-top: 80px;
  }
  .featured-project-block-inner {
    margin-top: -80px;
  }
}
@media (max-width: 640px) {
  .featured-project-slider-controls {
    padding: 10px;
  }
  .featured-project-slider-item .cover-image {
    padding-top: 66.48%;
  }
  .featured-project-title {
    font-size: 19px;
    min-height: 27px;
    margin-top: -27px;
    margin-right: 86px;
    margin-bottom: 12px;
    padding-top: 18px;
    padding-right: 66px;
    padding-bottom: 0;
  }
  .featured-project-title::after {
    display: none;
  }
}

.photo-cta-block {
  position: relative;
  z-index: 2;
}
.photo-cta-block-inner {
  margin: auto;
  padding-left: 55px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.photo-cta-image {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.photo-cta-image .cover-image {
  padding-top: 59.57%;
}
.photo-cta-content {
  position: relative;
  z-index: 3;
  width: 544px;
  margin-top: 55px;
  margin-right: -295px;
  background-color: #fff;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}
.photo-cta-content p:last-child {
  margin-bottom: 0;
}
.photo-cta-title {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.277;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 15px;
  max-width: 300px;
}
@media (min-width: 1401px) {
  .photo-cta-image {
    max-width: 75%;
  }
}
@media (max-width: 1400px) {
  .photo-cta-block-inner {
    justify-content: flex-end;
    align-items: stretch;
  }
  .photo-cta-image .cover-image {
    padding-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .photo-cta-content {
    max-width: 72.5%;
    margin-top: 128px;
    margin-bottom: 67px;
  }
}
@media (min-width: 783px) {
  .photo-cta-block::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 70px;
    width: 713px;
    height: 235px;
    background: transparent url("../images/dots-photo-cta.png") no-repeat center;
    background-size: 100% auto;
  }
  .photo-cta-block.is-style-reverse::before {
    display: none;
  }
}
@media (max-width: 782px) {
  .photo-cta-block-inner {
    display: block;
    padding-left: 0;
    padding-right: 66px;
  }
  .photo-cta-image .cover-image {
    position: relative;
    padding-top: 66.6%;
  }
  .photo-cta-content {
    margin: 0;
    width: auto;
    padding: 29px 16px 40px 82px;
    box-shadow: none;
  }
}
@media (max-width: 640px) {
  .photo-cta-block-inner {
    padding-right: 20px;
  }
  .photo-cta-content {
    max-width: 410px;
    padding-left: 36px;
  }
  .photo-cta-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 11px;
    max-width: none;
  }
}
.is-style-reverse .photo-cta-block-inner {
  background: #E9E8E8 url("../images/dots-home-services.png") no-repeat right top;
  background-size: 575px auto;
  flex-direction: row;
  padding-left: 0;
  padding-right: 89px;
}
.is-style-reverse .photo-cta-content {
  width: 552px;
  padding: 60px;
  margin-left: -60px;
  margin-right: 0;
}
@media (min-width: 1401px) {
  .is-style-reverse .photo-cta-image .cover-image {
    padding-top: 66.6%;
  }
}
@media (max-width: 1400px) {
  .is-style-reverse .photo-cta-content {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}
@media (max-width: 1200px) {
  .is-style-reverse .photo-cta-block-inner {
    padding-right: 45px;
  }
  .is-style-reverse .photo-cta-content {
    width: 450px;
  }
}
@media (max-width: 782px) {
  .is-style-reverse .photo-cta-content {
    margin: -45px 45px 0 0;
    max-width: none;
    width: auto;
    padding: 29px 36px 40px 82px;
  }
}
@media (max-width: 640px) {
  .is-style-reverse .photo-cta-block-inner {
    padding-right: 20px;
  }
  .is-style-reverse .photo-cta-content {
    margin-right: 0;
    max-width: 410px;
    padding-left: 36px;
  }
}

.contact-form-block {
  position: relative;
  z-index: 1;
  background-color: #E9E8E8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 106px;
  padding: 1px 82px 60px 82px;
}
.contact-form-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: #00C0F3;
  mix-blend-mode: color;
}
.contact-form-block-underlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.56);
}
.contact-form-block-underlay::before, .contact-form-block-underlay::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  background: transparent no-repeat center;
  background-size: 100% auto;
  height: 114px;
}
.contact-form-block-underlay::before {
  width: 1008px;
  top: -102px;
  right: 0;
  background-image: url("../images/dots-contact-form-top.png");
}
.contact-form-block-underlay::after {
  width: 764px;
  bottom: -50px;
  left: 0;
  background-image: url("../images/dots-contact-form-bottom.png");
}
@media (max-width: 782px) {
  .contact-form-block-underlay::before, .contact-form-block-underlay::after {
    display: none;
  }
}
.contact-form-block-inner {
  position: relative;
  z-index: 4;
  background-color: #fff;
  max-width: 1056px;
  margin-top: -46px;
  margin-left: auto;
  margin-right: auto;
  padding: 67px 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1200px) {
  .contact-form-block {
    padding-left: 32px;
    padding-right: 32px;
  }
  .contact-form-block-inner {
    padding: 40px;
  }
}
@media (max-width: 640px) {
  .contact-form-block {
    margin-top: 70px;
    padding: 1px 18px 23px 18px;
  }
  .contact-form-block-inner {
    margin-top: -30px;
  }
}
.contact-form-block .wpforms-field-label {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6D6E70;
  margin-bottom: 5px;
}
.contact-form-block .wpforms-container input,
.contact-form-block .wpforms-container select {
  border-radius: 0;
  border: 1px #E9E8E8 solid;
  height: 46px;
  padding: 0 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form-block .wpforms-container select {
  padding-right: 40px;
  background-image: url("../svg/chevron-down.svg");
  background-position: right 15px center;
  background-size: 20px auto;
  background-repeat: no-repeat;
}
.contact-form-block .wpforms-container .wpforms-field {
  padding: 0;
  margin-bottom: 30px;
}
.contact-form-block .wpforms-container .wpforms-field-file-upload .wpforms-field-description {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6D6E70;
}
.contact-form-block .wpforms-container .wpforms-field-layout {
  margin-bottom: 0;
}
.contact-form-block .wpforms-container .wpforms-submit-container {
  padding: 0;
}
.contact-form-block .wpforms-container .wpforms-submit-container button,
.contact-form-block .wpforms-container .wpforms-submit-container button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 33px;
  border: 3px transparent solid;
  text-decoration: none;
  cursor: pointer;
  background-color: #00C0F3;
  color: #2A2323;
  display: block;
  width: 100%;
  min-height: 48px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
}
.contact-form-block .wpforms-container .wpforms-submit-container button:visited,
.contact-form-block .wpforms-container .wpforms-submit-container button[type=submit]:visited {
  color: #2A2323;
}
.contact-form-block .wpforms-container .wpforms-submit-container button:focus,
.contact-form-block .wpforms-container .wpforms-submit-container button[type=submit]:focus {
  color: #2A2323;
}
.contact-form-block .wpforms-container .wpforms-submit-container button:hover,
.contact-form-block .wpforms-container .wpforms-submit-container button[type=submit]:hover {
  color: #00C0F3;
}
.contact-form-block .wpforms-container .wpforms-submit-container button:active,
.contact-form-block .wpforms-container .wpforms-submit-container button[type=submit]:active {
  color: #2A2323;
}
.contact-form-block .wpforms-container .wpforms-submit-container button:hover, .contact-form-block .wpforms-container .wpforms-submit-container button:focus,
.contact-form-block .wpforms-container .wpforms-submit-container button[type=submit]:hover,
.contact-form-block .wpforms-container .wpforms-submit-container button[type=submit]:focus {
  background-color: #2A2323;
}
@media (max-width: 640px) {
  .contact-form-block .wpforms-container .wpforms-submit-container button,
.contact-form-block .wpforms-container .wpforms-submit-container button[type=submit] {
    max-width: 196px;
    margin: auto;
  }
}
.contact-form-block div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-field-layout-columns {
  margin: 0;
  gap: 20px;
}
@media only screen and (max-width: 600px) {
  .contact-form-block div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-field-layout-columns {
    gap: 0;
  }
}
.contact-form-block div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-field-layout-columns .wpforms-layout-column-50 {
  padding: 0;
}

.accordion-section {
  background: #2A2323;
  background: linear-gradient(159deg, #2a2323 30%, black 90%);
  color: #fff;
  padding: 100px 82px;
}
@media (max-width: 640px) {
  .accordion-section {
    padding: 65px 36px 80px;
  }
}
.accordion-section-title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.194;
  text-align: center;
  margin-bottom: 55px;
}
.accordion-section-title::after {
  background-color: #E9E8E8;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 782px) {
  .accordion-section-title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
}
.accordion-block {
  max-width: 934px;
  margin: auto;
}
.accordion-block .accordion {
  padding: 10px 0;
  border-bottom: 1px rgba(233, 232, 232, 0.2) solid;
}
.accordion-block .accordion:first-child {
  border-top: 1px rgba(233, 232, 232, 0.2) solid;
}
@media (max-width: 782px) {
  .accordion-block .accordion {
    padding: 0;
  }
}
.accordion-heading {
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.21;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}
@media (max-width: 640px) {
  .accordion-heading {
    font-size: 15px;
  }
}
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px 16px 26px 20px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
}
.accordion-trigger-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  border-radius: 33px;
  border: 3px #00C0F3 solid;
  background-color: #00C0F3;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.3s ease;
}
.accordion-trigger-icon-label {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.accordion-trigger-icon-label--open {
  display: block;
}
.accordion-trigger-icon-label--close {
  display: none;
}
.accordion.is-open .accordion-trigger-icon {
  transform: rotate(45deg);
}
.accordion.is-open .accordion-trigger-icon-label--open {
  display: none;
}
.accordion.is-open .accordion-trigger-icon-label--close {
  display: block;
}
.accordion-trigger .icon-plus {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: #2A2323;
  stroke: #2A2323;
  transition: fill 0.2s ease, stroke 0.2s ease;
}
.accordion-trigger:hover .accordion-trigger-icon, .accordion.is-open .accordion-trigger .accordion-trigger-icon {
  background-color: transparent;
}
.accordion-trigger:hover .icon-plus, .accordion.is-open .accordion-trigger .icon-plus {
  fill: #fff;
  stroke: #fff;
}
@media (max-width: 782px) {
  .accordion-trigger-icon {
    width: 25px;
    height: 25px;
    border-radius: 25px;
  }
  .accordion-trigger .icon-plus {
    width: 9px;
    height: 9px;
  }
}
@media (max-width: 640px) {
  .accordion-trigger {
    padding-right: 0;
    padding-left: 0;
  }
}
.accordion-content {
  padding: 0 95px 0 20px;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: visibility 0s 0.3s, opacity 0.3s, max-height 0.3s;
}
.accordion.is-open .accordion-content {
  visibility: visible;
  opacity: 1;
  max-height: none;
  transition: opacity 0.5s, max-height 0.3s;
}
.accordion-content p {
  margin-bottom: 3em;
}
@media (max-width: 640px) {
  .accordion-content {
    padding: 0;
  }
}

.single-vg_service .container {
  max-width: 1033px;
}
.single-vg_service .text-columns-section {
  margin-top: 120px;
  padding-top: 10px;
  padding-bottom: 45px;
}
.single-vg_service .text-columns-block {
  margin-top: -68px;
  gap: 28px;
}
.single-vg_service .text-columns-block .column {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.photo-gallery-section {
  position: relative;
  z-index: 1;
  background-color: #E9E8E8;
  margin-bottom: 50px;
}
.photo-gallery-section::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-color: inherit;
  width: 100vw;
  height: 150px;
  left: 50%;
  bottom: -75px;
  transform-origin: center bottom;
  transform: translateX(-50%) rotate(2deg);
}
.photo-gallery-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 31.94fr 23.4369fr 16.94fr 23.4369fr;
  grid-template-areas: "first second third third" "first fourth fourth fifth";
}
.photo-gallery-item {
  position: relative;
  z-index: 1;
}
.photo-gallery-item:nth-child(1n+1) {
  grid-area: first;
  padding-top: 0;
}
.photo-gallery-item:nth-child(2n+2) {
  grid-area: second;
  padding-top: 100%;
}
.photo-gallery-item:nth-child(3n+3) {
  grid-area: third;
  padding-top: 0;
}
.photo-gallery-item:nth-child(4n+4) {
  grid-area: fourth;
  padding-top: 0;
}
.photo-gallery-item:nth-child(5n+5) {
  grid-area: fifth;
  padding-top: 100%;
}
.photo-gallery-item .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1200px) {
  .photo-gallery-grid {
    gap: 15px;
  }
}
@media (max-width: 640px) {
  .photo-gallery-section {
    padding-right: 36px;
    padding-left: 36px;
  }
  .photo-gallery-grid {
    width: auto;
    gap: 30px;
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .photo-gallery-item, .photo-gallery-item:nth-child(1n+1), .photo-gallery-item:nth-child(2n+2), .photo-gallery-item:nth-child(3n+3), .photo-gallery-item:nth-child(4n+4), .photo-gallery-item:nth-child(5n+5) {
    padding-top: 75%;
    grid-area: auto;
  }
}

.detail-list-section {
  padding: 75px 0 50px;
}
.detail-list-columns {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.detail-list-columns .column {
  max-width: 100%;
  padding: 38px 65px;
  border-left: 1px #E9E8E8 solid;
}
.detail-list-columns .column:first-child {
  padding-left: 0;
  border-left: 0;
}
.detail-list-columns .column:last-child {
  padding-right: 0;
}
.detail-list-columns h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 19px 1.26;
}
.detail-list-columns .has-accent {
  padding-bottom: 10px;
}
.detail-list-columns .has-accent::after {
  width: 75px;
}
.detail-list-ul {
  margin: 0 0 0 16px;
  list-style-type: circle;
  font-family: "rubik", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.detail-list-ul.has-columns {
  -moz-columns: 2;
       columns: 2;
  gap: 40px;
}
@media (max-width: 1200px) {
  .detail-list-columns .column {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1000px) {
  .detail-list-section {
    padding-left: 82px;
    padding-right: 82px;
  }
  .detail-list-section .container {
    width: auto;
  }
  .detail-list-columns {
    display: block;
  }
  .detail-list-columns .column {
    border-bottom: 1px #E9E8E8 solid;
  }
  .detail-list-columns .column, .detail-list-columns .column:first-child, .detail-list-columns .column:last-child {
    padding-left: 30px;
    padding-right: 30px;
    border-left: 0;
  }
  .detail-list-columns .column:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 640px) {
  .detail-list-section {
    padding-left: 36px;
    padding-right: 36px;
  }
}
