:root {
  --padding-on-side: 40px;
  --margins: 1em;
  --gap: 40px;
  --content-small: 1200px;
  --content-regular: 1400px;
  --content-big: 1600px;
  --regular: 400;
  --medium: 500;
  --bold: 700;
  --black: 800;
  --border-radius-smaller: 4px;
  --border-radius: 10px;
  --border-radius-big: 20px;
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-30: 30px;
  --font-size-36: 36px;
  --font-size-48: 48px;
  --font-size-60: 60px;
  --font-size-90: 90px;
  --font-size-120: 180px;
  --color-white: #FFF;
  --color-black: #12100e;
  --color-green: #007340;
  --color-red: #E52629;
  --shadow: 0 0.6em 2em rgba(7, 11, 25, 0.5);
  --shadow-darker: none;
  --color-main: #3d4851;
  --color-primary: #626e79;
  --color-secondary: #9699a1;
  --color-background: #e6e9ec;
  --color-border: transparent;
  accent-color: var(--color-primary);
}
* {
  box-sizing: border-box;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
input,
textarea,
p,
body,
span {
  margin: 0;
  padding: 0;
}
img {
  border: none;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
a,
svg,
path {
  transition: all 0.25s ease-in-out;
}
div,
article,
section,
img,
main,
input,
textarea {
  display: block;
}
input,
textarea,
img,
a,
option,
select,
button,
div {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
html {
  font-size: 10px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: var(--regular);
  height: fill-available;
  height: -webkit-fill-available;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-size: var(--font-size-18);
  color: var(--color-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-white);
  min-height: 100vh;
  min-height: fill-available;
  min-height: -webkit-fill-available;
  overflow: clip;
  scrollbar-color: var(--color-main) var(--color-primary);
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 0.8rem;
  background: var(--color-main);
}
body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0.4rem;
}
p {
  line-height: 1.4em;
}
.content {
  width: 100%;
  padding: 0 var(--padding-on-side);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.content--regular {
  max-width: calc(var(--content-regular) + 2 * var(--padding-on-side));
}
.content--smaller {
  max-width: calc(var(--content-small) + 2 * var(--padding-on-side));
}
.content--bigger {
  max-width: calc(var(--content-big) + 2 * var(--padding-on-side));
}
.section,
.is-style-section {
  position: relative;
  z-index: 2;
}
.section--max-width,
.is-style-section--max-width {
  max-width: 192rem;
  margin: 0 auto;
}
.section--background,
.is-style-section--background {
  background-color: var(--color-background);
}
.section--black,
.is-style-section--black {
  background-color: var(--color-black);
  color: var(--color-white);
}
.section--gradient,
.is-style-section--gradient {
  background: linear-gradient(to bottom, var(--color-background), var(--color-white));
}
.section--normal,
.is-style-section--normal {
  padding: calc(var(--gap) * 2) 0;
}
.section--no-top,
.is-style-section--no-top {
  padding-top: 0;
}
.section--no-bottom,
.is-style-section--no-bottom {
  padding-bottom: 0;
}
.absolute-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.button,
.wp-block-button__link {
  display: inline-block;
  padding: 0.7em 1.5em;
  line-height: 1em;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-18);
  border: none;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  border-radius: var(--border-radius-smaller);
  color: var(--color-white);
  background-color: var(--color-secondary);
  box-shadow: none;
}
.button strong,
.wp-block-button__link strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.button:hover,
.wp-block-button__link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.button--margin-top,
.wp-block-button__link--margin-top {
  margin-top: var(--gap);
}
.text-center {
  text-align: center;
}
.margin-top {
  margin-top: var(--gap);
}
.section-title,
h2.wp-block-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--black);
  font-size: var(--font-size-60);
  line-height: 1.2em;
  color: var(--color-black);
  margin-bottom: 0.5em;
}
.section-title strong,
h2.wp-block-heading strong {
  color: var(--color-primary);
  font-weight: var(--black);
}
.section-title--smaller,
h2.wp-block-heading--smaller {
  font-size: var(--font-size-36);
  margin-bottom: 1em;
}
.section-subheading {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--medium);
  font-size: var(--font-size-24);
  line-height: 1.2em;
  color: var(--color-primary);
  margin-bottom: 0.25em;
}
.section-subheading strong {
  color: var(--color-primary);
  font-weight: var(--medium);
}
.global-style > *:first-child,
.wp-block-group > *:first-child {
  margin-top: 0;
}
.global-style > *:last-child,
.wp-block-group > *:last-child {
  margin-bottom: 0;
}
.global-style p,
.wp-block-group p {
  margin: 1em 0;
}
.global-style p a,
.wp-block-group p a,
.global-style li a,
.wp-block-group li a,
.global-style table a,
.wp-block-group table a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}
.global-style p a::after,
.wp-block-group p a::after,
.global-style li a::after,
.wp-block-group li a::after,
.global-style table a::after,
.wp-block-group table a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-primary-hover);
}
.global-style p a:hover::after,
.wp-block-group p a:hover::after,
.global-style li a:hover::after,
.wp-block-group li a:hover::after,
.global-style table a:hover::after,
.wp-block-group table a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
.global-style hr,
.wp-block-group hr {
  border: 0;
  height: 2px;
  background: var(--color-background);
  clear: both;
  margin: var(--gap) 0;
}
.global-style h1,
.wp-block-group h1,
.global-style h2,
.wp-block-group h2,
.global-style h3,
.wp-block-group h3,
.global-style h4,
.wp-block-group h4,
.global-style h5,
.wp-block-group h5 {
  line-height: 1.1em;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--black);
  margin-top: 1em;
  color: var(--color-main);
}
.global-style h1 strong,
.wp-block-group h1 strong,
.global-style h2 strong,
.wp-block-group h2 strong,
.global-style h3 strong,
.wp-block-group h3 strong,
.global-style h4 strong,
.wp-block-group h4 strong,
.global-style h5 strong,
.wp-block-group h5 strong {
  color: var(--color-primary);
  font-weight: var(--black);
}
.global-style h1,
.wp-block-group h1 {
  font-size: var(--font-size-90);
  margin-bottom: 0.5em;
}
.global-style h2,
.wp-block-group h2 {
  font-size: var(--font-size-48);
  margin-bottom: 0.5em;
}
.global-style h3,
.wp-block-group h3 {
  font-size: var(--font-size-30);
  color: var(--color-primary);
}
.global-style h4,
.wp-block-group h4 {
  font-size: var(--font-size-24);
}
.global-style ol:not([class]),
.wp-block-group ol:not([class]),
.global-style ul:not([class]),
.wp-block-group ul:not([class]),
.global-style ul.is-style-two-columns,
.wp-block-group ul.is-style-two-columns {
  counter-reset: item;
  list-style: none;
  margin: var(--margins) 0;
}
.global-style ul:not([class]) li,
.wp-block-group ul:not([class]) li,
.global-style ul.is-style-four-columns li,
.wp-block-group ul.is-style-four-columns li {
  padding: 0.3em 0 0.3em 2em;
  line-height: 1.4em;
}
.global-style ul:not([class]) li::before,
.wp-block-group ul:not([class]) li::before,
.global-style ul.is-style-four-columns li::before,
.wp-block-group ul.is-style-four-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: var(--color-secondary);
  top: 0.5em;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='17'%3E%3Cpath fill='%23626e79' fill-rule='evenodd' d='M6.402 16.309 1.9 10.891c-1.277-.387-1.276-1.015-.79-1.4l.741-.838a.989.989 0 0 1 1.399.002l3.853 3.871L19.153.464a1.15 1.15 0 0 0 1.399 0l.839.841a.991.991 0 0 1 0 1.4L7.8 16.31a.987.987 0 0 1-1.398-.001Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.global-style ol li::before,
.wp-block-group ol li::before {
  color: var(--color-main);
}
.global-style ol:not([class]),
.wp-block-group ol:not([class]) {
  padding-left: 0;
}
.global-style ol:not([class]) li,
.wp-block-group ol:not([class]) li {
  padding-left: 1.4em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}
.global-style ol:not([class]) li::before,
.wp-block-group ol:not([class]) li::before {
  counter-increment: item;
  content: counter(item) '. ';
  font-weight: var(--bold);
  display: inline-block;
  position: absolute;
  left: 0;
  z-index: 2;
}
.global-style blockquote,
.wp-block-group blockquote {
  border-left: 0.4rem solid var(--color-main);
  margin: var(--gap) 0;
  padding: calc(var(--gap) * 0.75) var(--gap);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='124' height='99'%3E%3Cpath fill='%232B2171' fill-rule='evenodd' d='M55.855 28.158C55.536 13.346 43.939 1.929 28.811 2.255 13.999 2.574 2.589 14.486 2.908 29.299c.224 10.4 6.087 19.102 14.685 23.016L.928 98.393l24.898-.536L48.478 51.65c4.819-10.509 7.519-16.873 7.377-23.492Zm67.759-1.46C123.295 11.886 111.383.476 96.57.795c-15.127.326-26.222 12.475-25.903 27.044.224 10.4 6.087 19.103 14.685 23.016L68.687 96.934l24.898-.537 22.337-46.2c5.638-10.516 7.834-16.88 7.692-23.499Z' opacity='.1'/%3E%3C/svg%3E") 101% 105% / auto no-repeat;
  background-color: var(--color-background);
}
.global-style blockquote p,
.wp-block-group blockquote p {
  margin: 0;
  z-index: 2;
}
.global-style blockquote cite,
.wp-block-group blockquote cite {
  margin-top: 1em;
  font-size: var(--font-size-16);
  display: block;
}
.has-small-font-size {
  font-size: var(--font-size-18);
}
.has-medium-font-size {
  font-size: var(--font-size-24);
  color: var(--color-main);
  line-height: 1.5;
}
.has-large-font-size {
  font-size: var(--font-size-24);
}
.has-huge-font-size {
  font-size: var(--font-size-30);
}
.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-table {
  margin: var(--margins) 0;
  overflow: inherit;
}
.wp-block-table table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
.wp-block-table thead {
  border: none;
}
.wp-block-table th {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-30);
  color: var(--color-main);
  background-color: var(--color-secondary-darker);
  text-align: left;
  border: none;
  padding: 0.5em 0.8em;
}
.wp-block-table th strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.wp-block-table th:first-child {
  border-top-left-radius: var(--border-radius-smaller);
  border-bottom-left-radius: var(--border-radius-smaller);
}
.wp-block-table th:last-child {
  border-top-right-radius: var(--border-radius-smaller);
  border-bottom-right-radius: var(--border-radius-smaller);
}
.wp-block-table td {
  font-size: var(--font-size-18);
  text-align: left;
  border: none;
  padding: 0.8em 1.4em;
}
.wp-block-table td:first-child {
  border-top-left-radius: var(--border-radius-smaller);
  border-bottom-left-radius: var(--border-radius-smaller);
}
.wp-block-table td:last-child {
  border-top-right-radius: var(--border-radius-smaller);
  border-bottom-right-radius: var(--border-radius-smaller);
}
.wp-block-table tr:nth-of-type(even) td {
  background-color: var(--color-secondary-lighter);
}
@media screen and (max-width: 768px) {
  .wp-block-table th {
    font-size: var(--font-size-24);
  }
  .wp-block-table td {
    font-size: var(--font-size-14);
    line-height: 1.2;
  }
}
.is-style-two-columns {
  column-count: 2;
  gap: var(--gap);
}
.is-style-section--background {
  background-color: var(--color-background);
}
.is-style-page-subheading {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: var(--font-size-24);
  font-weight: var(--bold);
  margin-bottom: 0 !important;
}
.is-style-page-subheading + .wp-block-heading {
  margin-top: 0;
}
.is-style-section-subheading {
  color: var(--color-primary);
  font-size: var(--font-size-24);
  font-weight: var(--medium);
  margin-bottom: 0 !important;
}
.is-style-section-subheading + .wp-block-heading {
  margin-top: 0;
}
@media screen and (max-width: 660px) {
  .is-style-two-columns {
    column-count: 1;
  }
}
.wp-block-columns {
  gap: calc(var(--gap) * 2);
}
.wp-block-media-text {
  grid-template-columns: 50% 1fr;
  gap: calc(var(--gap) * 1);
  margin: var(--gap) 0;
}
.wp-block-media-text + .wp-block-media-text {
  margin-top: calc(var(--gap) * 2);
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
.wp-block-media-text .wp-block-media-text__content > *:first-child {
  margin-top: 0;
}
.wp-block-media-text .wp-block-media-text__content > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .wp-block-media-text {
    grid-template-columns: 1fr !important;
  }
  .wp-block-media-text .wp-block-media-text__media {
    grid-column: auto !important;
    order: 1;
    grid-row: auto !important;
  }
  .wp-block-media-text .wp-block-media-text__content {
    grid-column: auto !important;
    order: 2;
    grid-row: auto !important;
  }
}
.wp-block-group__inner-container {
  width: 100%;
  padding: 0 var(--padding-on-side);
  margin: 0 auto;
  position: relative;
  z-index: 5;
  max-width: calc(var(--content-regular) + 2 * var(--padding-on-side));
}
.section--narrow .wp-block-group__inner-container {
  max-width: calc(var(--content-small) + 2 * var(--padding-on-side));
}
.contacts {
  align-items: center;
}
.contacts h3 + p {
  margin-top: 0.25em;
}
.contacts p:last-child {
  margin-bottom: 0;
}
.contacts iframe {
  display: block;
  width: 100%;
  height: 48rem;
}
.wp-block-group a {
  z-index: 5;
}
figcaption {
  margin-top: 0.2em;
  font-size: var(--font-size-16);
  font-style: italic;
}
.wp-block-group__inner-container > *:first-child,
.wp-block-column > *:first-child {
  margin-top: 0;
}
.wp-block-group__inner-container > *:last-child,
.wp-block-column > *:last-child {
  margin-bottom: 0;
}
.is-style-four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 var(--gap);
}
@media screen and (max-width: 768px) {
  .is-style-four-columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .is-style-four-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.wp-block-buttons {
  display: flex;
}
.top-bar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.25s ease-in-out;
  background: linear-gradient(to right, var(--color-background), var(--color-white));
}
.top-bar__menu {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
.top-bar__menu a {
  font-size: var(--font-size-18);
  display: block;
  padding: 0.5em 1em;
  color: var(--color-black);
  text-transform: uppercase;
  font-weight: var(--bold);
}
.top-bar__menu a:hover {
  color: var(--color-primary);
}
.top-bar__menu .current-menu-item a {
  color: var(--color-secondary);
}
.top-bar__menu .current-menu-item a:hover {
  color: var(--color-primary);
}
.top-bar__content {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
  align-items: center;
}
.top-bar__logo img {
  height: clamp(30px, 5cqw, 50px);
}
.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: var(--gap);
  background-color: var(--color-black);
  padding: 1.4em 1em;
}
.top-bar__contacts::after {
  content: "";
  position: absolute;
  left: calc(100% - 2px);
  width: 100vw;
  height: 100%;
  background-color: var(--color-black);
}
.top-bar__contacts::before {
  content: "";
  position: absolute;
  height: 100%;
  aspect-ratio: 1;
  right: 100%;
  background-image: linear-gradient(to top right, transparent 50%, var(--color-black) 0);
}
.top-bar__contact--phone .top-bar__contact-text {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 512 512' version='1.1' viewBox='0 0 512 512'%3E%3Cpath fill='%239699a1' d='M372.4 506c-19.5-.1-38.8-2.6-57.7-7.3-65.2-15.7-132.3-55.6-189-112.4S29 262.5 13.3 197.3C-3.3 128.8 8.6 70.2 46.5 32.2l10.8-10.8C77.8 1 111 1 131.4 21.4l62.3 62.3c20.5 20.5 20.5 53.7 0 74.1L157 194.6c17.6 31 41.7 62 70 90.3s59.4 52.4 90.3 70l36.8-36.8c20.5-20.5 53.7-20.5 74.1 0l62.3 62.3c20.5 20.5 20.5 53.7 0 74.1l-10.9 10.8C453 492.2 416 506 372.4 506zM94.5 43.3c-4 0-7.9 1.6-10.7 4.4L72.9 58.6C44.5 87 36.2 133.2 49.5 188.5 63.7 247.1 100.1 308 152 360s112.8 88.3 171.5 102.5c55.3 13.4 101.5 5 129.9-23.4l10.8-10.8c5.9-5.9 5.9-15.5 0-21.4L402 344.5c-5.9-5.9-15.5-5.9-21.4 0L334 391.1c-5.7 5.7-14.5 7.1-21.8 3.4-38.2-19.8-76.8-48.6-111.5-83.3s-63.4-73.2-83.3-111.5c-3.7-7.2-2.4-16 3.4-21.8l46.7-46.6c5.9-5.9 5.9-15.5 0-21.4l-62.3-62.3c-2.9-2.7-6.7-4.3-10.7-4.3zm297.9 238.4c-10.3 0-18.7-8.4-18.7-18.7-.1-68.1-55.3-123.4-123.4-123.4-10.3 0-18.7-8.4-18.7-18.7s8.4-18.7 18.7-18.7c88.6 0 160.7 72.1 160.7 160.8 0 10.4-8.3 18.7-18.6 18.7zm78.8 0c-10.3 0-18.7-8.4-18.7-18.7 0-111.5-90.8-202.3-202.3-202.3-10.3 0-18.7-8.4-18.7-18.7s8.4-18.7 18.7-18.7c132.1 0 239.6 107.5 239.6 239.6.1 10.5-8.3 18.8-18.6 18.8z'/%3E%3C/svg%3E") left center / auto 1em no-repeat;
}
.top-bar__contact--email .top-bar__contact-text {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 32 25.2' version='1.1' viewBox='0 0 32 25.2'%3E%3Cpath fill='%239699a1' d='M25.7.4H6.3C2.9.4.2 3.1.2 6.5v12.1c0 3.4 2.7 6.1 6.1 6.1h19.4c3.4 0 6.1-2.7 6.1-6.1V6.5c0-3.3-2.7-6.1-6.1-6.1zM6.3 2.9h19.4c1.4 0 2.7.8 3.3 2.1l-12.3 9.2c-.4.3-1 .3-1.5 0L3 5c.6-1.3 1.9-2.1 3.3-2.1zm19.4 19.4H6.3c-2 0-3.6-1.6-3.6-3.6v-11l11.2 8.4c1.3 1 3.1 1 4.4 0l11.2-8.4v10.9c-.1 2.1-1.8 3.7-3.8 3.7z'/%3E%3C/svg%3E") left center / auto 0.9em no-repeat;
  padding-left: 1.6em;
}
.top-bar__contact-text {
  font-size: var(--font-size-14);
  color: var(--color-white);
  padding-left: 1.4em;
}
.top-bar__contact-value {
  font-size: var(--font-size-24);
  font-weight: var(--bold);
  letter-spacing: -0.05em;
  color: var(--color-secondary);
  text-decoration: none;
  display: inline-block;
}
.top-bar__contact-value::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.top-bar__contact-value:hover::after {
  width: 100%;
  color: var(--color-secondary);
}
.top-bar__contact-value:hover {
  color: var(--color-secondary);
}
.top-bar__mobile-menu {
  display: none;
  align-items: center;
  margin-left: var(--gap);
  cursor: pointer;
}
.top-bar__mobile-menu:hover .top-bar__hamburger span {
  width: 100%;
}
.top-bar__mobile-menu-text {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  text-transform: uppercase;
  font-size: var(--font-size-24);
  font-weight: var(--black);
  letter-spacing: -0.025em;
  margin-right: 0.5em;
  color: var(--color-black);
  transition: all 0.25s ease-in-out;
}
.top-bar__mobile-menu-text strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.top-bar__hamburger {
  width: 2em;
  height: 1.6em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-bar__hamburger span {
  display: block;
  height: 0.25em;
  border-radius: 0;
  margin-left: auto;
  transition: all 0.25s ease-in-out;
  background-color: var(--color-black);
}
.top-bar__hamburger span:nth-child(1) {
  width: 70%;
}
.top-bar__hamburger span:nth-child(2) {
  width: 100%;
}
.top-bar__hamburger span:nth-child(3) {
  width: 80%;
}
@media screen and (max-width: 1300px) {
  .top-bar {
    padding: 1rem 0;
  }
  .top-bar__contacts {
    display: none;
  }
  .top-bar__menu {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .top-bar__mobile-menu {
    display: flex;
    align-items: center;
  }
  .top-bar__menu {
    display: none;
  }
  .top-bar__right {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 440px) {
  .top-bar__phone {
    display: none;
  }
  .top-bar__right {
    justify-content: flex-end;
  }
}
#pixel-to-watch {
  position: absolute;
  left: 0;
  height: 100px;
  top: 1px;
  z-index: -2;
}
.mobile-menu {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  background-color: var(--color-black);
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.2s ease-in-out;
}
.mobile-menu.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.mobile-menu__close {
  width: 2.4em;
  height: 2.4em;
  position: absolute;
  top: 2rem;
  right: var(--padding-on-side);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M3.4 3.4l33.2 33.2m0-33.2L3.4 36.6' fill='none' stroke='%23FFFFFF' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10'/%3E%3C/svg%3E") center / contain no-repeat;
  cursor: pointer;
}
.mobile-menu__content-wrapper {
  width: 100%;
  overflow-y: auto;
  padding-top: 6rem;
  padding-bottom: 4rem;
  height: 100vh;
  scrollbar-color: var(--color-main) var(--color-primary);
  scrollbar-width: thin;
  display: flex;
  align-items: center;
}
.mobile-menu__content-wrapper::-webkit-scrollbar {
  width: 0.8rem;
  background: var(--color-main);
}
.mobile-menu__content-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0.4rem;
}
.mobile-menu__menu {
  width: 100%;
}
.mobile-menu__menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu__menu > li:last-child {
  border-bottom: none;
}
.mobile-menu__menu > li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mobile-menu__menu > li > a {
  width: calc(100% - 4rem);
  order: 1;
}
.mobile-menu__menu a {
  color: var(--color-white);
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-30);
  padding: 0.5em 1.5em 0.7em;
  display: inline-block;
}
.mobile-menu__menu a strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.mobile-menu__menu .current-menu-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-secondary);
}
.mobile-menu .sub-menu {
  background-color: rgba(255, 255, 255, 0.03);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease-in-out;
  order: 3;
  width: 100%;
}
.mobile-menu .sub-menu.visible {
  visibility: visible;
  opacity: 1;
}
.mobile-menu .sub-menu a {
  font-family: 'Ubuntu', sans-serif;
  font-weight: var(--regular);
  font-size: var(--font-size-20);
  padding: 0.5em 2em;
  display: block;
}
.mobile-menu .open-submenu {
  order: 2;
  flex-shrink: 0;
  right: 0;
  width: 4rem;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu .open-submenu::after {
  height: 100%;
  width: 100%;
  content: '';
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 20 12.1' version='1.1' viewBox='0 0 20 12.1'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='5' d='M2.1 2.2 10 10.1 18 2.2'/%3E%3C/svg%3E") center / 1rem auto no-repeat;
  display: inline-block;
  transition: all 0.25s ease-in-out;
}
.mobile-menu .open-submenu.active::after {
  transform: rotate(180deg);
}
.mobile-menu__content {
  flex-basis: 100%;
}
@media screen and (max-width: 1024px) {
  .mobile-menu {
    display: block;
  }
}
.footer {
  background-color: var(--color-background);
}
.footer__top-content {
  padding-top: calc(var(--gap) * 2);
  padding-bottom: calc(var(--gap) * 1.5);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 10%, calc(var(--gap) * 2));
}
.footer__logo img {
  height: clamp(30px, 5cqw, 60px);
  width: auto;
}
.footer__text {
  font-size: var(--font-size-16);
  margin: 1em 0 1.5em;
}
.footer__title {
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--black);
  font-size: var(--font-size-24);
  margin-bottom: 1em;
}
.footer__title strong {
  color: var(--color-primary);
  font-weight: var(--black);
}
.footer__menu--2 {
  column-count: 2;
}
.footer__menu a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
  color: var(--color-main);
  font-size: var(--font-size-16);
  padding: 0.4em 0;
}
.footer__menu a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.footer__menu a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
.footer__bottom {
  padding-bottom: var(--gap);
}
.footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  font-size: var(--font-size-14);
}
.footer__links a {
  color: var(--color-main);
  text-decoration: none;
  display: inline-block;
}
.footer__links a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.footer__links a:hover::after {
  width: 100%;
  color: var(--color-main);
}
.footer__contacts {
  display: grid;
  gap: 1em;
}
.footer__contact--phone .footer__contact-text {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 512 512' version='1.1' viewBox='0 0 512 512'%3E%3Cpath fill='%23626e79' d='M372.4 506c-19.5-.1-38.8-2.6-57.7-7.3-65.2-15.7-132.3-55.6-189-112.4S29 262.5 13.3 197.3C-3.3 128.8 8.6 70.2 46.5 32.2l10.8-10.8C77.8 1 111 1 131.4 21.4l62.3 62.3c20.5 20.5 20.5 53.7 0 74.1L157 194.6c17.6 31 41.7 62 70 90.3s59.4 52.4 90.3 70l36.8-36.8c20.5-20.5 53.7-20.5 74.1 0l62.3 62.3c20.5 20.5 20.5 53.7 0 74.1l-10.9 10.8C453 492.2 416 506 372.4 506zM94.5 43.3c-4 0-7.9 1.6-10.7 4.4L72.9 58.6C44.5 87 36.2 133.2 49.5 188.5 63.7 247.1 100.1 308 152 360s112.8 88.3 171.5 102.5c55.3 13.4 101.5 5 129.9-23.4l10.8-10.8c5.9-5.9 5.9-15.5 0-21.4L402 344.5c-5.9-5.9-15.5-5.9-21.4 0L334 391.1c-5.7 5.7-14.5 7.1-21.8 3.4-38.2-19.8-76.8-48.6-111.5-83.3s-63.4-73.2-83.3-111.5c-3.7-7.2-2.4-16 3.4-21.8l46.7-46.6c5.9-5.9 5.9-15.5 0-21.4l-62.3-62.3c-2.9-2.7-6.7-4.3-10.7-4.3zm297.9 238.4c-10.3 0-18.7-8.4-18.7-18.7-.1-68.1-55.3-123.4-123.4-123.4-10.3 0-18.7-8.4-18.7-18.7s8.4-18.7 18.7-18.7c88.6 0 160.7 72.1 160.7 160.8 0 10.4-8.3 18.7-18.6 18.7zm78.8 0c-10.3 0-18.7-8.4-18.7-18.7 0-111.5-90.8-202.3-202.3-202.3-10.3 0-18.7-8.4-18.7-18.7s8.4-18.7 18.7-18.7c132.1 0 239.6 107.5 239.6 239.6.1 10.5-8.3 18.8-18.6 18.8z'/%3E%3C/svg%3E") left center / auto 1em no-repeat;
}
.footer__contact--email .footer__contact-text {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 32 25.2' version='1.1' viewBox='0 0 32 25.2'%3E%3Cpath fill='%23626e79' d='M25.7.4H6.3C2.9.4.2 3.1.2 6.5v12.1c0 3.4 2.7 6.1 6.1 6.1h19.4c3.4 0 6.1-2.7 6.1-6.1V6.5c0-3.3-2.7-6.1-6.1-6.1zM6.3 2.9h19.4c1.4 0 2.7.8 3.3 2.1l-12.3 9.2c-.4.3-1 .3-1.5 0L3 5c.6-1.3 1.9-2.1 3.3-2.1zm19.4 19.4H6.3c-2 0-3.6-1.6-3.6-3.6v-11l11.2 8.4c1.3 1 3.1 1 4.4 0l11.2-8.4v10.9c-.1 2.1-1.8 3.7-3.8 3.7z'/%3E%3C/svg%3E") left center / auto 0.9em no-repeat;
  padding-left: 1.6em;
}
.footer__contact-text {
  font-size: var(--font-size-14);
  color: var(--color-main);
  padding-left: 1.4em;
}
.footer__contact-value {
  font-size: var(--font-size-24);
  font-weight: var(--bold);
  letter-spacing: -0.05em;
  color: var(--color-black);
  text-decoration: none;
  display: inline-block;
}
.footer__contact-value::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-primary);
}
.footer__contact-value:hover::after {
  width: 100%;
  color: var(--color-black);
}
.footer__contact-value:hover {
  color: var(--color-primary);
}
.footer__decoration-1 {
  position: absolute;
  right: 25%;
  top: -3em;
}
.footer__decoration-1 img {
  height: 6em;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .footer__decoration-1 {
    top: -2em;
  }
  .footer__decoration-1 img {
    height: 4em;
  }
}
@media screen and (max-width: 660px) {
  .footer__top-content {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}
.hero {
  background: linear-gradient(to right, var(--color-background), var(--color-white));
  z-index: 5;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.hero__content {
  max-width: 54rem;
  padding: var(--gap) 0;
}
.hero__image {
  margin: calc(var(--gap) * -0.5) auto;
  margin-right: calc(var(--gap) * -2);
  flex-grow: 1;
  max-width: 960px;
}
.hero__image iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
}
.hero__title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--black);
  font-size: var(--font-size-60);
  color: var(--color-black);
}
.hero__title strong {
  color: var(--color-primary);
  font-weight: var(--black);
}
.hero__title strong {
  color: var(--color-primary);
}
.hero__text {
  margin: var(--gap) 0 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.hero__big {
  font-size: var(--font-size-30);
  font-weight: var(--bold);
  color: var(--color-primary);
}
.hero .button {
  margin-top: var(--gap);
}
@media screen and (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
    gap: var(--gap);
    max-width: 520px;
    margin: 0 auto;
  }
  .hero__content {
    max-width: 100%;
    text-align: center;
  }
  .hero__image {
    margin: 0 auto;
    margin-bottom: var(--gap);
    max-width: 100%;
    width: 100%;
  }
  .hero__image iframe {
    min-height: 320px;
  }
  .hero__title {
    font-size: var(--font-size-48);
  }
  .hero__big {
    font-size: var(--font-size-24);
  }
}
.section--black .section-title {
  color: var(--color-white);
}
.services__wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: calc(var(--gap) * 0.5);
  margin-top: var(--gap);
}
.services__item {
  grid-row-end: span 1;
  display: flex;
  align-items: flex-end;
  padding: var(--gap);
  min-height: clamp(160px, 19cqw, 340px);
  border-radius: var(--border-radius-smaller);
  overflow: hidden;
}
.services__item:nth-child(1) {
  grid-column-end: span 4;
}
.services__item:nth-child(2) {
  grid-column-end: span 2;
}
.services__item:nth-child(3) {
  grid-column-end: span 2;
}
.services__item:nth-child(4) {
  grid-column-end: span 2;
}
.services__item:nth-child(5) {
  grid-column-end: span 2;
}
.services__item:nth-child(6) {
  grid-column-end: span 4;
}
.services__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
  z-index: 1;
  mix-blend-mode: multiply;
}
.services__item:hover img {
  transform: scale(1.05);
}
.services__item img {
  transition: all 0.25s ease-in-out;
  transition-duration: 0.5s;
}
.services__item-inner {
  z-index: 2;
}
.services__title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-36);
  color: var(--color-white);
}
.services__title strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.services__decoration-1 {
  transform: rotate(45deg);
  width: clamp(6rem, 8cqw, 14rem);
  aspect-ratio: 1;
  position: absolute;
  left: 5%;
  z-index: 6;
}
.services__decoration-1 img {
  width: 100%;
}
.services__decoration-2 {
  transform: rotate(-45deg);
  width: clamp(8rem, 9cqw, 14rem);
  aspect-ratio: 1;
  position: absolute;
  bottom: -5%;
  right: 5%;
  z-index: 6;
}
.services__decoration-2 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .services__wrapper {
    grid-template-columns: repeat(4, 1fr);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .services__item:nth-child(1) {
    order: 1;
  }
  .services__item:nth-child(2) {
    order: 2;
  }
  .services__item:nth-child(3) {
    order: 3;
  }
  .services__item:nth-child(4) {
    order: 5;
  }
  .services__item:nth-child(5) {
    order: 6;
  }
  .services__item:nth-child(6) {
    order: 4;
  }
  .services__item {
    min-height: clamp(240px, 24cqw, 340px);
  }
}
.js-parallax {
  transition-property: opacity, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}
.js-parallax:hover {
  opacity: 0.5;
  filter: blur(1rem);
}
.image-text {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: var(--gap);
  align-items: center;
}
.image-text__title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--black);
  font-size: var(--font-size-48);
  color: var(--color-black);
  margin-bottom: 0.5em;
}
.image-text__title strong {
  color: var(--color-primary);
  font-weight: var(--black);
}
@media screen and (max-width: 768px) {
  .image-text {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}
.gallery {
  width: 100vw;
  margin-left: calc(-50vw - (var(--content-big) / 2) * -1);
}
.gallery__decoration-1 {
  position: absolute;
  bottom: -5%;
  left: 45%;
}
.gallery__decoration-1 div {
  width: clamp(120px, 15cqw, 240px);
  height: clamp(80px, 8cqw, 160px);
  background-color: var(--color-primary);
}
.gallery img {
  max-height: 320px;
  width: auto;
}
@media screen and (max-width: 1460px) {
  .gallery {
    margin-left: calc(var(--padding-on-side) * -1);
    margin-right: calc(var(--padding-on-side) * -1);
  }
}
@media screen and (max-width: 1024px) {
  .gallery img {
    max-height: 260px;
    width: auto;
  }
}
.splide__track {
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000 10rem, #000 calc(100% - 10rem), rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000 10rem, #000 calc(100% - 10rem), rgba(0, 0, 0, 0) 100%);
  mask-type: alpha;
}
.splide__slide {
  padding: calc(var(--gap) * 0.5);
  padding-bottom: var(--gap);
}
.splide__arrows {
  width: 100%;
  max-width: calc(var(--content-big) + 2 * var(--padding-on-side));
  margin: 0 auto;
  padding: 0 var(--padding-on-side);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.splide__arrow {
  background: none;
  border: none;
  width: clamp(4rem, 3cqw, 6rem);
  height: clamp(4rem, 3cqw, 6rem);
  filter: drop-shadow(var(--shadow));
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  background-color: var(--color-primary);
  border-radius: 0.5em;
}
.splide__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-position: center;
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='16'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M19.882 1.267a1.024 1.024 0 0 0 0 1.438l4.589 4.66H.988C.437 7.365.9 7.818.9 8.378c0 .559-.463 1.013.088 1.013h23.463L19.882 14.2c-.386.215-.386 1.33 0 1.248a.987.987 0 0 0 1.407 0L27.634 9.6c.35-.935.361-1.499.025-1.855l-.025-.026-6.335-6.452a.986.986 0 0 0-1.411-.006l-.006.006Z'/%3E%3C/svg%3E");
  transition: all 0.25s ease-in-out;
}
.splide__arrow svg {
  display: none;
}
.splide__arrow:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed;
}
.splide__arrow--prev::before {
  transform: rotate(180deg);
}
.splide__arrow:hover:not(:disabled) {
  background-color: var(--color-secondary);
}
.splide__arrow:hover:not(:disabled)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='16'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M19.882 1.267a1.024 1.024 0 0 0 0 1.438l4.589 4.66H.988C.437 7.365.9 7.818.9 8.378c0 .559-.463 1.013.088 1.013h23.463L19.882 14.2c-.386.215-.386 1.33 0 1.248a.987.987 0 0 0 1.407 0L27.634 9.6c.35-.935.361-1.499.025-1.855l-.025-.026-6.335-6.452a.986.986 0 0 0-1.411-.006l-.006.006Z'/%3E%3C/svg%3E");
}
@media screen and (max-width: 1024px) {
  .splide__track {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.process {
  display: grid;
  gap: calc(var(--gap) * 2);
}
.process__item {
  max-width: 80rem;
}
.process__item:nth-child(4n - 3) {
  margin-left: 20%;
}
.process__item:nth-child(4n - 2) {
  margin-left: 35%;
}
.process__item:nth-child(4n - 1) {
  margin-left: 15%;
}
.process__item:nth-child(4n) {
  margin-left: 40%;
}
.process__number {
  position: absolute;
  font-size: var(--font-size-120);
  color: var(--color-secondary);
  opacity: 0.2;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--black);
  left: -0.85em;
  line-height: 1em;
  top: -0.35em;
}
.process__number strong {
  color: var(--color-primary);
  font-weight: var(--black);
}
.process__title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-36);
  margin-bottom: 0.5em;
  color: var(--color-black);
}
.process__title strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.process__decoration-1 {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: rotate(45deg);
}
.process__decoration-1 div {
  width: clamp(100px, 15cqw, 200px);
  height: clamp(40px, 8cqw, 80px);
  background-color: var(--color-secondary);
}
@media screen and (max-width: 600px) {
  .process__item {
    margin-left: 10% !important;
  }
}
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gap) clamp(var(--gap), 10cqw, calc(var(--gap) * 2));
}
.partners__item {
  flex-basis: 100%;
  max-width: clamp(10rem, 16cqw, 18rem);
}
.products {
  display: grid;
  gap: var(--gap);
  margin-top: var(--gap);
}
.products__item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gap);
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--border-radius-smaller);
  border: 1px solid #eee;
  box-shadow: 0 0.6em 2em rgba(7, 11, 25, 0.1);
}
.products__image-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
  object-position: top right;
  z-index: 5;
  transition: all 0.25s ease-in-out;
  opacity: 0;
}
.products__image-1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
  object-position: top right;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.products__image:hover .products__image-2 {
  opacity: 1;
}
.products__image:hover .products__image-1 {
  opacity: 0;
}
.products__title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-36);
  color: var(--color-main);
  margin-bottom: 0.5em;
}
.products__title strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.products__content {
  padding: clamp(2rem, 6cqw, 4rem);
}
@media screen and (max-width: 660px) {
  .products__item {
    grid-template-columns: 1fr;
  }
  .products__image {
    order: 1;
  }
  .products__content {
    order: 2;
    padding-top: 0;
  }
}
.cta {
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: calc(var(--gap) * 1.5) 0;
}
.cta__title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-36);
  margin-bottom: 0.5em;
}
.cta__title strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.cta__text {
  max-width: 26em;
  font-size: var(--font-size-24);
  margin: 0 auto 1em;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.references {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(5, 1fr);
}
.references--single {
  margin-top: var(--gap);
}
.service-gallery {
  display: grid;
  gap: calc(var(--gap) * 0.5);
  grid-template-columns: repeat(5, 1fr);
  margin-top: var(--gap);
}
@media screen and (max-width: 1024px) {
  .service-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .service-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .service-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--gap) * 0.5);
  align-items: flex-start;
}
.masonry__item {
  display: block;
  margin: 0;
  padding: 0;
}
.masonry__column {
  display: grid;
  gap: calc(var(--gap) * 0.5);
  grid-template-columns: 1fr;
}
.catalogues {
  display: flex;
  justify-content: center;
  gap: var(--gap);
}
.catalogues__item {
  background-color: var(--color-background);
  flex-basis: calc(33.33% - var(--gap) / 2);
  --color: var(--color-main);
}
.catalogues__item:hover {
  --color: var(--color-secondary);
}
.catalogues__text {
  padding: 1em 2em;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-24);
  color: var(--color);
  transition: all 0.25s ease-in-out;
  text-align: center;
}
.catalogues__text strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.references-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.references-items__item {
  background-color: var(--color-background);
  max-width: 440px;
  --color: var(--color-main);
}
.references-items__item:hover {
  --color: var(--color-secondary);
}
.references-items__title {
  padding: 1em 2em;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-24);
  color: var(--color);
  transition: all 0.25s ease-in-out;
  text-align: center;
}
.references-items__title strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.references-items__terms {
  position: absolute;
  right: 1em;
  top: 1em;
  font-size: var(--font-size-14);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.references-items__term {
  background-color: var(--color-primary);
  font-weight: var(--bold);
  color: var(--color-white);
  padding: 0.3em 0.6em;
  border-radius: 0.2em;
}
@media screen and (max-width: 1024px) {
  .references-items {
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(880px + var(--gap));
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .references-items {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}
.references-terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 1em;
  margin: var(--gap) 0;
}
.references-terms__item {
  display: inline-block;
  padding: 0.7em 1.5em;
  line-height: 1em;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-18);
  border: none;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  border-radius: var(--border-radius-smaller);
  color: var(--color-white);
  background-color: var(--color-secondary);
  box-shadow: none;
  font-size: var(--font-size-16);
}
.references-terms__item strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.references-terms__item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.references-terms__item--margin-top {
  margin-top: var(--gap);
}
.branches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
}
.branches__logo {
  max-width: 360px;
  width: 100%;
  height: auto;
}
.download {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
}
.download__item {
  flex-basis: calc(20% - var(--gap) / 2);
  --color: var(--color-main);
  padding: 1em;
  border: 1px solid #ddd;
}
.download__item:hover {
  --color: var(--color-secondary);
}
.download__description {
  font-size: var(--font-size-18);
  font-weight: var(--bold);
  color: var(--color);
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.download__logo-wrapper {
  height: 8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download__logo {
  max-height: 6em;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .download {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .download {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .download {
    grid-template-columns: repeat(2, 1fr);
  }
}
.numbers {
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: calc(var(--gap) * 1.5) 0;
}
.numbers__title {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-36);
  margin-bottom: 0.5em;
}
.numbers__title strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.numbers__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.numbers__item {
  max-width: 16em;
  flex-grow: 1;
}
.numbers__number {
  font-size: var(--font-size-60);
  font-weight: var(--bold);
  color: var(--color-secondary);
}
.numbers__text {
  font-size: var(--font-size-20);
  color: var(--color-white);
  text-transform: uppercase;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .numbers__item {
    flex-basis: calc(50% - var(--gap) / 2);
  }
}
.team {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--gap) * 0.5);
}
.team__member {
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: center;
  width: 100%;
  padding: 1em;
  border-radius: var(--border-radius-smaller);
  background-color: var(--color-white);
  flex-basis: calc(33.33% - var(--gap) / 2);
  box-shadow: 0 0.3em 0.8em rgba(0, 0, 0, 0.05);
}
.team__leader {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  gap: calc(var(--gap) * 0.5);
}
.team__image {
  width: 4em;
  flex-shrink: 0;
}
.team__image img {
  width: 100%;
  height: auto;
}
.team__name {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  font-size: var(--font-size-24);
  color: var(--color-main);
}
.team__name strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
.team__position {
  margin-top: 0.5em;
  font-size: var(--font-size-16);
  color: var(--color-primary);
}
.team__email {
  margin-top: 0.5em;
  font-size: var(--font-size-16);
  color: var(--color-main);
  text-decoration: none;
  display: inline-block;
}
.team__email::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-primary);
}
.team__email:hover::after {
  width: 100%;
  color: var(--color-main);
}
.team__content {
  flex-grow: 1;
}
@media screen and (max-width: 860px) {
  .team__member {
    flex-basis: calc(50% - var(--gap) / 2);
  }
}
@media screen and (max-width: 600px) {
  .team__leader {
    flex-wrap: wrap;
  }
  .team__leader .team__member {
    flex-basis: 100%;
  }
  .team__member {
    flex-basis: 100%;
  }
}
.hp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--gap) * 0.5);
}
.hp-gallery__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-smaller);
  transition: all 0.25s ease-in-out;
  aspect-ratio: 4/3;
}
.hp-gallery__image:nth-child(1) {
  grid-row-end: span 2;
  aspect-ratio: auto;
}
.hp-gallery__image:nth-child(4) {
  grid-column-end: span 2;
  aspect-ratio: 8/3;
}
.hp-gallery__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 600px) {
  .hp-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wp-block-image a,
.gallery a,
.masonry a,
.service-gallery a {
  display: block;
  overflow: hidden;
}
.wp-block-image a::before,
.gallery a::before,
.masonry a::before,
.service-gallery a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23fff'%3E%3Cpath d='M90 0h61v30H90zM181 0h61v30h-61zM272 0h60v30h-60zM362 0h60v30h-60zM452 0v30h30v30h30V0h-60zM302 90v30h68.787l-120 120H30v-60H0v332h332v-30h-60V261.213l120-120V210h30V90H302zm-60 392H30V270h212v212zM0 90h30v60H0zM0 0v60h30V30h30V0H0zM482 90h30v60h-30zM482 180h30v60h-30zM482 270h30v60h-30zM482 360h30v61h-30zM482 451v31h-30v30h60v-61h-30zM362 482h60v30h-60z'/%3E%3C/svg%3E") center / 4rem auto no-repeat;
}
.wp-block-image a::after,
.gallery a::after,
.masonry a::after,
.service-gallery a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  opacity: 0;
  z-index: 2;
  transition: all 0.25s ease-in-out;
}
.wp-block-image a:hover::after,
.gallery a:hover::after,
.masonry a:hover::after,
.service-gallery a:hover::after {
  opacity: 0.7;
}
.wp-block-image a:hover:before,
.gallery a:hover:before,
.masonry a:hover:before,
.service-gallery a:hover:before {
  opacity: 1;
}
/* Lightbox */
.pswp__ui {
  position: static;
}
input,
textarea {
  padding: 0.7em 2em 0.7em 1em;
  font-size: var(--font-size-18);
  background: var(--color-secondary-lighter);
  color: var(--color-main);
  display: block;
  width: 100%;
  border-radius: var(--border-radius-smaller);
  border: none;
  border-bottom: 2px solid var(--color-secondary-darker);
  font-family: 'Raleway', sans-serif;
  font-weight: var(--bold);
  transition: all 0.25s ease-in-out;
}
input strong,
textarea strong {
  color: var(--color-primary);
  font-weight: var(--bold);
}
input:focus,
textarea:focus {
  border-color: var(--color-primary);
}
select {
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.9 12.2'%3E%3Cpath d='M16.2.7C14.9 2.3 13.4 3.6 12 5c-.8.8-1.6 1.6-2.4 2.5-.5.7-1 1.6-1.8 2.1.4.1.7.1 1.1.2-.4-.6-1-1.1-1.5-1.6-.7-.7-1.3-1.6-1.9-2.5C4.3 3.9 3.2 2 1.8.5.9-.5-.4 1.3.5 2.3 1.9 3.8 3 5.7 4.2 7.5L6 9.9c.5.6 1.2 1.1 1.7 1.8.3.4.8.5 1.1.2.7-.6 1.3-1.4 1.9-2.2.8-1 1.6-1.9 2.4-2.7 1.5-1.4 3-2.7 4.3-4.4 1-1.2-.4-3-1.2-1.9z' fill='%23626e79'/%3E%3C/svg%3E") right 1rem center / 1em auto no-repeat;
  background-color: var(--color-white);
}
.label {
  position: absolute;
  top: 0.7em;
  left: 1em;
  display: block;
  color: var(--color-main);
  z-index: 2;
  cursor: text;
  transition: all 0.25s ease-in-out;
  font-size: var(--font-size-16);
  border: 1px solid transparent;
  border-radius: 0.3rem;
  text-transform: uppercase;
}
.label span {
  color: var(--color-red);
  font-weight: var(--bold);
}
.label.active {
  top: -1em;
  left: 1em;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.1em 0.4em;
  z-index: 3;
  font-size: var(--font-size-12);
}
.label.active span {
  color: var(--color-white);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 480px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.submit-wrapper {
  text-align: right;
  position: relative;
  margin-top: 2rem;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control-wrap::after {
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 0;
  top: 0.45em;
  transition: opacity 0.15s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.wpcf7-form-control-wrap.wpcf7-not-valid::after {
  opacity: 1;
  visibility: visible;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='22'%3E%3Cpath fill-rule='evenodd' fill='%23e52225' d='M2 15a2 2 0 01-2-2V1.999a2 2 0 014 0V13a2 2 0 01-2 2zm0 3a2 2 0 110 4 2 2 0 010-4z'/%3E%3C/svg%3E") center / auto 2rem no-repeat;
}
.wpcf7-form-control-wrap.wpcf7-not-valid input,
.wpcf7-form-control-wrap.wpcf7-not-valid textarea {
  border-color: var(--color-red);
}
.wpcf7-form-control-wrap.wpcf7-is-valid::after {
  opacity: 1;
  visibility: visible;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.6 12.8'%3E%3Cpath fill='none' stroke='%23006a30' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='M12.9 1.6l-7.2 9.7-4.1-4.9'/%3E%3C/svg%3E") center / auto 1.4rem no-repeat;
}
.wpcf7-form-control-wrap.wpcf7-is-valid input,
.wpcf7-form-control-wrap.wpcf7-is-valid textarea {
  border-color: var(--color-green);
}
.wpcf7 .screen-reader-response,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wpcf7-response-output {
  color: var(--color-white);
  border-radius: var(--border-radius-smaller);
  margin: 0 auto;
  padding: 1em;
  line-height: 1.2em;
  border: none;
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  transition: all 0.25s ease-in-out;
  font-size: var(--font-size-16) !important;
  display: none;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.wpcf7-spinner {
  animation: spin 1s linear infinite;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23626e79'%3E%3Cpath d='M463.702 162.655L442.491 14.164c-1.744-12.174-16.707-17.233-25.459-8.481l-30.894 30.894C346.411 12.612 301.309 0 254.932 0 115.464 0 3.491 109.16.005 248.511c-.19 7.617 5.347 14.15 12.876 15.234l59.941 8.569c8.936 1.304 17.249-5.712 17.125-15.058C88.704 165.286 162.986 90 254.932 90c22.265 0 44.267 4.526 64.6 13.183l-29.78 29.78c-8.697 8.697-3.761 23.706 8.481 25.459l148.491 21.211c9.784 1.475 18.381-7.034 16.978-16.978zM499.117 249.412l-59.897-8.555c-7.738-.98-17.124 5.651-17.124 16.143 0 90.981-74.019 165-165 165a165.207 165.207 0 01-64.306-13.052l28.828-28.828c8.697-8.697 3.761-23.706-8.481-25.459L64.646 333.435c-9.753-1.393-18.39 6.971-16.978 16.978l21.21 148.492c1.746 12.187 16.696 17.212 25.459 8.481l31.641-31.626C165.514 499.505 210.587 512 257.096 512c138.794 0 250.752-108.618 254.897-247.28.22-7.632-5.317-14.224-12.876-15.308z'/%3E%3C/svg%3E") center / 1.6rem auto no-repeat;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  left: 0;
  margin: 0;
  transition: all 0.25s ease-in-out;
}
.wpcf7-spinner::before {
  content: none !important;
}
.wpcf7-form.submitting .wpcf7-spinner {
  visibility: visible;
  opacity: 1;
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
  background-color: var(--color-red);
  display: block;
}
.wpcf7-form.sent .wpcf7-response-output {
  background-color: var(--color-green);
  display: block;
}
.wpcf7-acceptance {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.wpcf7-acceptance--first {
  margin-top: 2rem;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item a {
  color: var(--color-primary);
}
.wpcf7-acceptance .wpcf7-list-item a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.wpcf7-acceptance .wpcf7-list-item input {
  display: none;
}
.wpcf7-acceptance .wpcf7-list-item input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 2em;
  font-size: var(--font-size-14);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p {
  margin: 0;
  padding-left: 0.8em;
  line-height: 1.2em;
  margin-top: 0.2em;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  z-index: 2;
  border: 2px solid transparent;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.6 12.8'%3E%3Cpath fill='none' stroke='%23626e79' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='M12.9 1.6l-7.2 9.7-4.1-4.9'/%3E%3C/svg%3E") center / auto 60% no-repeat;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2em;
  height: 1.2em;
  border: none;
  border-radius: 3px;
  transition: all 0.25s ease-in-out;
  background: var(--color-secondary-lighter);
  border: 2px solid var(--color-border);
}
.wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item-label::after {
  border-color: var(--color-red);
}
.form-notice {
  font-size: var(--font-size-14);
  margin-top: 1em;
}
.form-notice a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}
.form-notice a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.form-notice a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
.google-recaptcha {
  font-size: 1.2rem;
  color: var(--color-main);
  margin: 0 0 1.5rem 0 !important;
}
.google-recaptcha a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}
.google-recaptcha a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.google-recaptcha a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
.newsletter-form {
  max-width: 60rem;
  margin: 0 auto;
}
.newsletter-form__inputs {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.newsletter-form .submit-wrapper {
  margin-top: 0;
  flex-shrink: 0;
}
.newsletter-form .wpcf7::before {
  left: 10%;
  top: -350%;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .newsletter-form__inputs {
    flex-wrap: wrap;
  }
  .newsletter-form__inputs > * {
    flex-basis: 100%;
  }
  .newsletter-form .submit-wrapper {
    text-align: center;
  }
}
@media screen and (max-width: 1400px) {
  :root {
    --padding-on-side: 2rem;
    --font-size-12: 1.2rem;
    --font-size-14: 1.3rem;
    --font-size-16: 1.5rem;
    --font-size-18: 1.6rem;
    --font-size-20: 1.8rem;
    --font-size-24: 2rem;
    --font-size-30: 2.4rem;
    --font-size-36: 2.8rem;
    --font-size-48: 3.2rem;
    --font-size-60: 4rem;
    --font-size-90: 5rem;
    --font-size-120: 6rem;
    --gap: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --font-size-12: 1.1rem;
    --font-size-14: 1.2rem;
    --font-size-16: 1.4rem;
    --font-size-18: 1.5rem;
    --font-size-20: 1.7rem;
    --font-size-24: 1.9rem;
    --font-size-30: 2.2rem;
    --font-size-36: 2.4rem;
    --font-size-48: 2.8rem;
    --font-size-60: 3.6rem;
    --font-size-90: 4.8rem;
    --font-size-120: 5.4rem;
    --gap: 2rem;
    --border-radius: 16px;
    --border-radius-smaller: 6px;
    --border-radius-big: 30px;
    --shadow: 0 0.4em 1.4em rgba(7, 11, 25, 0.5);
  }
}
@media screen and (max-width: 660px) {
  :root {
    --font-size-12: 1.1rem;
    --font-size-14: 1.2rem;
    --font-size-16: 1.4rem;
    --font-size-18: 1.5rem;
    --font-size-20: 1.6rem;
    --font-size-24: 1.8rem;
    --font-size-30: 2rem;
    --font-size-36: 2.2rem;
    --font-size-48: 2.4rem;
    --font-size-60: 2.4rem;
    --font-size-90: 3.6rem;
    --font-size-120: 4.8rem;
    --gap: 2rem;
    --border-radius: 14px;
    --border-radius-smaller: 5px;
    --border-radius-big: 20px;
    --shadow: 0 0.3em 1em rgba(25, 42, 60, 0.2);
  }
}
