html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/**
 * * HTML5 display-role reset for older browsers
 * */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section,
main, summary {
  display: block;
}

/**
 * * inherit box model for all elements
 * */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * * html root rules
 * * 1. set border-box for inheritance
 * * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 * *    CSS property
 * * 3. Prevent adjustments of font size after orientation changes in IE, on
 * *    Windows Phone and iOS.
 * * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 * *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * * 5. Change the default tap highlight to be completely transparent in iOS.
 * */
html {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/**
 * * body rules
 * * 1. reset line-height to 1
 * * 2. set base font-family to sans-serif
 * * 3. Set an explicit initial text-align value so that we can later use the
 * *    `inherit` value on things like `<th>` elements.
 * */
body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  text-align: left;
}

/**
 * * Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
 * * on elements that programmatically receive focus but wouldn't normally show a visible
 * * focus outline. In general, this would mean that the outline is only applied if the
 * * interaction that led to the element receiving programmatic focus was a keyboard interaction,
 * * or the browser has somehow determined that the user is primarily a keyboard user and/or
 * * wants focus outlines to always be presented.
 * *
 * * See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
 * * and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
 * */
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

/**
 * * Lists
 * */
ol, ul {
  list-style: none;
}

/**
 * * Quotes
 * */
blockquote, q {
  quotes: none;
}

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

/**
 * * Tables
 * */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * * Table Headers
 * * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 * *    closest parent with a set `text-align`.
 * * 2. Fix alignment for Safari
 * */
th {
  /* 1 */
  text-align: inherit;
  /* 2 */
  text-align: -webkit-match-parent;
}

/**
 * * Horizontal Lines
 * * 1. Add the correct box sizing in Firefox.
 * * 2. Show the overflow in Edge and IE.
 * */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
 * * Preformatted Text
 * * 1. Correct the inheritance and scaling of font size in all browsers.
 * * 2. Don't allow content to break outside
 * * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 * *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 * *    counteract.
 * */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * * Links
 * * 1. Remove the gray background on active links in IE 10.
 * * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 * */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
 * * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * * 3. Add explicit cursor to indicate changed behavior.
 * * 4. Prevent the text-decoration to be skipped.
 * */
abbr[title] {
  /* 1 */
  border-bottom: 0;
  /* 2 */
  text-decoration: underline;
  text-decoration: underline dotted;
  /* 3 */
  cursor: help;
  /* 4 */
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

/**
 * * Add the correct font weight in Chrome, Edge, and Safari.
 * */
b,
strong {
  font-weight: bolder;
}

/**
 * * Add the correct font size in all browsers.
 * */
small {
  font-size: 80%;
}

/**
 * * Prevent `sub` and `sup` elements from affecting the line height in
 * * all browsers.
 * */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * * Prevent `em` being affected from global reset
 * */
em {
  font-style: italic;
}

/**
 * * Remove the border on images inside links in IE 10.
 * */
img {
  border-style: none;
}

/**
 * * Hide SVG overflow in IE
 * */
svg:not(:root) {
  overflow: hidden;
}

/**
 * * Remove the default `border-radius` that macOS Chrome adds.
 * * Details at https://github.com/twbs/bootstrap/issues/24093
 * */
button {
  border-radius: 0;
}

/**
 * * Work around a Firefox/IE bug where the transparent `button` background
 * * results in a loss of the default `button` focus styles.
 * * Credit: https://github.com/suitcss/base/
 * */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
 * * form element resets
 * * 1. Remove the margin in Firefox and Safari
 * * 2. inherit font rules
 * */
input,
button,
select,
optgroup,
textarea {
  /* 1 */
  margin: 0;
  /* 2 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 * *    controls in Android 4.
 * * 2. Correct the inability to style clickable types in iOS and Safari.
 * */
button,
[type=reset],
[type=submit],
[type=button] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * * bug where setting a custom line-height prevents text from being vertically
 * * centered within the input.
 * * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * * and https://github.com/twbs/bootstrap/issues/11266
 * */
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

/**
 * * 1. Remove the default vertical scrollbar in IE.
 * * 2. Textareas should really only resize vertically so they don't break their
 * *    (horizontal) containers.
 * */
textarea {
  overflow: auto;
  resize: vertical;
}

/**
 * * Show the overflow in IE.
 * */
button,
input {
  overflow: visible;
}

/**
 * * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * */
button,
select {
  text-transform: none;
}

/**
 * * Set the cursor for non-`<button>` buttons
 * * Details at https://github.com/twbs/bootstrap/pull/30562
 * */
[role=button] {
  cursor: pointer;
}

/**
 * * Remove the inheritance of word-wrap in Safari.
 * * See https://github.com/twbs/bootstrap/issues/24990
 * */
select {
  word-wrap: normal;
}

/**
 * * Remove inner border and padding from Firefox, but don't restore the outline
 * * like Normalize.
 * */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * * 1. Add the correct box sizing in IE 10-
 * * 2. Remove the padding in IE 10-
 * */
input[type=radio],
input[type=checkbox] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * * This prevents an unwanted focus outline from appearing around elements that
 * * might still respond to pointer events.
 * * Credit: https://github.com/suitcss/base
 * */
[tabindex="-1"]:focus {
  outline: 0 !important;
}

/**
 * * Browsers set a default `min-width: min-content` on fieldsets,
 * * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * * So we reset that to ensure fieldsets behave more like a standard block element.
 * * See https://github.com/twbs/bootstrap/issues/12359
 * * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 * */
fieldset {
  min-width: 0;
}

/**
 * * 1. Correct the text wrapping in Edge and IE.
 * * 2. Correct the color inheritance from `fieldset` elements in IE.
 * * 3. Set display to block for all browsers
 * */
legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
}

/**
 * * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 * */
progress {
  vertical-align: baseline;
}

/**
 * * 1. Remove the default vertical scrollbar in IE 10+.
 * * 2. Textareas should really only resize vertically so they don't break their
 * *    (horizontal) containers.
 * */
textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
}

/**
 * * 1. Add the correct box sizing in IE 10.
 * * 2. Remove the padding in IE 10.
 * */
[type=checkbox],
[type=radio] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * * Correct the cursor style of increment and decrement buttons in Chrome.
 * */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * * 1. Correct the odd appearance in Chrome and Safari.
 * * 2. Correct the outline style in Safari.
 * */
[type=search] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 * */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * * 1. Correct the inability to style clickable types in iOS and Safari.
 * * 2. Change font properties to `inherit` in Safari.
 * */
::-webkit-file-upload-button {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
 * * Correct element display for output
 * */
output {
  display: inline-block;
}

/**
 * * Add the correct display in IE 10+.
 * */
template {
  display: none;
}

/**
 * * Always hide an element with the `hidden` HTML attribute (from PureCSS).
 * * Needed for proper display in IE 10-.
 * */
[hidden] {
  display: none;
}

/**
 * * adds resets for buttons that are not covered by reset-and-normalize base
 * */
[role=button],
input[type=button],
input[type=reset],
input[type=submit],
button {
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  color: inherit;
  text-align: inherit;
  background: none;
  appearance: button;
  user-select: none;
}
[role=button]:not(:disabled),
input[type=button]:not(:disabled),
input[type=reset]:not(:disabled),
input[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
[role=button]:-moz-focusring,
input[type=button]:-moz-focusring,
input[type=reset]:-moz-focusring,
input[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: none;
}
[role=button]:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:focus {
  outline: none;
}

@font-face {
  font-family: "NeoSans";
  src: url(/wp-content/themes/trident-foreign/assets/fonts/NeoSans-regular-ro.ttf) format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "NeoSans";
  src: url(/wp-content/themes/trident-foreign/assets/fonts/NeoSans-medium-ro.ttf) format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "NeoSans";
  src: url(/wp-content/themes/trident-foreign/assets/fonts/NeoSans-bold-ro.ttf) format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "NeoSans";
  src: url(/wp-content/themes/trident-foreign/assets/fonts/NeoSans-light-ro.ttf) format("truetype");
  font-weight: normal;
}
html {
  font-size: 62.5%;
}

body {
  font-family: "NeoSans", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 2rem;
  font-size: 1.6rem;
}
@media (max-width: 50em) {
  body {
    font-size: 1.6rem;
    line-height: 2.6rem;
    overflow-x: hidden;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.header__container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 149.6rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 2.4rem;
}
@media (max-width: 50em) {
  .header__container {
    padding: 1.6rem;
  }
}
.header__cta {
  position: absolute;
  top: 5rem;
  left: 0;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 50em) {
  .header__cta {
    display: none;
  }
}
@media (max-width: 50em) {
  .header__logo img {
    height: 7rem;
  }
}

.footer {
  background-color: #505C73;
  padding: 6.2rem 3rem;
}
@media (max-width: 50em) {
  .footer {
    padding: 6.2rem 3rem;
  }
}
.footer__container {
  max-width: 149.6rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 50em) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer p {
  color: #C2CBDC;
  margin-right: 4.8rem;
}
@media (max-width: 50em) {
  .footer p {
    margin-right: 0;
    margin-bottom: 2.8rem;
  }
}
.footer ul {
  display: flex;
  color: #ffffff;
}
@media (max-width: 50em) {
  .footer ul {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.footer ul li:not(:last-child) {
  margin-right: 4.8rem;
}
@media (max-width: 50em) {
  .footer ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2.8rem;
  }
}
.footer ul li a {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.footer ul li a img {
  margin-right: 1rem;
}
.footer__social {
  margin-left: auto;
}
@media (max-width: 50em) {
  .footer__social {
    margin-left: 0;
  }
}
.footer__social__item:first-child {
  margin-right: 3rem;
}

.facts-wrapper {
  left: 0;
  background-image: url('/wp-content/uploads/2022/12/facts.svg');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  padding: 16rem 0 3.6rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 50em) {
  .facts-wrapper {
    position: relative;
    background-image: linear-gradient(to right, #7A6590, #1482C6);
    z-index: 1;
    padding: 3.6rem 3rem 0.6rem;
  }
}
@media (max-width: 50em) {
  .facts-wrapper--desktop {
    display: none;
  }
}
.facts-wrapper--mobile {
  display: none;
}
@media (max-width: 50em) {
  .facts-wrapper--mobile {
    display: flex;
  }
}

.facts {
  display: flex;
  max-width: 124rem;
  width: 100%;
}
@media (max-width: 50em) {
  .facts {
    flex-direction: column;
  }
}
.facts__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 50em) {
  .facts__item {
    flex-direction: row;
    margin-bottom: 3rem;
    align-items: center;
  }
}
.facts__item img {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 50em) {
  .facts__item img {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}
.facts__item p {
  color: #ffffff;
  max-width: 18rem;
  text-align: center;
}
@media (max-width: 50em) {
  .facts__item p {
    text-align: left;
  }
}

.grid {
  display: flex;
  margin-bottom: 16rem;
}
@media (max-width: 50em) {
  .grid {
    flex-direction: column;
    margin-bottom: 12rem;
  }
}
.grid__title {
  background-image: url("/wp-content/uploads/2022/12/0.jpg");
  background-position: center;
  background-size: cover;
  flex: 1;
  padding: 0 4rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 50em) {
  .grid__title {
    height: 100vw;
    flex: 0 0 100vw;
    justify-content: center;
  }
}
.grid__title a {
  color: #ffffff;
  font-weight: 700;
  margin-top: 2.4rem;
  text-decoration: none;
  flex: 0;
}
.grid__title h2 {
  font-weight: 700;
  color: #ffffff;
  font-size: 5rem;
  line-height: 5rem;
}
@media (max-width: 50em) {
  .grid__title h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    max-width: 16rem;
  }
}
.grid__items {
  flex: 4;
  max-width: 120rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 50em) {
  .grid__items {
    flex-direction: column;
  }
}
.grid__item {
  position: relative;
  flex: 1 32rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  height: 40rem;
}
@media (max-width: 50em) {
  .grid__item {
    width: 100vw;
    height: 100vw;
    flex: 0 0 100vw;
  }
}
.grid__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.grid__item h3 {
  margin-top: auto;
  font-size: 2.5rem;
  margin-bottom: 1.6rem;
  line-height: 2.5rem;
  font-weight: 700;
}
@media (max-width: 50em) {
  .grid__item h3 {
    font-size: 2rem;
    margin-bottom: 1.3rem;
  }
}
.grid__item p {
  line-height: 2.6rem;
}
@media (max-width: 50em) {
  .grid__item p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

.hero {
  height: 86rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media (max-width: 50em) {
  .hero {
    padding-top: 18rem;
    height: auto;
  }
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 50em) {
  .hero__video {
    width: 100%;
  }
}
.hero__container {
  color: #ffffff;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 50em) {
  .hero__container {
    padding: 0 3rem 8rem;
  }
}
.hero__title {
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}
@media (max-width: 50em) {
  .hero__title {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 6.4rem;
  }
}
.hero__subtitle {
  font-size: 2.5rem;
  line-height: 5rem;
  font-weight: 400;
  margin-bottom: 3.2rem;
}
@media (max-width: 50em) {
  .hero__subtitle {
    font-size: 2rem;
    line-height: 2.8rem;
    margin-bottom: 2.4rem;
  }
}
.hero__button {
  cursor: pointer;
}
.split-content {
  display: flex;
  align-items: center;
}
@media (max-width: 50em) {
  .split-content {
    flex-direction: column;
  }
}
.split-content__text {
  flex: 1;
}
@media (max-width: 50em) {
  .split-content__text {
    padding: 8.8rem 3.5rem;
  }
}
.split-content__text h2 {
  max-width: 66rem;
  margin: 0 auto 4.4rem;
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 700;
}
@media (max-width: 50em) {
  .split-content__text h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-bottom: 3.2rem;
  }
}
.split-content__text p {
  max-width: 66rem;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 3.5rem;
}
@media (max-width: 50em) {
  .split-content__text p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
.split-content__text p:not(:last-child) {
  margin-bottom: 4.4rem;
}
@media (max-width: 50em) {
  .split-content__text p:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}
.split-content__carousel {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.carousel-images {
  position: relative;
}
.carousel-images .splide__arrow {
  bottom: 3rem;
  top: auto;
  opacity: 1;
  background-color: #ffffff;
  border-radius: 0;
  width: 4rem;
  height: 4rem;
}
.carousel-images .splide__arrow--prev {
  left: 50%;
  transform: translateX(-120%);
}
.carousel-images .splide__arrow--next {
  right: 50%;
  transform: translateX(120%);
}
.carousel-images__item {
  display: flex;
  width: 100vw;
}
.carousel-images__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-images__arrows {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.carousel-images__arrows button {
  background-color: #ffffff;
  width: 4.2rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-images__arrows button:first-child {
  margin-right: 2rem;
}

.team {
  margin-bottom: 16rem;
  position: relative;
}
@media (max-width: 50em) {
  .team {
    margin-bottom: 12rem;
  }
}
.team__title {
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.2rem;
}
@media (max-width: 50em) {
  .team__title {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 0 3rem;
    margin-bottom: 2.4rem;
  }
}
.team__subtitle {
  padding: 0 3rem;
  max-width: 80rem;
  margin: 0 auto 6.8rem;
  text-align: center;
}
.carousel-team {
  max-width: 126rem;
  margin: 0 auto;
}
.carousel-team .splide__arrow {
  border-radius: 0;
  background-color: #ffffff;
  opacity: 1 !important;
  border: 0.1rem solid #E6E6E6;
}
.carousel-team .splide__arrow--next {
  right: 0;
}
@media (min-width: 90em) {
  .carousel-team .splide__arrow--next {
    right: -6.4rem;
  }
}
.carousel-team .splide__arrow--prev {
  left: 0;
}
@media (min-width: 90em) {
  .carousel-team .splide__arrow--prev {
    left: -6.4rem;
  }
}
.carousel-team .splide__arrow svg {
  height: 1rem;
  width: 1rem;
}
.carousel-team__info {
  max-width: 64rem;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
@media (max-width: 50em) {
  .carousel-team__info {
    padding: 0 3rem;
    font-size: 1.4rem;
  }
}
.carousel-team__info p {
  margin-bottom: 1.6rem;
}
.carousel-team__info ul {
  list-style-type: disc;
  padding-left: 2.4rem;
}
.carousel-team__info ul li {
  margin-bottom: 0.8rem;
}
.carousel-team__info__text {
  display: none;
}
.carousel-team__info__text.visible {
  display: block;
}
.carousel-team__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.carousel-team__arrows button {
  background-color: #ffffff;
  width: 4.2rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #E6E6E6;
}
@media (min-width: 90em) {
  .carousel-team__arrows .glide__arrow--left {
    transform: translateX(-200%);
  }
}
@media (max-width: 50em) {
  .carousel-team__arrows .glide__arrow--left {
    transform: translateX(0);
  }
}
@media (min-width: 90em) {
  .carousel-team__arrows .glide__arrow--right {
    transform: translateX(200%);
  }
}
@media (max-width: 50em) {
  .carousel-team__arrows .glide__arrow--right {
    transform: translateX(0);
  }
}
.carousel-team__item {
  cursor: pointer;
}
.carousel-team__item__image {
  height: 22rem;
}
.carousel-team__item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carousel-team__item__info {
  transform: translateY(-50%);
  padding: 2.7rem 1.2rem;
  background-image: url("/wp-content/uploads/2022/12/bg-team@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  text-align: center;
  height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-team__item__info h3 {
  font-size: 1.6rem;
  font-weight: 500;
}
.carousel-team__item__info p {
  font-size: 1.4rem;
}

.carousel-team__item--1.visible .carousel-team__info__text--1 {
  display: block;
}

.carousel-team__info__text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.video-popup.hidden {
  display: none;
}

.video-popup {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}

.video-popup__container {
  position: relative;
  max-width: 96rem;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 4rem;
  padding: 1rem;
  cursor: pointer;
}

.video-popup__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-popup__iframe {
  width: 96rem;
  height: 64rem;
}
@media (max-width: 50em) {
  .video-popup__iframe {
    width: 100%;
    height: 100%;
  }
}

.video-popup__iframe iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 50em) {
  .video-popup__iframe iframe {
    width: 100%;
    height: 32rem;
  }
}

.widgets {
  display: flex;
}
@media (max-width: 50em) {
  .widgets {
    flex-direction: column;
  }
}

.widget {
  flex: 1;
  display: flex;
  background-image: url("/wp-content/uploads/2022/12/0.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 8rem 0 0 6rem;
}
@media (max-width: 50em) {
  .widget {
    flex-direction: column;
    padding: 6.2rem 3rem 0;
  }
}
.widget__info {
  flex: 1.8;
  color: #ffffff;
  padding-bottom: 6.4rem;
}
@media (max-width: 50em) {
  .widget__info {
    padding-bottom: 3.2rem;
  }
}
.widget__info h3 {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 50em) {
  .widget__info h3 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1.6rem;
  }
}
.widget__info p {
  font-size: 2rem;
  line-height: 3rem;
}
@media (max-width: 50em) {
  .widget__info p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
.widget__cta {
  margin-top: 4.4rem;
  display: flex;
}
.widget__cta__item {
  display: block;
}
.widget__cta__item:first-child {
  margin-right: 1rem;
}
.widget__image {
  flex: 1.5;
  overflow: hidden;
}
.widget__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 50em) {
  .widget__image img {
    transform: translateY(1rem);
  }
}

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