/*! ------------------------------------------------
 * Project Name: Name: Enoc Labs - Personal Portfolio & Resume HTML Template
 * Project Description: Show yourself brightly with Enoc Labs - clean and creative portfolio and resume template!
 * Tags: mix_design, resume, portfolio, personal page, cv, template, one page, responsive, html5, css3, creative, clean 
 * Version: 1.0.0
 * Build Date: June 2024
 * Last Update: June 2024
 * This product is available exclusively on Themeforest
 * Author: mix_design
 * Author URI: https://themeforest.net/user/mix_design */
/*! File name: main.css
 * ------------------------------------------------
 * ------------------------------------------------
 * Table of Contents
 * ------------------------------------------------
 *  01. Fonts
 *  02. Variables
 *  03. Template Backgrounds
 *  04. Basic Styles
 *  05. Animations - Transitions
 *  06. Animations - Backgrounds
 *  07. Elements - Typography
 *  08. Elements - Controls
 *  09. Elements - Forms
 *  11. Sections Main
 *  12. Sections Inner
 *  13. Blocks Common
 *  14. Blocks Header
 *  15. Blocks Menu
 *  16. Blocks Footer
 *  17. Blocks Popup Dialogs
 *  18. Features Marquee
 *  19. Features About
 *  20. Features Gallery
 *  21. Features Achievements
 *  22. Features Stacking Cards
 *  23. Features Services
 *  24. Features Resume
 *  25. Features Tools
 *  26. Features Testimonials
 *  27. Features Slider
 *  28. Features Accordion
 *  29. Features Socials
 *  30. Features Contact Data
 * ------------------------------------------------
 * Table of Contents End
 * ------------------------------------------------ */
/* ------------------------------------------------*/
/* Fonts Start */
/* ------------------------------------------------*/
/* Urbanist font */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
/* ------------------------------------------------*/
/* Fonts End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Variables Start */
/* ------------------------------------------------*/
:root {
  --_size: 1.6rem;
  --_font-default: "Urbanist", sans-serif;
  --_font-accent: "Urbanist", sans-serif;
  --_radius: 2rem;
  --_radius-s: 1rem;
  --_animspeed-fast: 0.1s;
  --_animspeed-medium: 0.3s;
  --_animspeed-slow: 0.6s;
  --_animbezier: cubic-bezier(0.23, 0.65, 0.74, 1.09);

/* Define las variables de color BASE aquí (estos serán los valores por defecto / tema CLARO) */
--base: #BABEC8; /* base--light */
--base-rgb: 186,190,200; /* base-rgb--light */
--base-shade: #989ba3; /* base-shade--light */
--base-tint: #d8dde7; /* base-tint--light - Este es el fondo de tus contenedores de contenido */
--stroke-controls: #2C2E34; /* stroke-controls--light */
--stroke-elements: #8F93A1; /* stroke-elements--light - Este es el color de tus bordes */
--font-weight-base: 400; /* font-weight-base--light */
--font-weight-medium: 600; /* font-weight-medium--light */
--t-bright: #151617; /* t-bright--light - Texto principal */
--t-medium: #44474a; /* t-medium--light - Texto secundario */
--t-muted: #797D83; /* t-muted--light */
--t-opp-bright: #F2F5FC; /* t-opp-bright--light */
--t-opp-medium: #AEB5C5; /* t-opp-medium--light */
--t-opp-muted: #3E4045; /* t-opp-muted--light */
--neutral-bright: #000000; /* neutral-bright--light */

/* Aquí es donde DEBES agregar tus colores primarios, de éxito y error,
     si no los tienes ya definidos en tus variables generales.
     Asigna valores para el tema CLARO por defecto. */
     --primary-color: #007bff; /* Ejemplo: Azul de Bootstrap */
     --accent-success: #14351c; /* Ejemplo: Verde de Bootstrap */
     --accent-error: #4e050d; /* Ejemplo: Rojo de Bootstrap */

  
  /* permanent colors */
  --per-base: #141414;
  --t-per-bright-light: #F2F5FC;
  --t-per-medium-light: #AEB5C5;
  --t-per-muted-light: #3E4045;
  --t-per-bright-dark: #151617;
  --t-per-medium-dark: #313437;
  --t-per-muted-dark: #797D83;
  --per-stroke-controls: #F2F5FC;
  --per-stroke-elements: #8F93A1;
  /* neutral colors */
  --neutral-white: #ffffff;
  --neutral-black: #000000;
  --neutral-gray: #878787;
  --neutral-gray-dark: #404040;
  /* Ahora, para el tema OSCURO, cuando el HTML tenga data-bs-theme="dark" */
html[data-bs-theme="dark"] {
  --base: var(--base--dark);
  --base-rgb: var(--base-rgb--dark);
  --base-shade: var(--base-shade--dark);
  --base-tint: #242424; /* base-tint--dark */
  --stroke-controls: var(--stroke-controls--dark);
  --stroke-elements: #535762; /* stroke-elements--dark */
  --font-weight-base: var(--font-weight-base--dark);
  --font-weight-medium: var(--font-weight-medium--dark);
  --t-bright: #F2F5FC; /* t-bright--dark */
  --t-medium: #AEB5C5; /* t-medium--dark */
  --t-muted: #505258; /* t-muted--dark */
  --t-opp-bright: #151617; /* t-opp-bright--dark */
  --t-opp-medium: #313437; /* t-opp-medium--dark */
  --t-opp-muted: #797D83; /* t-opp-muted--dark */
  --neutral-bright: #ffffff; /* neutral-bright--dark */

  /* Sobrescribe también tus colores primarios, de éxito y error para el tema oscuro */
  --primary-color: #6f42c1; /* Ejemplo: Un púrpura para tema oscuro */
  --accent-success: #20c997; /* Ejemplo: Verde brillante para tema oscuro */
  --accent-error: #fd7e14; /* Ejemplo: Naranja para tema oscuro */
}
}

/* defaults */
@media (prefers-color-scheme: light) {
  :root {
    --base: var(--base--light);
    --base-rgb: var(--base-rgb--light);
    --base-shade: var(--base-shade--light);
    --base-tint: var(--base-tint--light);
    --stroke-controls: var(--stroke-controls--light);
    --stroke-elements: var(--stroke-elements--light);
    --font-weight-base: var(--font-weight-base--light);
    --font-weight-medium: var(--font-weight-medium--light);
    --t-bright: var(--t-bright--light);
    --t-medium: var(--t-medium--light);
    --t-muted: var(--t-muted--light);
    --t-opp-bright: var(--t-opp-bright--light);
    --t-opp-medium: var(--t-opp-medium--light);
    --t-opp-muted: var(--t-opp-muted--light);
    --neutral-bright: var(--neutral-bright--light);
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --base: var(--base--dark);
    --base-rgb: var(--base-rgb--dark);
    --base-shade: var(--base-shade--dark);
    --base-tint: var(--base-tint--dark);
    --stroke-controls: var(--stroke-controls--dark);
    --stroke-elements: var(--stroke-elements--dark);
    --font-weight-base: var(--font-weight-base--dark);
    --font-weight-medium: var(--font-weight-medium--dark);
    --t-bright: var(--t-bright--dark);
    --t-medium: var(--t-medium--dark);
    --t-muted: var(--t-muted--dark);
    --t-opp-bright: var(--t-opp-bright--dark);
    --t-opp-medium: var(--t-opp-medium--dark);
    --t-opp-muted: var(--t-opp-muted--dark);
    --neutral-bright: var(--neutral-bright--dark);
  }
}
[color-scheme=light] {
  --base: var(--base--light);
  --base-rgb: var(--base-rgb--light);
  --base-shade: var(--base-shade--light);
  --base-tint: var(--base-tint--light);
  --stroke-controls: var(--stroke-controls--light);
  --stroke-elements: var(--stroke-elements--light);
  --font-weight-base: var(--font-weight-base--light);
  --font-weight-medium: var(--font-weight-medium--light);
  --t-bright: var(--t-bright--light);
  --t-medium: var(--t-medium--light);
  --t-muted: var(--t-muted--light);
  --t-opp-bright: var(--t-opp-bright--light);
  --t-opp-medium: var(--t-opp-medium--light);
  --t-opp-muted: var(--t-opp-muted--light);
  --neutral-bright: var(--neutral-bright--light);
}

[color-scheme=dark] {
  --base: var(--base--dark);
  --base-rgb: var(--base-rgb--dark);
  --base-shade: var(--base-shade--dark);
  --base-tint: var(--base-tint--dark);
  --stroke-controls: var(--stroke-controls--dark);
  --stroke-elements: var(--stroke-elements--dark);
  --font-weight-base: var(--font-weight-base--dark);
  --font-weight-medium: var(--font-weight-medium--dark);
  --t-bright: var(--t-bright--dark);
  --t-medium: var(--t-medium--dark);
  --t-muted: var(--t-muted--dark);
  --t-opp-bright: var(--t-opp-bright--dark);
  --t-opp-medium: var(--t-opp-medium--dark);
  --t-opp-muted: var(--t-opp-muted--dark);
  --neutral-bright: var(--neutral-bright--dark);
}

/* ------------------------------------------------*/
/* Variables End */
/* ------------------------------------------------*/


/* ------------------------------------------------*/
/* Elements - Forms Start (Añadido para el selector) */
/* ------------------------------------------------*/

/* Estilos para los selectores de Bootstrap (form-select) */
.form-control {
  background-color: var(--base-tint); /* Usa el color de fondo de tus contenedores de contenido */
  color: var(--t-bright); /* Color de texto principal */
  border: 1px solid var(--stroke-elements); /* Borde de tus elementos */
  border-radius: var(--_radius-s); /* Radio de borde pequeño */
  /* Asegurarse de que el ícono de la flecha se vea bien */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); /* Flecha oscura por defecto */
}

/* Tema oscuro para los selectores */
html[data-bs-theme="dark"] .form-control {
  background-color: var(--base-shade); /* Un gris más oscuro para el fondo en tema oscuro */
  color: var(--t-bright); /* Color de texto brillante en tema oscuro */
  border-color: var(--stroke-elements); /* Borde de tus elementos en tema oscuro */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f2f5fc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); /* Flecha blanca para tema oscuro */
}

/* Estilos para el menú desplegable del selector (cuando se abre) */
.dropdown-menu {
  background-color: var(--base-tint); /* Fondo del menú desplegable */
  color: var(--t-bright); /* Color del texto del menú */
  border: 1px solid var(--stroke-elements); /* Borde del menú */
  border-radius: var(--_radius-s); /* Radio de borde para el menú */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Sombra ligera */
}

/* Tema oscuro para el menú desplegable */
html[data-bs-theme="dark"] .dropdown-menu {
  background-color: var(--base-shade); /* Fondo oscuro del menú desplegable */
  color: var(--t-bright); /* Texto brillante del menú */
  border-color: var(--stroke-elements); /* Borde oscuro del menú */
}

/* Ítems individuales dentro del menú desplegable */
.dropdown-item {
  color: var(--t-bright); /* Color de texto para los ítems */
}

/* Estilo al pasar el mouse por encima de un ítem del dropdown */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active { /* Para el elemento seleccionado */
  background-color: var(--stroke-elements); /* Un color de resaltado que contraste */
  color: var(--t-opp-bright); /* Texto opuesto para mayor contraste */
}

/* Tema oscuro para los ítems del dropdown al pasar el mouse */
html[data-bs-theme="dark"] .dropdown-item:hover,
html[data-bs-theme="dark"] .dropdown-item:focus,
html[data-bs-theme="dark"] .dropdown-item.active {
  background-color: var(--t-muted); /* Un gris más oscuro para el resaltado en tema oscuro */
  color: var(--t-bright); /* Texto brillante */
}

/* ------------------------------------------------*/
/* Elements - Forms End */
/* ------------------------------------------------*/


/* ------------------------------------------------*/
/* Elements - Modals & Overlays Start (NUEVA SECCIÓN PARA MODALES) */
/* ------------------------------------------------*/

/* Estilos para el contenido del modal */
.modal-content {
  background-color: var(--base-tint); /* Fondo del modal */
  color: var(--t-bright); /* Color del texto del modal */
  border: 1px solid var(--stroke-elements); /* Borde del modal */
  border-radius: var(--_radius); /* Radio de borde principal de tu tema */
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2); /* Sombra más pronunciada para modales */
}

/* Tema oscuro para el contenido del modal */
html[data-bs-theme="dark"] .modal-content {
  background-color: var(--base-shade); /* Fondo oscuro del modal */
  color: var(--t-bright); /* Texto brillante del modal */
  border-color: var(--stroke-elements); /* Borde oscuro del modal */
}

/* Estilos para el encabezado del modal */
.modal-header {
  border-bottom: 1px solid var(--stroke-elements); /* Borde en el encabezado */
  background-color: transparent; /* Fondo transparente o ajusta según tu diseño */
}

/* Tema oscuro para el encabezado del modal */
html[data-bs-theme="dark"] .modal-header {
  border-color: var(--stroke-elements); /* Borde oscuro en el encabezado */
}

/* Estilos para el título del modal */
.modal-title {
  color: var(--t-bright); /* Color de texto para el título */
}

/* Estilos para el cuerpo del modal */
.modal-body {
  color: var(--t-medium); /* Color de texto para el cuerpo */
}

/* Tema oscuro para el cuerpo del modal */
html[data-bs-theme="dark"] .modal-body {
  color: var(--t-medium); /* Color de texto medio en tema oscuro */
}

/* Estilos para el pie de página del modal */
.modal-footer {
  border-top: 1px solid var(--stroke-elements); /* Borde en el pie de página */
  background-color: transparent; /* Fondo transparente o ajusta según tu diseño */
}

/* Tema oscuro para el pie de página del modal */
html[data-bs-theme="dark"] .modal-footer {
  border-color: var(--stroke-elements); /* Borde oscuro en el pie de página */
}

/* El botón de cerrar del modal (la 'x') */
/* Bootstrap ya debería manejar esto con filter: var(--bs-btn-close-white-filter);
 pero si necesitas un control más específico sobre el color del icono: */
.btn-close {
  /* Por defecto, si el fondo es claro, la X debe ser oscura.
     Bootstrap ya lo hace con filter: invert(0) si el tema es claro. */
}

html[data-bs-theme="dark"] .btn-close {
  /* Cuando el tema es oscuro, la X debe ser clara.
     Bootstrap ya lo hace con filter: invert(1) si el tema es oscuro.
     Solo sobrescribe si necesitas un aspecto diferente que no se logra con el filtro estándar. */
  /* filter: brightness(0) invert(1) grayscale(1) !important; /* Forzar blanco */
}

/* Ajustes para los inputs dentro del modal, para que también sigan el tema */
.modal-body .form-control {
  background-color: var(--base); /* Fondo del input */
  color: var(--t-bright); /* Color del texto */
  border-color: var(--stroke-elements); /* Borde */
}

html[data-bs-theme="dark"] .modal-body .form-control {
  background-color: var(--base-tint); /* Fondo del input en tema oscuro */
  color: var(--t-bright); /* Color del texto en tema oscuro */
  border-color: var(--stroke-elements); /* Borde en tema oscuro */
}

/* ------------------------------------------------*/
/* Elements - Modals & Overlays End */
/* ------------------------------------------------*/

/* --- Media Query para pantallas pequeñas (móviles y tabletas) --- */
@media (max-width: 1199.98px) { /* Bootstrap's XL breakpoint is 1200px */
  /* OCULTA los menús por defecto en pantallas pequeñas */
  #sidebar-left-wrapper,
  #sidebar-right-wrapper {
      position: fixed;
      top: 50;
      height: 100vh;
      width: 280px;
      z-index: 1050; /* Por encima de la mayoría de los elementos de Bootstrap */
      background-color: var(--bs-body-bg);
      transition: transform 0.3s ease-in-out;
      padding: 1rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }

  #sidebar-left-wrapper {
      left: 0;
      transform: translateX(-100%);
  }

  #sidebar-right-wrapper {
      right: 0;
      transform: translateX(100%);
  }

  /* CLASE PARA MOSTRAR LOS MENÚS (activada por JS) */
  #sidebar-left-wrapper.active {
      transform: translateX(0%);
      display: block !important;
  }

  #sidebar-right-wrapper.active {
      transform: translateX(0%);
      display: block !important;
  }

  /* Overlay para cerrar al hacer clic fuera del menú */
  .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 1040;
      display: none;
      /* NUEVO: Permite que los eventos del ratón (clics) pasen a los elementos subyacentes */
      pointer-events: none; /* <--- ESTO ES LO CLAVE */
  }

  .menu-overlay.active {
      display: block;
      /* NUEVO: Reactiva los eventos del ratón si quieres que el overlay sea cliqueable para cerrar */
      /* Si quieres que el overlay *no* bloquee nada, no añadas esta línea */
      /* Si quieres que el overlay *sí* cierre el menú al clicar en él, quita la línea de arriba de 'pointer-events: none;' y déjala como estaba */
  }
}



/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/
.main-image-1 {
  background-image: url("../img/smartphone01.jpg");
}

.main-image-2 {
  background-image: url("../img/desarro");
}

.about-image-1 {
  background-image: url("../img/image-program.jpg");
}

.marquee-image-single-1 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-2 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-3 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-4 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-5 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.marquee-image-single-6 {
  background-image: url("https://dummyimage.com/1000x1300/4d4d4d/636363");
}

.portfolio-item-1 {
  background-image: url("../img/ddapp\ 01.jpg");
}

.portfolio-item-2 {
  background-image: url("https://dummyimage.com/1920x1080/414141/636363");
}

.portfolio-item-3 {
  background-image: url("https://dummyimage.com/1920x1080/686868/737373");
}

.portfolio-item-4 {
  background-image: url("https://dummyimage.com/1920x1080/414141/636363");
}

.portfolio-item-5 {
  background-image: url("https://dummyimage.com/1600x1200/686868/737373");
}

.portfolio-item-6 {
  background-image: url("https://dummyimage.com/1600x1200/414141/636363");
}

.portfolio-item-7 {
  background-image: url("https://dummyimage.com/1600x1200/686868/737373");
}

.portfolio-item-8 {
  background-image: url("https://dummyimage.com/1600x1200/414141/636363");
}

.project-image-bg-1 {
  background-image: url("https://dummyimage.com/1920x1280/4d4d4d/636363");
}

.project-image-bg-2 {
  background-image: url("https://dummyimage.com/1920x1080/4d4d4d/636363");
}

.project-image-bg-3 {
  background-image: url("https://dummyimage.com/1920x1080/4d4d4d/636363");
}

/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/


/* ------------------------------------------------*/
/* Basic Styles Start */
/* ------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  background-color: var(--base-tint);
  color: var(--t-medium);
  text-shadow: none;
}

::selection {
  background-color: var(--base-tint);
  color: var(--t-medium);
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 6px;
  background: var(--base-shade);
}
@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  background-color: var(--base-shade);
}

::-webkit-scrollbar-thumb {
  background-color: var(--base-tint);
  border-radius: var(--_radius-s);
}

html {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  font-size: 72.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  width: 100%;
  min-width: 360px;
  overflow-x: unset !important;
  font: normal 400 var(--_size)/1.4 var(--_font-default);
  text-rendering: optimizeLegibility;
  background-color: var(--base);
  color: var(--t-medium);
}

section {
  position: relative;
  min-width: 360px;
}

a {
  text-decoration: none;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}

.hidden {
  display: none !important; /* El !important asegura que sobrescriba otras reglas */
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

.components {
  position: relative;
}

.components__item {
  position: relative;
  padding: 8rem 10%;
  border-bottom: 1px solid var(--stroke-elements);
}

.components__caption {
  display: block;
  font: normal 400 1.3rem/1 var(--_font-default);
  color: var(--t-medium);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}

.spacer {
  height: 300px;
}

/* ------------------------------------------------*/
/* Basic Styles End */
/* ------------------------------------------------*/


/* ------------------------------------------------*/
/* Custom Layout Containers Start */
/* ------------------------------------------------*/

.sidebar-container {
  background-color: var(--base-tint); /* Un color que se integre bien con tu tema */
  padding: 2.5rem; /* Ajusta el padding según tus preferencias */
  height: 100%; /* Asegura que ocupe toda la altura disponible en la columna */
  overflow-y: auto; /* Permite scroll si el contenido es más largo que el contenedor */
  border-radius: var(--_radius); /* Usa tu variable de radio para bordes redondeados */
  box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.05); /* Sombra sutil para profundidad */
  margin-bottom: 2rem; /* Espacio entre sidebars en pantallas pequeñas */
  display: flex; /* Para organizar el contenido interno fácilmente */
  flex-direction: column; /* Apila los elementos verticalmente */
}

/* Ajustes para pantallas grandes (desktop) */
@media (min-width: 1200px) { /* Corresponde a tu breakpoint 'xl' de Bootstrap */
  .sidebar-container {
      margin-bottom: 0; /* Elimina el margen inferior cuando son columnas paralelas */
  }
}

.main-content-container {
  background-color: var(--base); /* Puedes usar el color base para el fondo principal */
  padding: 3rem; /* Ajusta el padding para el contenido principal */
  height: 100%; /* Asegura que ocupe toda la altura disponible */
  overflow-y: auto; /* Permite scroll si el contenido es más largo */
  border-radius: var(--_radius); /* Bordes redondeados */
  box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.05); /* Sombra sutil */
}

/* Estilos específicos para los elementos dentro del sidebar derecho */
#right-sidebar h4 {
  margin-top: 0;
  margin-bottom: 1.5rem; /* Espacio debajo de los títulos de sección */
  color: var(--t-bright); /* Color brillante para los títulos */
  font-size: 2.2rem; /* Ajusta el tamaño de fuente según tu estilo */
}

#right-sidebar .btn {
  width: 100%; /* Botones de favoritos y buscador ocuparán todo el ancho */
  margin-bottom: 1rem; /* Espacio entre los botones */
  padding: 1rem 1.5rem; /* Padding para los botones */
  border-radius: var(--_radius-s); /* Bordes ligeramente redondeados para botones */
  font-size: 1.6rem; /* Tamaño de fuente para los botones */
  color: var(--t-bright); /* Color del texto del botón */
  background-color: var(--base-shade); /* Fondo de botón que contraste */
  border: 1px solid var(--stroke-elements); /* Borde sutil */
  transition: all var(--_animspeed-medium) var(--_animbezier); /* Transición suave al pasar el ratón */
}

#right-sidebar .btn:hover {
  background-color: var(--t-bright); /* Cambio de color al pasar el ratón */
  color: var(--t-opp-bright); /* Texto opuesto para contraste */
  border-color: var(--t-bright);
}

#right-sidebar hr {
  border-color: var(--stroke-elements); /* Color para la línea divisoria */
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#right-sidebar .input-group {
  margin-top: 1.5rem; /* Espacio encima del buscador */
  display: flex; /* Asegura que el contenedor sea un flex container */
  align-items: stretch; /* Alinea los ítems para que tengan la misma altura */
  width: 100%;
}

#right-sidebar .form-control {
  width: 50px;
  background-color: var(--base); /* Fondo del input de texto */
  color: var(--t-bright); /* Color del texto del input */
  border: 1px solid var(--stroke-elements); /* Borde del input */
  border-radius: var(--_radius-s); /* Bordes redondeados para el input */
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  flex-grow: 1;
}

#right-sidebar .form-control::placeholder {
  color: var(--t-muted); /* Color del placeholder */
}

#right-sidebar .form-control:focus {
  border-color: var(--t-bright); /* Borde al enfocar el input */
  box-shadow: 0 0 0 0.25rem rgba(var(--base-rgb), 0.25); /* Sombra de enfoque (similar a Bootstrap) */
}

#right-sidebar .btn-outline-secondary {
  width: 50px;
  flex-shrink: 0;
  background-color: var(--base-shade); /* Fondo del botón de buscar */
  color: var(--t-bright); /* Icono del botón de buscar */
  border-color: var(--stroke-elements); /* Borde del botón de buscar */
  margin-bottom: 0px;
  margin-left: 10px;
}

#right-sidebar .btn-outline-secondary:hover {
  background-color: var(--t-bright);
  color: var(--t-opp-bright);
  border-color: var(--t-bright);
}

/* ------------------------------------------------*/
/* Custom Layout Containers End */
/* ------------------------------------------------*/


/* ------------------------------------------------*/
/* Features Home Content Start */
/* ------------------------------------------------*/

.welcome-text {
  margin-bottom: 1.5rem;
  color: var(--t-bright); /* Asegura que el color sea brillante */
  font-size: 3.8rem; /* Ajusta el tamaño de fuente si es necesario */
}

.welcome-paragraph {
  margin-bottom: 3rem;
  color: var(--t-medium); /* Un color de texto más suave para el párrafo */
}


  #search-results li {
    font-size: medium; /* ajusta el tamaño a tu gusto */
    padding: 6px 10px;
    overflow-y: auto;
  }

  .heart-icon {
    color: #114518;
    font-size: medium;
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.2s ease;
  }
  .heart-icon.favorito {
    color: red;
  }


.section-title {
  font: normal 400 2.8rem var(--_font-accent);
  color: var(--t-bright);
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--stroke-elements);
  padding-bottom: 0.8rem;
  width: 100%;
}

.finish-section-title {
  font: normal 400 2.8rem var(--_font-accent);
  color: var(--t-bright);
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgb(71, 102, 36);
  padding-bottom: 0.8rem;
  width: 100%;
}

.upcoming-matches-title {
  margin-top: 5rem; /* Más espacio antes de la sección de partidos */
}

/* Carrusel Horizontal */
.horizontal-carousel-container {
  overflow-x: auto; /* Permite el scroll horizontal */
  -webkit-overflow-scrolling: touch; /* Suaviza el scroll en iOS */
  white-space: nowrap; /* Evita que los ítems se envuelvan */
  padding-bottom: 1.5rem; /* Espacio para la barra de scroll si es visible */
  scrollbar-width: thin; /* Para Firefox */
  scrollbar-color: var(--base-tint) var(--base-shade); /* Para Firefox */
}

.horizontal-carousel-container::-webkit-scrollbar {
  height: 8px; /* Altura de la barra de scroll */
}

.horizontal-carousel-container::-webkit-scrollbar-track {
  background: var(--base-shade); /* Fondo de la pista del scroll */
  border-radius: var(--_radius-s);
}

.horizontal-carousel-container::-webkit-scrollbar-thumb {
  background: var(--base-tint); /* Color del "pulgar" del scroll */
  border-radius: var(--_radius-s);
}


.horizontal-carousel {
  display: inline-flex; /* Permite que los ítems se alineen horizontalmente */
  gap: 2rem; /* Espacio entre los ítems */
  padding: 0.5rem; /* Pequeño padding alrededor del carrusel */
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Evita que los ítems se encojan */
  width: 140px; /* Ancho fijo para cada ítem del carrusel */
  height: 140px; /* Alto fijo para cada ítem del carrusel */
  background-color: var(--base-tint);
  border-radius: var(--_radius); /* Bordes redondeados */
  padding: 1rem;
  cursor: pointer;
  text-align: center;
  position: relative; /* Para posicionar el nombre */
  overflow: hidden; /* Oculta el nombre si se desborda antes de mostrarlo */
  transition: background-color var(--_animspeed-medium) var(--_animbezier);
  border: 1px solid var(--stroke-elements);
}

.carousel-item:hover {
  background-color: var(--base-shade);
}

.carousel-image {
  max-width: 80%; /* Ajusta el tamaño de la imagen dentro del ítem */
  max-height: 80%;
  object-fit: contain; /* Asegura que la imagen se ajuste sin distorsionarse */
  /*transition: opacity var(--_animspeed-medium) var(--_animbezier);*/
}

.carousel-name {
  font-size: 1.4rem;
  color: var(--t-bright);
  opacity: 0; /* OCULTO POR DEFECTO */
  transition: opacity var(--_animspeed-medium) var(--_animbezier); /* Transición para que aparezca suavemente */
 
  
  white-space: normal;
  margin-top: 0.5rem; /* Pequeño espacio entre imagen y nombre */
  padding: 0 0.5rem; /* Pequeño padding horizontal */
  width: 100%; /* Asegura que el ellipsis funcione bien */
  box-sizing: border-box; /* Incluye padding en el ancho */
  line-height: 1;
}

.carousel-item.active .carousel-name {
  opacity: 1; /* Muestra el nombre cuando el ítem está activo */
}


/* Próximos Partidos */
.upcoming-matches-container {
  display: flex;
  flex-direction: column; /* Apila los encuentros verticalmente */
  gap: 2rem; /* Espacio entre cada tarjeta de partido */
  margin-top: 3rem;
}


.match-card {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Espacia los elementos */
  background-color: var(--base-tint);
  border: 1px solid var(--stroke-elements);
  border-radius: var(--_radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.03);
}


.team-info {
  display: flex;
  flex-direction: column; /* Logo y nombre apilados verticalmente */
  align-items: center;
  text-align: center;
  width: 30%; /* Ancho para cada equipo */
}

.team-logo {
  width: 60px; /* Tamaño del logo del equipo */
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.league-logo {
  width: 120px; /* Tamaño del logo del equipo */
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.teams-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.team-button {
  flex: 1;
  padding: 1rem;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
}

.match-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Alinea los detalles a la derecha */
  text-align: right;
  width: 30%; /* Ancho para los detalles */
}

.match-date {
  font-size: 1.4rem;
  color: var(--t-medium);
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  color: var(--t-bright);
  white-space: nowrap; /* Evita que el nombre se envuelva */
  overflow: hidden;
  text-overflow: ellipsis; /* Añade puntos suspensivos si el nombre es muy largo */
}

.finished-match-card {
  display: flex;
  flex-direction: column; /* Apila el título y el contenido verticalmente */
  background-color: var(--base-tint);
  border: 1px solid var(--stroke-elements);
  border-radius: var(--_radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.03);
  width: 120%; /* Asegura que ocupe todo el ancho del contenedor */
  max-width: 400px; /* Ancho máximo para cada tarjeta */
  overflow: hidden; /* Oculta el contenido que desborda */
}

.create-match-card {
  display: flex;
  flex-direction: row; /* Apila el título y el contenido verticalmente */
  background-color: var(--base-tint);
  border: 1px solid var(--stroke-elements);
  border-radius: var(--_radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.03);
  width: 120%; /* Asegura que ocupe todo el ancho del contenedor */
  max-width: 100%; /* Ancho máximo para cada tarjeta */
  overflow: hidden; /* Oculta el contenido que desborda */
}

.match-title {
  text-align: center; /* Centra el título */
  font-size: 1.5rem; /* Tamaño de la fuente */
  font-weight: bold; /* Negrita */
  margin-bottom: 1rem; /* Espacio debajo del título */
}
.match-content {
  display: flex; /* Mantiene el contenido del partido en una fila */
  align-items: center; /* Alinea verticalmente los elementos */
  justify-content: space-between; /* Espacia los elementos */
  width: 100%; /* Asegura que ocupe todo el ancho */
}

/* Próximos Partidos */
.finished-matches-container {
  display: flex;
  flex-direction: column; /* Apila los encuentros verticalmente */
  gap: 2rem; /* Espacio entre cada tarjeta de partido */
  margin-top: 3rem;
}

.create-matches-container {
  flex: 0 0 auto; /* Evita que los elementos se encojan */
  scroll-snap-align: start; /* Alinea el inicio de cada tarjeta al inicio del contenedor */
  display: flex;
  flex-direction: column; /* Apila los encuentros verticalmente */
  gap: 2rem; /* Espacio entre cada tarjeta de partido */
  margin-top: 3rem;
}

.checkbox-container label {
  display: block;
  margin-bottom: 12px;
  margin-top: 20px;
}

.stats-container {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  background-color: var(--base-tint);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}


table.score {
  border-collapse: collapse;
  width: 100%;
}
table.score th, 
table.score td {
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  text-align: center;
  vertical-align: middle;
}
table.score th {
  background-color: rgb(71, 102, 36);
  color: #000000;
  font-weight: 700;
  font-size: 14px;
}
select, input[type="number"], textarea {
  color: var(--text-color-dark);
  background-color: var(--bg-color-dark);
  border: 1px solid var(--border-dark);
}
@media (prefers-color-scheme: light) {
  select, input[type="number"], textarea {
    color: var(--text-color-light);
    background-color: var(--bg-color-light);
    border: 1px solid var(--border-light);
  }
}

textarea {
  resize: vertical;
}


.matches-wrapper {
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos se envuelvan a la siguiente línea */
  justify-content: flex-start; /* Alinea los elementos al inicio */
  gap: 20px; /* Espacio entre los elementos */
}

.finish-match-button {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: white;
  width: 300px;
  background: linear-gradient(135deg, #476624, #5b842c); /* degradado azul moderno */
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgb(71, 102, 36);
  display: inline-block;
  text-align: center;
  user-select: none;
  margin: 0 auto; /* Agregado para centrar */
  margin-bottom: 12px;
}
.finish-match-button:hover,
.finish-match-button:focus {
  background: linear-gradient(135deg, #5b842c, #476624);
  box-shadow: 0 6px 12px rgb(71, 102, 36);
  outline: none;
}
.finish-match-button:active {
  background: linear-gradient(135deg, #5b842c, #476624);
  box-shadow: 0 2px 6px #476624;
  transform: translateY(1px);
}

.score-match-button {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: white;
  width: 300px;
  background: linear-gradient(135deg, #476624, #5b842c); /* degradado azul moderno */
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgb(71, 102, 36);
  display: inline-block;
  text-align: center;
  user-select: none;
  margin: 0 auto; /* Agregado para centrar */
  margin-bottom: 12px;
}
.score-match-button:hover,
.score-match-button:focus {
  background: linear-gradient(135deg, #5b842c, #476624);
  box-shadow: 0 6px 12px rgb(71, 102, 36);
  outline: none;
}
.score-match-button:active {
  background: linear-gradient(135deg, #5b842c, #476624);
  box-shadow: 0 2px 6px #476624;
  transform: translateY(1px);
}



.finish-match-title {
  text-align: center; /* Centra el título */
  font-size: 1.5rem; /* Tamaño de la fuente */
  font-weight: bold; /* Negrita */
  margin-bottom: 1rem; /* Espacio debajo del título */
  color: rgb(71, 102, 36);
}
.finish-match-content {
  display: flex; /* Mantiene el contenido del partido en una fila */
  align-items: center; /* Alinea verticalmente los elementos */
  justify-content: space-between; /* Espacia los elementos */
  width: 100%; /* Asegura que ocupe todo el ancho */
}

.finish-vs-text {
  font-size: 2.2rem;
  font-weight: var(--font-weight-medium);
  color: var(--t-muted); /* Color para "VS" */
  flex-shrink: 0; /* Evita que se encoja */
  padding: 0 1rem;
}

.finish-team-info {
  display: flex;
  flex-direction: column; /* Logo y nombre apilados verticalmente */
  align-items: center;
  text-align: center;
  width: 30%; /* Ancho para cada equipo */
  max-width: 100%; /* Asegura que no exceda el contenedor */
  overflow: hidden; /* Oculta el contenido que desborda */
}

.finish-team-logo {
  width: 60px; /* Tamaño del logo del equipo */
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.finish-team-name {
  font-size: 1.6rem;                 /* Tamaño de la fuente */
  font-weight: var(--font-weight-medium); /* Grosor o peso de la fuente, usando una variable CSS */
  color: var(--t-bright);            /* Color del texto, usando una variable CSS */
  white-space: normal;               /* Permite que el texto se divida en varias líneas (se ajusta automáticamente) */     /* Permite que las palabras largas se dividan si es necesario para evitar desbordamiento */
  word-break: break-word;            /* Indica que se puede romper la palabra para evitar que desborde la caja */
  line-height: 2rem;               /* Altura de línea para el texto */
  max-height: 3;                     /* Altura máxima (este valor está incompleto o mal especificado, debería llevar una unidad como '3rem' o '3px') */
  overflow: visible;                 /* Permite que el contenido se muestre fuera de su contenedor si se desborda */
  width: 100%;                      /* El elemento ocupa el 100% del ancho de su contenedor padre */
  padding: 0 0.5rem;                 /* Espaciado interno horizontal para que el texto no toque los bordes */
}

.finish-vs-text {
  font-size: 2.2rem;
  font-weight: var(--font-weight-medium);
  color: var(--t-muted); /* Color para "VS" */
  flex-shrink: 0; /* Evita que se encoja */
  padding: 0 1rem;
  font-weight: 1000;
}

.finish-match-details {
  display: flex;
  text-align: center;
  justify-content: space-between;
  width: calc(100% - 2rem); /* Asegura que ocupe todo el ancho menos el margen */
  margin: 0 1rem; /* Margen de 1rem a la izquierda y a la derecha */
  overflow: hidden; /* Oculta el contenido que desborda */
  box-sizing: border-box; /* Incluye padding y margen en el ancho total */
  margin-top: 5px;
}

.finish-date {
  font-size: 1.6rem;
  color: var(--t-medium);
  margin-bottom: 0.5rem;
  margin-left: 0; /* Ajusta el margen para que no se desplace */
  flex-shrink: 1; /* Permite que se encoja si es necesario */
  color: rgb(71, 102, 36);
}

.finish-text {
  font-size: 1.8rem;
  color: var(--t-medium);
  margin-bottom: 0.5rem;
  margin-left: 3px; /* Ajusta el margen para que no se desplace */
  flex-shrink: 1; /* Permite que se encoja si es necesario */
}

.app-logo {
  width: 40px; /* Tamaño del logo de la app */
  height: 40px;
  object-fit: contain;
}

.carousel-container {
  display: flex;
  overflow-x: auto; /* Permite el desplazamiento horizontal */
  scroll-snap-type: x mandatory; /* Habilita el desplazamiento suave */
  gap: 1rem; /* Espacio entre las tarjetas */
}
.finished-matches-container {
  flex: 0 0 auto; /* Evita que los elementos se encojan */
  scroll-snap-align: start; /* Alinea el inicio de cada tarjeta al inicio del contenedor */
  width: 400px; /* Ancho fijo para cada tarjeta */
}
.finished-match-card {
  display: flex;
  flex-direction: column; /* Apila el título y el contenido verticalmente */
  background-color: var(--base-tint);
  border: 1px solid var(--stroke-elements);
  border-radius: var(--_radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.03);
}

/* Responsive para pantallas más pequeñas (opcional, si quieres más ajustes) */
@media only screen and (max-width: 576px) {
  .match-card {
      flex-direction: column; /* Apila los elementos en pantallas muy pequeñas */
      text-align: center;
      padding: 1.5rem;
  }
  .team-info, .match-details {
      width: 100%; /* Ocupa todo el ancho */
      margin-bottom: 1rem;
  }
  .team-info {
      flex-direction: row; /* Logo y nombre en la misma línea */
      justify-content: center;
      gap: 1rem;
  }
  .team-logo {
      width: 50px;
      height: 50px;
      margin-bottom: 0;
  }
  .vs-text {
      margin: 1rem 0;
  }
  .match-details {
      align-items: center; /* Centra los detalles en columna */
  }
}

/* ------------------------------------------------*/
/* Features Home Content End */
/* ------------------------------------------------*/


.card {
  background-color: var(--base-tint); /* Gris muy claro, casi blanco */
  border: 1px solid var(--base-tint); /* Un borde sutil para definir la tarjeta */
  border-radius: 0.5rem; /* Bordes ligeramente redondeados */
}

/* Estilo para el título de la tarjeta de notificación */
.card-title {
  color: rgb(71, 102, 36); /* Verde Bootstrap (success) */
  font-weight: bold;
  padding-bottom: 10px; /* Para que el título resalte más */
}

/* Puedes añadir más estilos si es necesario */
/* Por ejemplo, para el texto del mensaje */
.card-text {
  color: #343a40;
   font-size: 1.6rem;
}

/* Si quieres que las tarjetas de selección y carga tengan estilos similares */
.loading-and-selection-card {
  background-color: #f8f9fa; /* Color de fondo */
  border: 1px solid #e2e6ea; /* Borde */
  border-radius: 0.5rem; /* Bordes redondeados */
  padding: 1.5rem; /* Espaciado interno */
  margin-bottom: 1.5rem; /* Espacio debajo de la tarjeta */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Sombra ligera */
}





/* ------------------------------------------------*/
/* Estilos Generales para Todas las Secciones de Administración */
/* (Aplicable a Ligas, Representantes, Pacientes, etc., SIN INCLUIR ESTILOS DE BUSCADOR) */
/* ------------------------------------------------*/

/* Contenedor principal de cualquier sección de administración */
.admin-section {
  position: relative;
}

/* Encabezado de la sección (ej. "Mis Ligas / Torneos", "Mis Representantes") */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Título de la sección (ej. "Mis Ligas / Torneos") */
.section-title {
    font-size: 2.2rem; /* Puedes ajustar el tamaño de fuente */
    color: var(--t-bright); /* Color de texto brillante */
    font-weight: var(--font-weight-bold); /* Negrita */
}

/* Botones genéricos para abrir modales o añadir elementos (ej. "Agregar Liga") */
.btn-modal-trigger {
    padding: 10px 15px;
    border-radius: var(--_radius-s);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color); /* Suponiendo que tienes una variable para tu color primario */
    color: white;
    border: none;
    cursor: pointer;
}

/* Contenedor principal del contenido de la sección (tabla, ítems de lista, etc.) */
.section-content-container {
    background-color: var(--base-tint); /* Un fondo similar a tus cards */
    border-radius: var(--_radius);
    padding: 20px;
    /* Sombras o bordes si quieres un efecto de "tarjeta" más pronunciado */
    /* box-shadow: var(--_shadow-lg); */
}

/* Estilos de tabla genéricos */
.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table thead th { /* Estilos para los encabezados de la tabla */
    font-weight: var(--font-weight-medium);
    color: var(--t-bright);
    background-color: var(--base-light);
    padding: 12px 15px;
    text-align: center; /* Alineación del texto de los encabezados */
}

.custom-table tbody td { /* Estilos para las celdas de la tabla */
    padding: 12px 15px;
    text-align: center; /* Alineación del texto de las celdas */
    border-bottom: 1px solid var(--stroke-elements);
    color: var(--t-normal);
}

.custom-table tbody tr:last-child td {
    border-bottom: none; /* Elimina el borde de la última fila */
}

/* Estilos para los elementos de lista que no son tablas (si los usas, como antes en league-item) */
/* Si no tienes listados que no sean tablas, puedes omitir estas clases */
.item-card { /* Para cada "tarjeta" de un ítem en una lista (si no es una tabla) */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--stroke-elements);
}

.item-card:last-child {
    border-bottom: none;
}

.item-info-group { /* Información principal del ítem */
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.item-logo { /* Logotipo o imagen del ítem */
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--_radius-s);
}

.item-name { /* Nombre principal del ítem */
    font-size: 1.8rem;
    color: var(--t-bright);
    font-weight: var(--font-weight-medium);
}

.item-actions-group { /* Contenedor de acciones del ítem (ej. editar/eliminar) */
    display: flex;
    gap: 10px;
}


/* Botones de acción genéricos (Editar, Eliminar) dentro de cualquier contexto */
.btn-action-edit,
.btn-action-delete {
  padding: 8px 12px;
  border: none;
  border-radius: var(--_radius-s);
  cursor: pointer;
  font-size: 1.4rem;
}

.btn-action-edit {
  background-color: var(--accent-success); /* Verde o similar */
  color: white;
}

.btn-action-delete {
  background-color: var(--accent-error); /* Rojo o similar */
  color: white;
}

/* Estilos de paginación genéricos */
.pagination-controls {
    margin-top: 20px;
}

.pagination-controls .btn {
    border: 1px solid var(--stroke-elements);
    background-color: var(--base-light);
    color: var(--t-normal);
}

.pagination-controls .btn:hover {
    background-color: var(--base-dark);
}

.page-number-display {
    font-weight: var(--font-weight-medium);
    color: var(--t-normal);
    margin: 0 10px;
}


/* Clases de utilidad de Bootstrap que necesitas tener en tu CSS o importar Bootstrap */
.mb-2 { margin-bottom: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.d-flex { display: flex !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.me-2 { margin-right: 0.5rem !important; }
.ms-auto { margin-left: auto !important; }
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } /* Ajusta según tu framework */
.col { flex-basis: 0; flex-grow: 1; max-width: 100%; padding-right: 15px; padding-left: 15px; } /* Ajusta según tu framework */
.col-auto { flex: 0 0 auto; width: auto; max-width: 100%; padding-right: 15px; padding-left: 15px; } /* Ajusta según tu framework */


/* ------------------------------------------------*/
/* Estilos Específicos: Componente "Seleccionar Liga" */
/* ------------------------------------------------*/

.loading-and-selection-card {
  background-color: var(--base-tint); /* Usa el color de fondo de tus cards/contenedores */
  border-radius: var(--_radius); /* Bordes redondeados consistentes con tu tema */
  padding: 20px; /* Espaciado interno */
  display: flex;
  flex-direction: column; /* Apila el título y el select */
  align-items: center; /* Centra horizontalmente el contenido */
  justify-content: center; /* Centra verticalmente el contenido */
  gap: 20px; /* Espacio entre el título "Seleccionar Liga" y el select */
  text-align: center; /* Centra el texto dentro de la tarjeta */
  /* La sombra la puedes agregar si quieres un efecto 3D más pronunciado */
  /* box-shadow: var(--_shadow-lg); */
  height: auto; /* La altura se ajustará al contenido */
  margin-bottom: 30px;
}

.loading-and-selection-card .component-title {
  font-size: 2.5rem; /* Tamaño de fuente para el título "Seleccionar Liga" */
  color: var(--t-bright); /* Color de texto brillante para los títulos */
  font-weight: var(--font-weight-bold); /* Negrita, según tu variable */
  margin-bottom: 0; /* Anulado por el 'gap' del flexbox padre */
}

/* Contenedor del select, asegura que ocupe todo el ancho disponible */
.form-group.w-100 {
  width: 100%; /* Ya está en Bootstrap, pero se reconfirma */
  /* Si necesitas algún margen adicional para separar el form-group de otros elementos
     dentro de .loading-and-selection-card, puedes añadirlo aquí */
}

/* Estilo del SELECT HTML nativo (id="league_selector") */
/* Bootstrap con .form-control ya provee muchos estilos base.
 Estos ajustes lo hacen más consistente con tu diseño "Enoc Labs". */
.form-control {
  width: 100%; /* Ocupa el 100% del contenedor .form-group */
  padding: 12px 15px; /* Relleno interno para una buena legibilidad */
  border: 1px solid var(--stroke-elements); /* Borde usando tu color de elementos de stroke */
  border-radius: var(--_radius-s); /* Bordes ligeramente redondeados */
  background-color: var(--base-light); /* Fondo del select (parecido a tus inputs) */
  color: var(--t-bright); /* Color del texto dentro del select */
  font-size: 1.6rem; /* Tamaño de fuente */
  cursor: pointer;
  outline: none; /* Elimina el contorno azul por defecto en algunos navegadores al enfocar */
  transition: border-color var(--_animspeed-medium) ease, box-shadow var(--_animspeed-medium) ease; /* Transiciones suaves */

  /* Quita el estilo de flecha por defecto del navegador y añade una personalizada */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Usamos un SVG como background-image. El color de la flecha será --t-bright.
     Nota: Necesitarías un poco de JS o PHP para pasar directamente el valor de --t-bright
     al encodeURIComponent en el CSS si --t-bright no es un valor hexadecimal fijo.
     Para que funcione directamente en CSS, --t-bright debería ser un hex como #151617.
     Asumo que tus variables de color como --t-bright son valores hexadecimales directos o RGB.
     Si --t-bright es #151617, el encodeURIComponent(var(--t-bright)).substring(1) intentaría usar '151617'. */
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22%23151617%22%20d%3D%22M7.41%2C8.59L6%2C7.17L4.59%2C8.59L3.17%2C7.17L6%2C4.34L8.83%2C7.17L7.41%2C8.59Z%22%20transform%3D%22rotate(90%206%206)%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 15px center; /* Posiciona la flecha a la derecha */
  background-size: 12px; /* Tamaño de la flecha */
}

/* Estilo al enfocar el select (cuando está activo) */
.form-control:focus {
  border-color: var(--accent-success); /* Borde con tu color primario */
  /* Asegúrate de que --primary-rgb esté definido en tus variables como "R,G,B" (ej. "0,123,255") */
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25); /* Sombra de enfoque similar a Bootstrap */
}

/* Visually hidden para accesibilidad */
.visually-hidden { 
  position: absolute !important; 
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0, 0, 0, 0); 
  white-space: nowrap; 
  border: 0; 
}

/* Si "t-normal" no está definido en tus variables, considera usar --t-medium o --t-bright */
/* body {
  color: var(--t-medium); /* Asegura que el texto principal tenga un color definido */
/* } */


/* ------------------------------------------------*/
/* Animations - Transitions Start */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations - Transitions End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Animations - Backgrounds Start */
/* ------------------------------------------------*/
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: center center;
  -moz-background-size: contain;
       background-size: contain;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------*/
/* Animations - Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Elements - Typography Start */
/* ------------------------------------------------*/
h1 {
  font: normal 300 5.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 10.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  h1 {
    font-size: 12.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .headline-80-desktop .headline__title {
    max-width: 67rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline-80-desktop .headline__title {
    max-width: none;
  }
}

.headline__subtitle.space-top {
  margin-top: 4.6rem;
}
.headline__subtitle.space-bottom {
  margin-bottom: 3.8rem;
}
@media only screen and (min-width: 768px) {
  .headline__subtitle.space-top {
    margin-top: 5.7rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 4.2rem;
  }
}
@media only screen and (min-width: 992px) {
  .headline__subtitle.space-top {
    margin-top: 6.4rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 4.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline__subtitle.space-top {
    margin-top: 5.8rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .headline__subtitle.space-top {
    margin-top: 6.3rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 5.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .headline__subtitle.space-top {
    margin-top: 6.8rem;
  }
  .headline__subtitle.space-bottom {
    margin-bottom: 4.1rem;
  }
}

h2 {
  font: normal 300 4.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  h2 {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  h2 {
    font-size: 14rem;
  }
}

.h2__text {
  margin-top: 4.5rem;
}
@media only screen and (min-width: 768px) {
  .h2__text {
    margin-top: 5.7rem;
    max-width: 67rem;
  }
}
@media only screen and (min-width: 992px) {
  .h2__text {
    margin-top: 6.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .h2__text {
    margin-top: 5.9rem;
    max-width: 78rem;
  }
  .h2__text.text-half {
    max-width: 54%;
  }
  .h2__text.text-twothirds {
    max-width: 67%;
  }
}
@media only screen and (min-width: 1400px) {
  .h2__text {
    margin-top: 6.6rem;
  }
  .h2__text.text-half {
    max-width: 50%;
  }
}
@media only screen and (min-width: 1600px) {
  .h2__text {
    margin-top: 6.9rem;
  }
  .h2__text.text-half {
    max-width: 45%;
  }
}

h3 {
  font: normal 400 3.4rem var(--_font-accent);
  color: var(--t-bright);
}
h3.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}
h3.light {
  color: var(--t-per-bright-light);
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 4.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  h3 {
    font-size: 5.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  h3 {
    font-size: 6.4rem;
  }
}

h4 {
  font: normal 400 2.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 1400px) {
  h4 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  h4 {
    font-size: 3.6rem;
  }
}

h5 {
  font: normal 500 2.2rem var(--_font-accent);
  color: var(--t-bright);
}

h6 {
  font: normal var(--font-weight-base) 1.8rem/1.6 var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 1200px) {
  h6 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  h6 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  h6 {
    font-size: 2.6rem;
  }
}

.section-name {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: flex-start;
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
.section-name .section-name-caption,
.section-name i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.section-name i {
  font-size: 2.3rem;
  overflow: hidden;
}
.section-name.icon-left .section-name-caption {
  margin-left: 1rem;
}
.section-name.icon-right .section-name-caption {
  margin-right: 1rem;
}
@media only screen and (min-width: 1200px) {
  .section-name {
    font-size: 2rem;
  }
  .section-name i {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .section-name {
    font-size: 2.2rem;
  }
  .section-name i {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .section-name {
    font-size: 2.6rem;
  }
  .section-name i {
    font-size: 3.2rem;
  }
}

.tagline-chapter {
  font: normal var(--font-weight-medium) 1.8rem var(--_font-default);
  color: var(--t-bright);
}
.tagline-chapter.small {
  font-size: 1.6rem;
}
.tagline-chapter::before {
  content: "[";
  display: inline;
  padding-right: 0.24em;
}
.tagline-chapter::after {
  content: "]";
  display: inline;
  padding-left: 0.24em;
}
@media only screen and (min-width: 1200px) {
  .tagline-chapter {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .tagline-chapter {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .tagline-chapter {
    font-size: 2.6rem;
  }
  .tagline-chapter.small {
    font-size: 1.8rem;
  }
}

.tagline-tool {
  font: normal 500 1.8rem var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 1200px) {
  .tagline-tool {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .tagline-tool {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .tagline-tool {
    font-size: 2.6rem;
  }
}

p {
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
}
p.type-basic-160lh {
  line-height: 1.6;
}
p.type-basic-140lh {
  line-height: 1.4;
}
p.small {
  font-size: 1.6rem;
}
p.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}
p.light {
  color: var(--t-per-bright-light);
  font-weight: 300;
}
@media only screen and (min-width: 1200px) {
  p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  p {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  p {
    font-size: 2.6rem;
  }
  p.small {
    font-size: 1.8rem;
  }
}

a {
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
  text-decoration: none;
}
a.link-small {
  font-size: 1.6rem;
}
a.link-small-underline {
  font-size: 1.6rem;
  text-decoration: underline;
}
a.link-small-160lh {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
  line-height: 1.6;
}
.no-touch a:hover.link-small {
  color: var(--t-medium);
}
.no-touch a:hover.link-small-underline {
  color: var(--t-medium);
}
.no-touch a:hover.link-small-160lh {
  color: var(--t-medium);
}
@media only screen and (min-width: 1200px) {
  a {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  a {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  a {
    font-size: 2.6rem;
  }
  a.link-small {
    font-size: 1.8rem;
  }
  a.link-small-underline {
    font-size: 1.8rem;
    text-decoration: underline;
  }
  a.link-small-160lh {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

blockquote {
  font: normal 300 3.2rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  blockquote {
    font-size: 4.4rem;
    max-width: 76rem;
  }
}
@media only screen and (min-width: 1200px) {
  blockquote {
    font-size: 5rem;
    max-width: none;
  }
}
@media only screen and (min-width: 1400px) {
  blockquote {
    font-size: 5.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  blockquote {
    font-size: 6.8rem;
  }
}

.logo-text {
  font: normal 600 1.8rem var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .logo-text {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .logo-text {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .logo-text {
    font-size: 2.6rem;
  }
}

.menu-link {
  font: normal 500 1.6rem var(--_font-default);
}
@media only screen and (min-width: 1600px) {
  .menu-link {
    font-size: 1.8rem;
  }
}

.text-link {
  color: inherit;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(var(--t-bright)), to(var(--t-bright)));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), -moz-linear-gradient(left, var(--t-bright), var(--t-bright));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, var(--t-bright), var(--t-bright));
  -moz-background-size: 100% 1px, 0 1px;
       background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms, color 300ms;
  -moz-transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
  transition: background-size 400ms, color 300ms;
  transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
}
.text-link.text-link-medium {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(var(--t-muted)), to(var(--t-muted)));
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), -moz-linear-gradient(left, var(--t-muted), var(--t-muted));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, var(--t-muted), var(--t-muted));
  -moz-background-size: 100% 1px, 0 1px;
       background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms, color 300ms;
  -moz-transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
  transition: background-size 400ms, color 300ms;
  transition: background-size 400ms, color 300ms, -moz-background-size 400ms;
}
.no-touch .text-link:hover {
  -moz-background-size: 0 1px, 100% 1px;
       background-size: 0 1px, 100% 1px;
}

/* ------------------------------------------------*/
/* Elements - Typography End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Elements - Controls Start */
/* ------------------------------------------------*/
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.btn-line {
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font: normal var(--font-weight-medium) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
.btn-line .btn-caption,
.btn-line i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn-line i {
  font-size: 2.3rem;
  overflow: hidden;
}
.btn-line.icon-left .btn-caption {
  margin-left: 1rem;
}
.btn-line.icon-right .btn-caption {
  margin-right: 1rem;
}
.btn-line:hover {
  color: var(--t-medium);
}
@media only screen and (min-width: 1200px) {
  .btn-line {
    font-size: 2rem;
  }
  .btn-line i {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .btn-line {
    font-size: 2.2rem;
  }
  .btn-line i {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-line {
    font-size: 2.6rem;
  }
  .btn-line i {
    font-size: 3.2rem;
  }
}

.btn-line-small {
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font: normal var(--font-weight-medium) 1.4rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
.btn-line-small .btn-caption,
.btn-line-small i {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn-line-small i {
  font-size: 1.6rem;
  overflow: hidden;
}
.btn-line-small.icon-left .btn-caption {
  margin-left: 1rem;
}
.btn-line-small.icon-right .btn-caption {
  margin-right: 1rem;
}
.btn-line-small:hover {
  color: var(--t-medium);
}
@media only screen and (min-width: 768px) {
  .btn-line-small {
    font-size: 1.6rem;
  }
  .btn-line-small i {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-line-small {
    font-size: 1.8rem;
  }
  .btn-line-small i {
    font-size: 2.2rem;
    padding-bottom: 0.2rem;
  }
}

.btn-default {
  width: 100%;
  height: 10rem;
  padding: 0 7.6rem;
  -moz-border-radius: 5rem;
       border-radius: 5rem;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  font: normal var(--font-weight-medium) 1.8rem/10rem var(--_font-default);
  color: var(--t-opp-bright);
}
@media only screen and (min-width: 576px) {
  .btn-default {
    width: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-default {
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
    font-size: 2rem;
    color: var(--t-bright);
  }
  .btn-default .btn-caption {
    display: block;
    position: relative;
  }
}
@media only screen and (min-width: 1400px) {
  .btn-default {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-default {
    height: 11rem;
    line-height: 11rem;
    -moz-border-radius: 6rem;
         border-radius: 6rem;
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 1200px) {
  .hover-default {
    position: relative;
    overflow: hidden;
    -webkit-transition: color 0.3s 0s, background-color 0s 0s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }
  .hover-default em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 50%;
         border-radius: 50%;
    background-color: var(--t-bright);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .no-touch .hover-default:hover {
    color: var(--t-opp-bright);
    background-color: var(--t-bright);
    -webkit-transition: color 0.3s 0s, background-color 0.3s 0.2s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out, -moz-box-shadow 0.5s, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }
  .no-touch .hover-default:hover em {
    width: 225%;
    height: 22.5rem;
  }
}

.btn-circle-text {
  width: 10rem;
  height: 10rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  font: normal var(--font-weight-medium) 1.2rem var(--_font-default);
  color: var(--t-opp-bright);
}
@media only screen and (min-width: 1200px) {
  .btn-circle-text {
    width: 11rem;
    height: 11rem;
    font-size: 1.4rem;
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
    color: var(--t-bright);
  }
  .btn-circle-text .btn-caption {
    display: block;
    position: relative;
  }
}
@media only screen and (min-width: 1400px) {
  .btn-circle-text {
    width: 14rem;
    height: 14rem;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-circle-text {
    width: 16rem;
    height: 16rem;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .hover-circle {
    position: relative;
    overflow: hidden;
    -webkit-transition: color 0.3s 0s, background-color 0s 0s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0s 0s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }
  .hover-circle em {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 50%;
         border-radius: 50%;
    background-color: var(--t-bright);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .no-touch .hover-circle:hover {
    color: var(--t-opp-bright);
    background-color: var(--t-bright);
    -webkit-transition: color 0.3s 0s, background-color 0.3s 0.2s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
    -moz-transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out, -moz-box-shadow 0.5s, -moz-transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out;
    transition: color 0.3s 0s, background-color 0.3s 0.2s, box-shadow 0.5s, transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  }
  .no-touch .hover-circle:hover em {
    width: 225%;
    height: 225%;
  }
  .no-touch .hover-circle:hover i {
    color: var(--t-opp-bright);
    -webkit-transition: color 0.3s 0s;
    -moz-transition: color 0.3s 0s;
    transition: color 0.3s 0s;
  }
}

.btn-circle-icon {
  width: 10rem;
  height: 10rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  font-size: 2.4rem;
  color: var(--t-opp-bright);
}
@media only screen and (min-width: 768px) {
  .btn-circle-icon {
    width: 15.4rem;
    height: 15.4rem;
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-circle-icon {
    width: 17.4rem;
    height: 17.4rem;
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
    color: var(--t-bright);
    font-size: 3.8rem;
  }
  .btn-circle-icon i {
    display: block;
    position: relative;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1400px) {
  .btn-circle-icon {
    width: 19rem;
    height: 19rem;
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-circle-icon {
    width: 26.6rem;
    height: 26.6rem;
    font-size: 5rem;
  }
}

.btn-line-circle-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: normal var(--font-weight-medium) 1.8rem var(--_font-default);
  color: var(--t-bright);
}
.btn-line-circle-icon .btn-caption {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 2rem;
}
.btn-line-circle-icon .circle {
  position: relative;
  width: 10rem;
  height: 10rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
  border: 1px solid var(--neutral-bright);
  background-color: var(--neutral-bright);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-line-circle-icon .circle em {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: var(--t-bright);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.btn-line-circle-icon .circle i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  font-size: 2.3rem;
  color: var(--t-opp-bright);
  z-index: 2;
  overflow: hidden;
  -webkit-transition: color 0.3s 0s;
  -moz-transition: color 0.3s 0s;
  transition: color 0.3s 0s;
}
.btn-line-circle-icon:hover {
  color: var(--t-medium);
}
.btn-line-circle-icon.permanent-dark {
  color: var(--t-per-bright-dark);
}
.btn-line-circle-icon.permanent-dark .circle {
  border: 1px solid var(--t-per-bright-dark);
  background-color: var(--t-per-bright-dark);
}
.btn-line-circle-icon.permanent-dark em {
  background: var(--t-per-bright-dark);
}
.btn-line-circle-icon.permanent-dark i {
  color: var(--t-per-bright-light);
}
@media only screen and (min-width: 1200px) {
  .btn-line-circle-icon {
    font-size: 2rem;
  }
  .btn-line-circle-icon .circle {
    border: 1px solid var(--stroke-controls);
    background-color: transparent;
  }
  .btn-line-circle-icon .circle i {
    font-size: 2.5rem;
    color: var(--t-bright);
  }
}
@media only screen and (min-width: 1400px) {
  .btn-line-circle-icon {
    font-size: 2.2rem;
  }
  .btn-line-circle-icon .circle i {
    font-size: 2.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-line-circle-icon {
    font-size: 2.6rem;
  }
  .btn-line-circle-icon .circle i {
    font-size: 3.2rem;
  }
}

.btn-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: var(--t-bright);
  font-size: 1.8rem;
  z-index: 9;
  overflow: hidden;
}
.btn-to-top i {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .btn-to-top {
    position: fixed;
    right: 5rem;
    bottom: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-to-top {
    font-size: 1.9rem;
  }
  .no-touch .btn-to-top:hover {
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
  }
}
@media only screen and (min-width: 1400px) {
  .btn-to-top {
    width: 5rem;
    height: 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-to-top {
    font-size: 2.2rem;
  }
}

.slide-right:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRight;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideRight;
          animation: 0.4s ease-in-out 0s 1 both slideRight;
}

.slide-right-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRightUp;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideRightUp;
          animation: 0.4s ease-in-out 0s 1 both slideRightUp;
}

.slide-right-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideRightDown;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideRightDown;
          animation: 0.4s ease-in-out 0s 1 both slideRightDown;
}

.slide-left:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeft;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideLeft;
          animation: 0.4s ease-in-out 0s 1 both slideLeft;
}

.slide-left-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
          animation: 0.4s ease-in-out 0s 1 both slideLeftUp;
}

.slide-left-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
          animation: 0.4s ease-in-out 0s 1 both slideLeftDown;
}

.slide-down:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideDown;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideDown;
          animation: 0.4s ease-in-out 0s 1 both slideDown;
}

.slide-up:hover i::before {
  -webkit-animation: 0.4s ease-in-out 0s 1 both slideUp;
     -moz-animation: 0.4s ease-in-out 0s 1 both slideUp;
          animation: 0.4s ease-in-out 0s 1 both slideUp;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-moz-keyframes slideRight {
  0% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(100%);
         transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%);
         transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
            transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideRightUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(100%);
            transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideRightUp {
  0% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(100%) translateY(-100%);
         transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%) translateY(100%);
         transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
@keyframes slideRightUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-100%);
       -moz-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(100%);
       -moz-transform: translateX(-100%) translateY(100%);
            transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideRightDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(100%);
            transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(-100%);
            transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideRightDown {
  0% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(100%) translateY(100%);
         transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%) translateY(-100%);
         transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
@keyframes slideRightDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(100%);
       -moz-transform: translateX(100%) translateY(100%);
            transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(-100%);
       -moz-transform: translateX(-100%) translateY(-100%);
            transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes slideLeft {
  0% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(-100%);
         transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%);
         transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideLeftUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
            transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(100%);
            transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideLeftUp {
  0% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(-100%) translateY(-100%);
         transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%) translateY(100%);
         transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
@keyframes slideLeftUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
       -moz-transform: translateX(-100%) translateY(-100%);
            transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(100%);
       -moz-transform: translateX(100%) translateY(100%);
            transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideLeftDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(100%);
            transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideLeftDown {
  0% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(-100%) translateY(100%);
         transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%) translateY(-100%);
         transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
  }
}
@keyframes slideLeftDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(100%);
       -moz-transform: translateX(-100%) translateY(100%);
            transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(-100%);
       -moz-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
       -moz-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(100%);
         transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateY(100%);
         transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ------------------------------------------------*/
/* Elements - Controls End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Elements - Forms Start */
/* ------------------------------------------------*/
.form-container {
  position: relative;
}

.form {
  opacity: 1;
  -webkit-transition: opacity var(--_animspeed-slow) ease-in-out;
  -moz-transition: opacity var(--_animspeed-slow) ease-in-out;
  transition: opacity var(--_animspeed-slow) ease-in-out;
}
.form.is-hidden {
  opacity: 0;
}

.form__item {
  padding: 0 1rem;
  margin-bottom: 3rem;
}
.form__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .form__item {
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .form__item {
    padding: 0 2.5rem;
    margin-bottom: 5rem;
  }
}

form {
  position: relative;
  width: 100%;
}
form input, form textarea {
  position: relative;
  border: none;
  outline: none;
  margin: 10px;
  padding: 1.6rem 0.4rem 1.6rem 0.4rem;
  background-color: transparent;
  border-bottom: 1px solid var(--stroke-elements);
  font: normal 400 1.8rem var(--_font-default);
  color: var(--t-bright);
}
form input:focus, form textarea:focus {
  border-bottom: 1px solid var(--stroke-controls);
}
form textarea {
  height: 16rem;
  resize: none;
}
form ::-webkit-input-placeholder {
  color: var(--t-muted);
}
form :-moz-placeholder {
  color: var(--t-muted);
}
form ::-moz-placeholder {
  color: var(--t-muted);
}
form :-ms-input-placeholder {
  color: var(--t-muted);
}
form input:focus:required:invalid,
form textarea:focus:required:invalid {
  color: var(--t-bright);
}
form input:required:valid,
form textarea:required:valid {
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  form input,
  form textarea {
    font-size: 2rem;
  }
  form textarea {
    height: 20rem;
  }
}
@media only screen and (min-width: 1400px) {
  form input,
  form textarea {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  form input,
  form textarea {
    font-size: 2.6rem;
  }
}

.form__reply {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity var(--_animspeed-slow) ease-in-out;
  -moz-transition: opacity var(--_animspeed-slow) ease-in-out;
  transition: opacity var(--_animspeed-slow) ease-in-out;
}
.form__reply.centered {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  max-width: 300px;
}
.form__reply.is-visible {
  opacity: 1;
}

.reply__icon {
  display: block;
  font-size: 6rem;
  color: var(--t-bright);
  margin-bottom: 1rem;
}

.reply__title {
  font: normal var(--font-weight-base) 2.6rem var(--_font-accent);
  color: var(--t-bright);
  margin-bottom: 1rem;
}

.reply__text {
  display: block;
  font: normal var(--font-weight-base) 1.8rem var(--_font-default);
  color: var(--t-bright);
}

/* ------------------------------------------------*/
/* Elements - Forms End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Sections Main Start */
/* ------------------------------------------------*/
.main {
  position: relative;
  /*padding-top: 6rem;*/
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .main {
    padding-top: 7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .main {
    padding-top: 0;
  }
}

.main__intro {
  position: relative;
  height: auto;
  margin-bottom: 3.4rem;
}
.main__intro.intro-95-desktop {
  margin-bottom: 11.5rem;
}
.main__intro.intro-fullheight-centered {
  margin-bottom: 12rem;
}
@media only screen and (min-width: 768px) {
  .main__intro {
    margin-bottom: 4.4rem;
  }
  .main__intro.intro-95-desktop {
    margin-bottom: 14.5rem;
  }
  .main__intro.intro-fullheight-centered {
    margin-bottom: 14.3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .main__intro {
    height: 100vh;
    margin-bottom: 0;
  }
  .main__intro.intro-95-desktop {
    height: 95vh;
    margin-bottom: 0;
    padding-top: 7rem;
  }
  .main__intro.intro-fullheight-centered {
    margin-bottom: 0;
    padding-top: 7rem;
  }
}
@media only screen and (min-width: 1400px) {
  .main__intro.intro-95-desktop, .main__intro.intro-fullheight-centered {
    padding-top: 8rem;
  }
}

.intro__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro__background.intro-bg-01 img, .intro__background.intro-bg-02 img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-bg__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, rgba(var(--base-rgb), 0)), color-stop(97%, rgba(var(--base-rgb), 1)));
  background: -moz-linear-gradient(top, rgba(var(--base-rgb), 0) 78%, rgba(var(--base-rgb), 1) 97%);
  background: linear-gradient(to bottom, rgba(var(--base-rgb), 0) 78%, rgba(var(--base-rgb), 1) 97%);
}

.intro-bg-01__01,
.intro-bg-01__02,
.intro-bg-02__01,
.intro-bg-02__02,
.intro-bg-03__01,
.intro-bg-03__02 {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}

.intro-bg-01__01 {
  top: -160px;
  right: -100px;
  width: 320px;
  height: 320px;
}
@media only screen and (min-width: 768px) {
  .intro-bg-01__01 {
    top: -320px;
    right: -20px;
    width: 500px;
    height: 500px;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-01__01 {
    top: -280px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-01__01 {
    top: -160px;
    right: -80px;
    width: 660px;
    height: 660px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-01__01 {
    top: -200px;
    right: 0;
    width: 770px;
    height: 770px;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-01__01 {
    top: -300px;
    right: 0;
    width: 860px;
    height: 860px;
  }
}

.intro-bg-01__02 {
  bottom: -80px;
  left: auto;
  right: 0;
  width: 150px;
  height: 150px;
}
@media only screen and (min-width: 768px) {
  .intro-bg-01__02 {
    bottom: -120px;
    left: auto;
    right: 0;
    width: 240px;
    height: 240px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-01__02 {
    bottom: -40px;
    left: -96px;
    width: 300px;
    height: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-01__02 {
    bottom: -10px;
    left: -86px;
    width: 360px;
    height: 360px;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-01__02 {
    bottom: -60px;
    left: -175px;
    width: 500px;
    height: 500px;
  }
}

.intro-bg-02__01 {
  top: auto;
  bottom: -60px;
  right: 0;
  width: 160px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: -100px;
    right: 0;
    width: 260px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: -80px;
    right: 0;
    width: 340px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 80px;
    right: 0;
    width: 330px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 100px;
    right: 0;
    width: 350px;
    height: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-02__01 {
    top: auto;
    bottom: 60px;
    right: 0;
    width: 530px;
    height: auto;
  }
}

.intro-bg-02__02 {
  bottom: -160px;
  top: auto;
  left: -30px;
  width: 100px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .intro-bg-02__02 {
    bottom: -200px;
    top: auto;
    left: -42px;
    width: 140px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-02__02 {
    bottom: -200px;
    top: auto;
    left: -30px;
    width: 140px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-02__02 {
    bottom: auto;
    top: 150px;
    left: -68px;
    width: 200px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-02__02 {
    bottom: auto;
    top: 210px;
    left: -82px;
    width: 240px;
    height: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-02__02 {
    top: 150px;
    bottom: auto;
    left: -120px;
    width: 350px;
    height: auto;
  }
}

.intro-bg-03__01 {
  height: 440px;
  width: auto;
  bottom: -300px;
  right: -40px;
}
.intro-bg-03__01 img {
  display: block;
  height: 100%;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .intro-bg-03__01 {
    height: 910px;
    width: auto;
    bottom: -150px;
    right: -80px;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-03__01 {
    height: 910px;
    width: auto;
    bottom: -150px;
    right: -60px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-03__01 {
    height: 110vh;
    width: auto;
    top: -10vh;
    right: -60px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-03__01 {
    height: 110vh;
    width: auto;
    top: -10vh;
    right: -60px;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-03__01 {
    height: 126vh;
    width: auto;
    top: -16vh;
    right: -80px;
  }
}

.intro-bg-03__02 {
  height: 180px;
  width: auto;
  bottom: -220px;
  left: 40px;
}
.intro-bg-03__02 img {
  display: block;
  height: 100%;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .intro-bg-03__02 {
    height: 350px;
    width: auto;
    bottom: -340px;
    left: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .intro-bg-03__02 {
    height: 400px;
    width: auto;
    bottom: -340px;
    left: 150px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-bg-03__02 {
    height: 420px;
    width: auto;
    bottom: -210px;
    left: auto;
    right: 220px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro-bg-03__02 {
    height: 450px;
    width: auto;
    bottom: -245px;
    right: 220px;
  }
}
@media only screen and (min-width: 1600px) {
  .intro-bg-03__02 {
    height: 540px;
    width: auto;
    bottom: -265px;
    right: 320px;
  }
}

.headline {
  position: relative;
  padding: 0 2rem;
  margin-top: 11.2rem;
}
.headline.headline-95-desktop, .headline.headline-centered {
  margin-top: 9.5rem;
}
@media only screen and (min-width: 768px) {
  .headline {
    padding: 0 5rem;
    margin-top: 14.2rem;
  }
  .headline.headline-95-desktop, .headline.headline-centered {
    margin-top: 10.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: 0;
  }
  .headline.headline-95-desktop {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 9rem;
  }
  .headline.headline-centered {
    bottom: auto;
    left: auto;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .headline.headline-95-desktop {
    padding-bottom: 9.9rem;
  }
}
@media only screen and (min-width: 1600px) {
  .headline.headline-95-desktop {
    padding-bottom: 11.3rem;
  }
}

@media only screen and (min-width: 768px) {
  .headline__title.fullwidth {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
}

.title__line {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.title__line em {
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
}
.title__line em,
.title__line .btn {
  display: none;
}
@media only screen and (min-width: 768px) {
  .title__line span {
    white-space: nowrap;
  }
  .title__line .btn {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 3rem;
    margin-top: 0.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .title__line {
    padding: 0 3rem;
  }
  .title__line .btn {
    margin-left: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .title__line em {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 260px;
    margin-right: 5rem;
    padding-top: 3.7rem;
    font-size: 1.8rem;
  }
  .title__line .btn {
    margin-left: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .title__line em {
    max-width: 300px;
    padding-top: 4.3rem;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .title__line {
    padding: 0 5rem;
  }
  .title__line em {
    max-width: 370px;
    padding-top: 6rem;
    font-size: 2.4rem;
  }
}

.headline__datamobile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: left;
  margin-top: 4.5rem;
}
.headline__datamobile p {
  font: normal var(--font-weight-base) 1.8rem/1.4 var(--_font-default);
  color: var(--t-bright);
  margin-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .headline__datamobile {
    margin-top: 5.4rem;
    padding: 0 3rem;
    text-align: center;
  }
  .headline__datamobile p {
    max-width: 370px;
    margin: 0 auto;
    font-size: 2rem;
  }
  .headline__datamobile .btn {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .headline__datamobile {
    margin-top: 6.1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline__datamobile {
    display: none;
  }
}

.headline__btn {
  margin-top: 9.7rem;
}
@media only screen and (min-width: 768px) {
  .headline__btn {
    margin-top: 11.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .headline__btn {
    margin-top: 5.9rem;
    margin-bottom: 4.4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .headline__btn {
    margin-top: 11rem;
  }
}
@media only screen and (min-width: 1600px) {
  .headline__btn {
    margin-top: 10.1rem;
  }
}

.intro__btn {
  position: relative;
  padding: 0 2rem;
}
@media only screen and (min-width: 768px) {
  .intro__btn {
    padding: 0 5rem;
  }
}

.intro__btn-absolute {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .intro__btn-absolute {
    display: block;
    position: absolute;
    right: 5rem;
    bottom: 4.4rem;
  }
}

.main__media {
  position: relative;
}
.main__media.media-grid-bottom {
  padding-bottom: 2.5rem;
}
.main__media.media-stack-bottom {
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .main__media.media-grid-bottom {
    padding-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .main__media.media-grid-bottom {
    padding-bottom: 3.7rem;
  }
}
@media only screen and (min-width: 1400px) {
  .main__media.media-grid-bottom {
    padding-bottom: 4.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .main__media.media-grid-bottom {
    padding-bottom: 5.5rem;
  }
}

/* ------------------------------------------------*/
/* Sections Main End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Sections Inner Start */
/* ------------------------------------------------*/
.inner {
  position: relative;
}
.inner.inner-grid-bottom {
  padding: 11rem 0 2.5rem 0;
}
.inner.inner-stack {
  padding: 2.2rem 0 0.5rem 0;
}
.inner.inner-stack-bottom {
  padding: 11rem 0 0.5rem 0;
}
.inner.inner-type-bottom {
  padding: 11rem 0 2.2rem 0;
}
.inner.no-padding-top {
  padding-top: 0 !important;
}
.inner.no-padding-bottom {
  padding-bottom: 0 !important;
}
.inner.pre-no-padding-top {
  padding: 11rem 0 4.7rem 0;
}
@media only screen and (min-width: 768px) {
  .inner.inner-grid-bottom {
    padding: 16rem 0 3.5rem 0;
  }
  .inner.inner-stack {
    padding: 5.3rem 0 0.5rem 0;
  }
  .inner.inner-stack-bottom {
    padding: 16rem 0 0.5rem 0;
  }
  .inner.inner-type-bottom {
    padding: 16rem 0 2.9rem 0;
  }
  .inner.pre-no-padding-top {
    padding: 16rem 0 8.8rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .inner.inner-grid-bottom {
    padding: 16rem 0 3.7rem 0;
  }
  .inner.inner-stack {
    padding: 8.3rem 0 0.7rem 0;
  }
  .inner.inner-stack-bottom {
    padding: 16rem 0 0.7rem 0;
  }
  .inner.inner-type-bottom {
    padding: 16rem 0 3.1rem 0;
  }
  .inner.pre-no-padding-top {
    padding: 16rem 0 12rem 0;
  }
}
@media only screen and (min-width: 1400px) {
  .inner.inner-grid-bottom {
    padding: 18rem 0 4.5rem 0;
  }
  .inner.inner-stack {
    padding: 9.5rem 0 1.5rem 0;
  }
  .inner.inner-stack-bottom {
    padding: 18rem 0 1.5rem 0;
  }
  .inner.inner-type-bottom {
    padding: 18rem 0 3.9rem 0;
  }
  .inner.pre-no-padding-top {
    padding: 18rem 0 14rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .inner.inner-grid-bottom {
    padding: 21rem 0 5.5rem 0;
  }
  .inner.inner-stack {
    padding: 13.5rem 0 0.5rem 0;
  }
  .inner.inner-stack-bottom {
    padding: 21rem 0 0.5rem 0;
  }
  .inner.inner-type-bottom {
    padding: 21rem 0 4.8rem 0;
  }
  .inner.pre-no-padding-top {
    padding: 21rem 0 19rem 0;
  }
}

.inner__wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.inner__name {
  margin-bottom: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .inner__name {
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .inner__name {
    margin-bottom: 0;
    margin-top: 1.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .inner__name {
    margin-top: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .inner__name {
    margin-top: 2.6rem;
  }
}

.inner__content {
  position: relative;
  width: 100%;
}

.bottom__background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.bottom__background.bottom-bg-01 img, .bottom__background.bottom-bg-02 img, .bottom__background.bottom-bg-03 img {
  display: block;
  width: 100%;
  height: auto;
}

.bottom-bg__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(78%, rgba(var(--base-rgb), 0)), color-stop(97%, rgba(var(--base-rgb), 1)));
  background: -moz-linear-gradient(top, rgba(var(--base-rgb), 0) 78%, rgba(var(--base-rgb), 1) 97%);
  background: linear-gradient(to bottom, rgba(var(--base-rgb), 0) 78%, rgba(var(--base-rgb), 1) 97%);
}

.bottom-bg-01__01,
.bottom-bg-01__02,
.bottom-bg-02__01,
.bottom-bg-02__02,
.bottom-bg-03__01,
.bottom-bg-03__02 {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}

.bottom-bg-01__01 {
  bottom: 100px;
  right: -50px;
  width: 200px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-01__01 {
    bottom: 130px;
    right: -50px;
    width: 200px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-01__01 {
    bottom: 120px;
    right: -75px;
    width: 260px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-01__01 {
    bottom: 65px;
    right: -105px;
    width: 360px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-01__01 {
    bottom: 70px;
    right: -120px;
    width: 400px;
    height: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-01__01 {
    bottom: 80px;
    right: -150px;
    width: 510px;
    height: auto;
  }
}

.bottom-bg-01__02 {
  bottom: 140px;
  left: -30px;
  width: 100px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -50px;
    width: 150px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -60px;
    width: 170px;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -65px;
    width: 240px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-01__02 {
    bottom: 200px;
    left: -80px;
    width: 280px;
    height: auto;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-01__02 {
    bottom: 260px;
    left: -100px;
    width: 350px;
    height: auto;
  }
}

.bottom-bg-02__01 {
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-02__01 {
    bottom: -40px;
    right: -60px;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-02__01 {
    bottom: -50px;
    right: -70px;
    width: 230px;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-02__01 {
    width: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-02__01 {
    bottom: -60px;
    right: -80px;
    width: 340px;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-02__01 {
    width: 360px;
  }
}

.bottom-bg-02__02 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-02__02 {
    display: block;
    top: 50px;
    left: -35px;
    width: 140px;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-02__02 {
    top: 50px;
    left: -35px;
    width: 140px;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-02__02 {
    top: 50px;
    left: -60px;
    width: 240px;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-02__02 {
    top: 60px;
    left: -70px;
    width: 280px;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-02__02 {
    top: 60px;
    left: -75px;
    width: 300px;
  }
}

.bottom-bg-03__01 {
  bottom: 100px;
  right: -30px;
  width: 180px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-03__01 {
    bottom: 180px;
    right: -30px;
    width: 180px;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-03__01 {
    bottom: 150px;
    right: -30px;
    width: 180px;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-03__01 {
    bottom: 170px;
    right: -70px;
    width: 280px;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-03__01 {
    bottom: 170px;
    right: -80px;
    width: 320px;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-03__01 {
    bottom: 200px;
    right: -80px;
    width: 360px;
  }
}

.bottom-bg-03__02 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .bottom-bg-03__02 {
    display: block;
    top: auto;
    bottom: -30px;
    left: -100px;
    width: 240px;
  }
}
@media only screen and (min-width: 992px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -30px;
    left: -100px;
    width: 240px;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -50px;
    left: -150px;
    width: 360px;
  }
}
@media only screen and (min-width: 1400px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -60px;
    left: -170px;
    width: 400px;
  }
}
@media only screen and (min-width: 1600px) {
  .bottom-bg-03__02 {
    top: auto;
    bottom: -70px;
    left: -180px;
    width: 440px;
  }
}

/* ------------------------------------------------*/
/* Sections Inner End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Common Start */
/* ------------------------------------------------*/
.page-content {
  position: relative;
  width: 100%;
  min-width: 360px;
  height: auto;
  z-index: 3;
}

.fullheight-desktop {
  position: relative;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .fullheight-desktop {
    height: 100%;
  }
}

.grid-item {
  padding: 0 1rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .grid-item {
    padding: 0 1.5rem;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .grid-item {
    padding: 0 2.5rem;
    margin-top: 5rem;
  }
}

.grid-item-s {
  padding: 0 1rem;
  margin-top: 2rem;
}

.content__block {
  position: relative;
  padding: 0 2rem;
}
.content__block.no-padding {
  padding: 0;
}
.content__block.name-block {
  padding: 0 2rem;
}
.content__block.grid-block {
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .content__block {
    padding: 0 5rem;
  }
  .content__block.name-block {
    padding: 0 5rem;
  }
  .content__block.grid-block {
    padding: 0 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .content__block.name-block {
    padding: 0 0 0 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .content__block.grid-block {
    padding: 0 2.5rem;
  }
}

.content__block.section-title {
  margin-bottom: 4rem;
}
.content__block.section-grid-title {
  margin-bottom: 3.6rem;
}
.content__block.section-grid-text-title {
  margin-bottom: 4rem;
}
.content__block.section-stack-title {
  margin-bottom: 0;
}
.content__block.section-tagline-title {
  margin-bottom: 4.8rem;
}
.content__block.section-form-title {
  margin-bottom: 3.5rem;
}
.content__block.large-text-block {
  margin: 10.3rem 0 10.8rem 0;
}
.content__block.large-text-block.pre-stack {
  margin-bottom: 2.8rem;
}
.content__block.pre-grid-items {
  margin-bottom: 4.8rem;
}
.content__block.pre-text-items {
  margin-bottom: 6rem;
}
.content__block.pre-offcanvas-text-block {
  margin-bottom: 12.7rem;
}
.content__block.pre-offcanvas-grid-block {
  margin-bottom: 14rem;
}
.content__block.pre-stack-block {
  position: relative;
  z-index: 1000;
  margin-bottom: -2.4rem;
}
.content__block.pre-stack-text-block {
  position: relative;
  z-index: 1000;
  margin-bottom: -2rem;
}
@media only screen and (min-width: 768px) {
  .content__block.section-text-title {
    margin-bottom: 2.7rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 3.8rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 4.9rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 6rem;
  }
  .content__block.section-form-title {
    margin-bottom: 5.4rem;
  }
  .content__block.large-text-block {
    margin: 12.6rem 0 13.4rem 0;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 3.4rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 5.8rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 8rem;
  }
  .content__block.pre-offcanvas-text-block {
    margin-bottom: 17.8rem;
  }
  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 20rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -3.2rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -2.1rem;
  }
}
@media only screen and (min-width: 992px) {
  .content__block.section-text-title {
    margin-bottom: 3.4rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 4.5rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 5.6rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 6.7rem;
  }
  .content__block.section-form-title {
    margin-bottom: 6.1rem;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 3.4rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 6.5rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 8.7rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -2.5rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -1.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .content__block.section-text-title {
    margin-bottom: 3.9rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 4.2rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 5.6rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 6.3rem;
  }
  .content__block.section-form-title {
    margin-bottom: 6.1rem;
  }
  .content__block.large-text-block {
    margin: 14.3rem 0 15.2rem 0;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 5.2rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 7.5rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 8.6rem;
  }
  .content__block.pre-offcanvas-text-block {
    margin-bottom: 19.5rem;
  }
  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 22rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -2.8rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -1.4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .content__block.section-text-title {
    margin-bottom: 3.6rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 5rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 6.5rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 7rem;
  }
  .content__block.section-form-title {
    margin-bottom: 6.8rem;
  }
  .content__block.large-text-block {
    margin: 17rem 0 17.9rem 0;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 7rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 7.5rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 9.5rem;
  }
  .content__block.pre-offcanvas-text-block {
    margin-bottom: 22.2rem;
  }
  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 25rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -3rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -1.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .content__block.section-text-title {
    margin-bottom: 1.9rem;
  }
  .content__block.section-grid-title {
    margin-bottom: 3.5rem;
  }
  .content__block.section-grid-text-title {
    margin-bottom: 5.8rem;
  }
  .content__block.section-stack-title {
    margin-bottom: 0;
  }
  .content__block.section-tagline-title {
    margin-bottom: 7.3rem;
  }
  .content__block.section-form-title {
    margin-bottom: 7.9rem;
  }
  .content__block.large-text-block {
    margin: 16.3rem 0 17.6rem 0;
  }
  .content__block.large-text-block.pre-stack {
    margin-bottom: 6.6rem;
  }
  .content__block.pre-grid-items {
    margin-bottom: 7rem;
  }
  .content__block.pre-text-items {
    margin-bottom: 10.8rem;
  }
  .content__block.pre-offcanvas-text-block {
    margin-bottom: 26.2rem;
  }
  .content__block.pre-offcanvas-grid-block {
    margin-bottom: 30rem;
  }
  .content__block.pre-stack-block {
    margin-bottom: -2.5rem;
  }
  .content__block.pre-stack-text-block {
    margin-bottom: -0.2rem;
  }
}

.block__subtitle.grid-block-subtitle {
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .block__subtitle.grid-block-subtitle {
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .block__subtitle.grid-block-subtitle {
    padding: 0 2.5rem;
  }
}

.block__subtitle {
  margin-bottom: 6.3rem;
}
.block__subtitle.grid-block-subtitle {
  margin-bottom: 4.3rem;
}
@media only screen and (min-width: 768px) {
  .block__subtitle {
    margin-bottom: 8.3rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 5.3rem;
  }
}
@media only screen and (min-width: 992px) {
  .block__subtitle {
    margin-bottom: 9rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .block__subtitle {
    margin-bottom: 9rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .block__subtitle {
    margin-bottom: 9.9rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6.9rem;
  }
}
@media only screen and (min-width: 1600px) {
  .block__subtitle {
    margin-bottom: 11.3rem;
  }
  .block__subtitle.grid-block-subtitle {
    margin-bottom: 6.3rem;
  }
}

.fullheight-l {
  height: auto;
}
@media only screen and (min-width: 992px) {
  .fullheight-l {
    height: 100%;
  }
}

.divider {
  position: relative;
  width: 100%;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}

.divider-image,
.divider-video {
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
  height: 440px;
}
@media only screen and (min-width: 768px) {
  .divider-image,
  .divider-video {
    height: 500px;
  }
}
@media only screen and (min-width: 1400px) {
  .divider-image,
  .divider-video {
    height: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  .divider-image,
  .divider-video {
    height: 700px;
  }
}

.divider-image-xl,
.divider-video-xl {
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
  height: 440px;
}
@media only screen and (min-width: 768px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 500px;
  }
}
@media only screen and (min-width: 1200px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 600px;
  }
}
@media only screen and (min-width: 1400px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 700px;
  }
}
@media only screen and (min-width: 1600px) {
  .divider-image-xl,
  .divider-video-xl {
    height: 800px;
  }
}

.section-title__name {
  margin-bottom: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .section-title__name {
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section-title__name {
    margin-bottom: 0;
    margin-top: 1.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .section-title__name {
    margin-top: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .section-title__name {
    margin-top: 2.6rem;
  }
}

/* ------------------------------------------------*/
/* Blocks Common End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Header Start */
/* ------------------------------------------------*/
.header {
  position: fixed;
  bottom: 2rem;
  left: 7rem;
  width: 260px;
  z-index: 11;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media only screen and (min-width: 768px) {
  .header {
    bottom: 3rem;
    left: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header {
    position: fixed;
    top: 3rem;
    bottom: auto;
    left: -moz-calc(16.66666667% + 3rem);
    left: calc(16.66666667% + 3rem);
    background-color: rgba(0, 0, 0, 0);
    z-index: 9;
  }
}
@media only screen and (min-width: 1400px) {
  .header {
    position: fixed;
    top: 3rem;
    bottom: auto;
    left: -moz-calc(16.66666667% + 2.5rem);
    left: calc(16.66666667% + 2.5rem);
  }
}

.header__navigation {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .header__navigation {
    height: 4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .header__navigation {
    height: 5rem;
  }
}

.logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 2rem;
  left: 2rem;
  overflow: hidden;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .logo {
    top: 3rem;
    left: 5rem;
  }
}

.logo__link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo__link svg {
  width: auto;
  height: 4rem;
}

.logo__link img {
  width: 48px;
  height: 48px;
}
.logo__link span {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 1.4rem;
  padding-right: 1rem;
}
@media only screen and (min-width: 1400px) {
  .logo__link svg {
    height: 5rem;
  }
  .logo__link span {
    padding-left: 1.6rem;
  }
}

.color {
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  overflow: hidden;
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .color {
    top: 3rem;
    right: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .color {
    width: 5rem;
    height: 5rem;
  }
}

.color-switcher {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: var(--neutral-bright);
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1.8rem;
  height: 1.8rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .color-switcher {
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .color-switcher {
    width: 2.6rem;
    height: 2.6rem;
  }
}

.header-offset {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 8rem;
  background-color: var(--base);
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .header-offset {
    height: 8.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header-offset {
    height: 0;
  }
}

/* ------------------------------------------------*/
/* Blocks Header End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Menu Start */
/* ------------------------------------------------*/
.menu__list {
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .menu__list {
    height: 4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .menu__list {
    height: 5rem;
  }
}

.menu__item {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.menu__link {
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  color: var(--t-bright);
  white-space: nowrap;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__link.active {
  color: var(--t-opp-bright);
  background-color: var(--neutral-bright);
}
@media only screen and (min-width: 1200px) {
  .menu__link {
    width: auto;
    height: 4rem;
    padding: 0 2rem;
    font: normal var(--font-weight-medium) 1.6rem/4rem var(--_font-default);
    color: var(--t-medium);
  }
  .menu__link i {
    display: none;
  }
  .menu__link:hover {
    color: var(--t-bright);
  }
  .menu__link:hover .menu__caption {
    color: var(--t-bright);
  }
  .menu__link.active {
    color: var(--t-bright);
    background-color: transparent;
  }
  .menu__link.active .menu__caption {
    color: var(--t-bright);
    -moz-background-size: 0 1px, 100% 1px;
         background-size: 0 1px, 100% 1px;
  }
}
@media only screen and (min-width: 1400px) {
  .menu__link {
    height: 5rem;
    line-height: 5rem;
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .menu__link {
    font-size: 1.8rem;
  }
}

.menu__caption {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .menu__caption {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-decoration: none;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(var(--t-bright)), to(var(--t-bright)));
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), -moz-linear-gradient(left, var(--t-bright), var(--t-bright));
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, var(--t-bright), var(--t-bright));
    -moz-background-size: 100% 1px, 0 1px;
         background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: background-size 300ms, color 300ms;
    -moz-transition: background-size 300ms, color 300ms, -moz-background-size 300ms;
    transition: background-size 300ms, color 300ms;
    transition: background-size 300ms, color 300ms, -moz-background-size 300ms;
  }
}

/* ------------------------------------------------*/
/* Blocks Menu End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Footer Start */
/* ------------------------------------------------*/
.footer {
  position: relative;
  padding: 10.4rem 0 0 0;
  z-index: 3;
}
.footer.footer-marquee {
  padding: 12.2rem 0 0 0;
}
@media only screen and (min-width: 768px) {
  .footer {
    padding: 14.6rem 0 0 0;
  }
  .footer.footer-marquee {
    padding: 17.2rem 0 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .footer {
    padding: 16.1rem 0 9.8rem 0;
  }
  .footer.footer-marquee {
    padding: 19rem 0 4rem 0;
  }
}
@media only screen and (min-width: 1400px) {
  .footer {
    padding: 18.1rem 0 9.7rem 0;
  }
  .footer.footer-marquee {
    padding: 21.7rem 0 4rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .footer {
    padding: 21.2rem 0 11rem 0;
  }
  .footer.footer-marquee {
    padding: 25.6rem 0 4rem 0;
  }
}

.footer__link {
  position: relative;
  margin-bottom: 6.8rem;
}
@media only screen and (min-width: 992px) {
  .footer__link {
    margin-bottom: 7.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__link {
    margin-bottom: 8.2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer__link {
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .footer__link {
    margin-bottom: 8.5rem;
  }
}

.footer__text {
  font: normal 300 4.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .footer__text {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__text {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer__text {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  .footer__text {
    font-size: 14rem;
  }
}

.footer__btn {
  margin-top: 2.8rem;
}
@media only screen and (min-width: 768px) {
  .footer__btn {
    margin-top: 0;
  }
}

.footer__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.footer-logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-logo svg {
  width: 4rem;
  height: auto;
}
.footer-logo span {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 1.4rem;
}
@media only screen and (min-width: 1400px) {
  .footer-logo svg {
    width: 5rem;
  }
  .footer-logo span {
    padding-left: 1.6rem;
  }
}

/* ------------------------------------------------*/
/* Blocks Footer End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Blocks Popup Dialogs Start */
/* ------------------------------------------------*/
.popup {
  position: relative;
  background-color: var(--base);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  padding: 0;
  width: -moz-calc(100% - 4rem);
  width: calc(100% - 4rem);
  margin: 2rem auto;
  overflow: hidden;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
     -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
@media only screen and (min-width: 768px) {
  .popup {
    margin: 3rem auto;
    width: -moz-calc(100% - 10rem);
    width: calc(100% - 10rem);
  }
}
@media only screen and (min-width: 1600px) {
  .popup {
    max-width: 1620px;
  }
}

.project__block {
  padding: 0 2rem;
}
.project__block.no-padding {
  padding: 0;
}
.project__block.grid-block {
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .project__block {
    padding: 0 5rem;
  }
  .project__block.grid-block {
    padding: 0 3.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .project__block.grid-block {
    padding: 0 2.5rem;
  }
}

.project__block {
  margin-top: 6rem;
  margin-bottom: 5.9rem;
}
.project__block.pre-grid-items {
  margin-bottom: 3.9rem;
}
.project__block.grid-items {
  margin-top: 3.8rem;
}
.project__block.normal-size {
  margin-top: 6rem;
  margin-bottom: 6.8rem;
}
.project__block.small-size {
  margin: 2rem 0;
}
.project__block.no-margin {
  margin: 0;
}
.project__block.no-margin-bottom {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .project__block {
    margin-top: 8rem;
    margin-bottom: 7.9rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 4.9rem;
  }
  .project__block.grid-items {
    margin-top: 5rem;
  }
  .project__block.normal-size {
    margin-top: 8rem;
    margin-bottom: 8.8rem;
  }
  .project__block.small-size {
    margin: 5rem 0;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .project__block {
    margin-top: 8.7rem;
    margin-bottom: 8.6rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 5.6rem;
  }
  .project__block.grid-items {
    margin-top: 5.7rem;
  }
  .project__block.normal-size {
    margin-top: 8.7rem;
    margin-bottom: 9.5rem;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .project__block {
    margin-top: 8.2rem;
    margin-bottom: 8.6rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 5.6rem;
  }
  .project__block.grid-items {
    margin-top: 5.2rem;
  }
  .project__block.normal-size {
    margin-top: 9.5rem;
    margin-bottom: 9.5rem;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .project__block {
    margin-top: 9.1rem;
    margin-bottom: 9.4rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 6.5rem;
  }
  .project__block.grid-items {
    margin-top: 6.1rem;
  }
  .project__block.normal-size {
    margin-top: 10.5rem;
    margin-bottom: 10.5rem;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .project__block {
    margin-top: 10.4rem;
    margin-bottom: 10.7rem;
  }
  .project__block.pre-grid-items {
    margin-bottom: 5.7rem;
  }
  .project__block.grid-items {
    margin-top: 5.4rem;
  }
  .project__block.normal-size {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
  .project__block.no-margin-bottom {
    margin-bottom: 0;
  }
}

.project-image-bg {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  -moz-background-size: cover;
       background-size: cover;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .project-image-bg {
    height: auto;
  }
}

@media (orientation: landscape) {
  .project-image-bg__landscape {
    display: block;
  }
  .project-image-bg__portrait {
    display: none;
  }
}
@media (orientation: portrait) {
  .project-image-bg__portrait {
    display: block;
  }
  .project-image-bg__landscape {
    display: none;
  }
}
.project__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem 2rem;
}
@media only screen and (min-width: 768px) {
  .project__title {
    padding: 2.6rem 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .project__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.project__subtitle {
  margin-bottom: 2.8rem;
}
.project__subtitle.image-top-subtitle {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .project__subtitle {
    margin-bottom: 3.4rem;
  }
  .project__subtitle.image-top-subtitle {
    margin-bottom: 4.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .project__subtitle {
    margin-bottom: 0;
    padding-top: 0.4rem;
  }
  .project__subtitle.image-top-subtitle {
    margin-bottom: 0;
    padding-top: 0;
  }
}

.project__illustration,
.project__illustration-xl {
  position: relative;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}

.project__data {
  position: relative;
}

@media only screen and (min-width: 1600px) {
  .pdata__item {
    padding-top: 0.4rem;
  }
}

.project__feedback {
  position: relative;
  margin-bottom: 5.9rem;
}
@media only screen and (min-width: 768px) {
  .project__feedback {
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width: 992px) {
  .project__feedback {
    margin-bottom: 8.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .project__feedback {
    margin-bottom: 8.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .project__feedback {
    margin-bottom: 9.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .project__feedback {
    margin-bottom: 10.7rem;
  }
}

.fauthor__avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin-right: 2rem;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .fauthor__avatar {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 3rem;
  }
}

.fauthor__name {
  color: var(--t-bright);
}

.fauthor__position {
  margin-top: 0.6rem;
}
@media only screen and (min-width: 1600px) {
  .fauthor__position {
    margin-top: 0.8rem;
  }
}

.fauthor__rating {
  margin-top: 1.3rem;
}
.fauthor__rating i {
  display: block;
  margin-right: 1rem;
  font-size: 1.6rem;
  color: var(--t-bright);
}
.fauthor__rating i:last-of-type {
  margin-right: 0;
}
@media only screen and (min-width: 1400px) {
  .fauthor__rating i {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .fauthor__rating {
    margin-bottom: 0.4rem;
  }
  .fauthor__rating i {
    font-size: 2rem;
  }
}

.feedback__descr {
  margin-top: 2.8rem;
}
@media only screen and (min-width: 768px) {
  .feedback__descr {
    margin-top: 3.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .feedback__descr {
    margin-top: 3.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .feedback__descr {
    margin-top: 3.4rem;
  }
}

.project__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.mfp-wrap {
  position: fixed !important;
}

.mfp-fade {
  overflow: hidden;
}

.mfp-fade .mfp-container {
  position: fixed;
  overflow-y: scroll;
}

.mfp-bg {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.mfp-container {
  padding: 0;
}

.mfp-close-btn-in .mfp-close {
  width: 4rem;
  height: 4rem;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  border: 1px solid var(--t-per-bright-dark);
  right: 3rem;
  top: 3rem;
  opacity: 1;
  padding: 0;
  font: inherit;
  color: var(--t-per-bright-dark);
  font-size: 1.8rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mfp-close-btn-in .mfp-close::before {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Phosphor";
  content: "\eddb";
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.mfp-close-btn-in .mfp-close.permanent-dark {
  border: 1px solid var(--t-per-bright-dark);
  background-color: var(--t-per-bright-dark);
  color: var(--t-per-bright-light);
}
.mfp-close-btn-in .mfp-close.permanent-light {
  border: 1px solid var(--t-per-bright-light);
  background-color: var(--t-per-bright-light);
  color: var(--t-per-bright-dark);
}
@media only screen and (min-width: 1200px) {
  .mfp-close-btn-in .mfp-close.permanent-dark {
    border: 1px solid var(--t-per-bright-dark);
    background-color: transparent;
    color: var(--t-per-bright-dark);
  }
  .mfp-close-btn-in .mfp-close.permanent-light {
    border: 1px solid var(--t-per-bright-light);
    background-color: transparent;
    color: var(--t-per-bright-light);
  }
  .no-touch .mfp-close-btn-in .mfp-close:hover.permanent-dark {
    border: 1px solid var(--t-per-bright-dark);
    background-color: var(--t-per-bright-dark);
    color: var(--neutral-white);
  }
  .no-touch .mfp-close-btn-in .mfp-close:hover.permanent-light {
    border: 1px solid var(--t-per-bright-light);
    background-color: var(--t-per-bright-light);
    color: var(--t-per-bright-dark);
  }
}
@media only screen and (min-width: 1400px) {
  .mfp-close-btn-in .mfp-close {
    width: 5rem;
    height: 5rem;
  }
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transform: translateY(3rem);
     -moz-transform: translateY(3rem);
      -ms-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: all 0.3s var(--_animbezier);
  -moz-transition: all 0.3s var(--_animbezier);
  transition: all 0.3s var(--_animbezier);
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transform: translateY(3rem);
     -moz-transform: translateY(3rem);
      -ms-transform: translateY(3rem);
          transform: translateY(3rem);
}

/* ------------------------------------------------*/
/* Blocks Popup Dialogs End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Marquee Start */
/* ------------------------------------------------*/
.items {
  max-width: 100%;
  overflow: hidden;
}

.items--gsap {
  color: #fff;
}

.items--gsap .items__container {
  translate: -moz-calc(-100% + 100vw) !important;
  translate: calc(-100% + 100vw) !important;
}

.items__caption {
  max-width: 50vw;
  padding: 0 1.5rem;
}

.items__container {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.items .item {
  margin-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .items .item {
    margin-right: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .items .item {
    margin-right: 5rem;
  }
}

.item {
  position: relative;
  width: 45vw;
  height: auto;
  background-color: var(--base);
  -moz-border-radius: 20px;
       border-radius: 20px;
  overflow: hidden;
  color: var(--t-bright);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-animation: animateZ 1s infinite;
     -moz-animation: animateZ 1s infinite;
          animation: animateZ 1s infinite;
}
.item.item-regular {
  width: auto;
  -moz-border-radius: 0;
       border-radius: 0;
  gap: 0;
  background-color: transparent;
  color: var(--t-bright);
  -webkit-animation: animateZ 1s infinite;
     -moz-animation: animateZ 1s infinite;
          animation: animateZ 1s infinite;
}
.item.icon {
  border: 1px solid var(--stroke-elements);
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.item.icon svg,
.item.icon img {
  display: block;
  height: 70px;
  width: auto;
}
.item.image {
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
       background-size: cover;
}
.item.image img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .item.icon svg,
  .item.icon img {
    height: 120px;
  }
}
@media only screen and (min-width: 992px) {
  .item {
    width: 30vw;
  }
}
@media only screen and (min-width: 1200px) {
  .item {
    width: 25vw;
  }
}
@media only screen and (min-width: 1600px) {
  .item {
    width: 20vw;
  }
  .item.icon svg,
  .item.icon img {
    height: 140px;
  }
}

.item__text {
  margin-right: 2rem;
}
.item__text.text-with-gliph {
  margin-right: 0;
}
.item__text.text-with-gliph::after {
  content: "/";
  display: inline;
  padding-left: 2rem;
}
@media only screen and (min-width: 768px) {
  .item__text {
    margin-right: 3rem;
  }
  .item__text.text-with-gliph::after {
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .item__text {
    margin-right: 5rem;
  }
  .item__text.text-with-gliph::after {
    padding-left: 5rem;
  }
}

.item__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4rem;
  height: 4rem;
}
@media only screen and (min-width: 768px) {
  .item__image {
    width: 7rem;
    height: 7rem;
  }
}
@media only screen and (min-width: 1400px) {
  .item__image {
    width: 8rem;
    height: 8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .item__image {
    width: 11rem;
    height: 11rem;
  }
}

.item__image img,
.item__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item__text {
  font: normal 300 4.6rem var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .item__text {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .item__text {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  .item__text {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  .item__text {
    font-size: 14rem;
  }
}

@-webkit-keyframes toLeft {
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@-moz-keyframes toLeft {
  to {
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
}

@keyframes toLeft {
  to {
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes toRight {
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes toRight {
  to {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@keyframes toRight {
  to {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes animateZ {
  to {
    -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
  }
}
@-moz-keyframes animateZ {
  to {
    -moz-transform: translateZ(1px);
         transform: translateZ(1px);
  }
}
@keyframes animateZ {
  to {
    -webkit-transform: translateZ(1px);
       -moz-transform: translateZ(1px);
            transform: translateZ(1px);
  }
}
/* ------------------------------------------------*/
/* Features Marquee End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features About Start */
/* ------------------------------------------------*/
.about-descr,
.about-info {
  padding-top: 2.8rem;
}
.about-descr.pre-grid,
.about-info.pre-grid {
  padding-top: 3.7rem;
}
.about-descr.pre-title,
.about-info.pre-title {
  padding-top: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .about-descr,
  .about-info {
    padding-top: 0;
  }
  .about-descr.pre-title,
  .about-info.pre-title {
    padding-top: 0rem;
  }
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 4.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .about-descr.pre-grid,
  .about-info.pre-grid {
    padding-top: 5.4rem;
  }
}

.about-descr__text {
  margin-bottom: 2.1rem;
}
.about-descr__text:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .about-descr__text {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-descr__text {
    margin-bottom: 2.8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .about-descr__text {
    margin-bottom: 2.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .about-descr__text {
    margin-bottom: 3.2rem;
  }
}

.about-descr__btnholder {
  margin-top: 3.2rem;
}
@media only screen and (min-width: 768px) {
  .about-descr__btnholder {
    margin-top: 4.1rem;
  }
}
@media only screen and (min-width: 1400px) {
  .about-descr__btnholder {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .about-descr__btnholder {
    margin-top: 4.7rem;
  }
}

.about-info__item {
  margin-bottom: 2rem;
}
.about-info__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .about-info__item {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-info__item {
    margin-bottom: 2.8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .about-info__item {
    margin-bottom: 2.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .about-info__item {
    margin-bottom: 3.2rem;
  }
}

/* ------------------------------------------------*/
/* Features About End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Gallery Start */
/* ------------------------------------------------*/
.inner__gallery {
  position: relative;
}

.gallery__btn {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 1rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .gallery__btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    padding: 0 1.5rem;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .gallery__btn {
    padding: 0 2.5rem;
  }
}

.gallery__item {
  position: relative;
  cursor: pointer;
}

.gallery__link {
  display: block;
  position: relative;
  overflow: hidden;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
}
.gallery__link .picture {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 112%;
  height: 112%;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-transition: background-position 0.5s;
  -moz-transition: background-position 0.5s;
  transition: background-position 0.5s;
  -webkit-transition: opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier), -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier), -webkit-transform 0.7s ease-in-out;
  -moz-transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier), -moz-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier);
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out, width 0.3s var(--_animbezier), height 0.3s var(--_animbezier), -webkit-transform 0.7s ease-in-out, -moz-transform 0.7s ease-in-out;
}
@media only screen and (min-width: 1200px) {
  .gallery__link {
    -webkit-transform: scale3d(1, 1, 1);
       -moz-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s var(--_animbezier);
    transition: -webkit-transform 0.3s var(--_animbezier);
    -moz-transition: transform 0.3s var(--_animbezier), -moz-transform 0.3s var(--_animbezier);
    transition: transform 0.3s var(--_animbezier);
    transition: transform 0.3s var(--_animbezier), -webkit-transform 0.3s var(--_animbezier), -moz-transform 0.3s var(--_animbezier);
  }
  .no-touch .gallery__link:hover .picture {
    width: 100%;
    height: 100%;
  }
}

.gallery__image {
  opacity: 0;
}

.gallery__descr {
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  width: -moz-calc(100% - 1.5rem);
  width: calc(100% - 1.5rem);
  padding: 1.875rem;
}
.gallery__descr h5,
.gallery__descr p {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .gallery__descr {
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    width: -moz-calc(100% - 2.5rem);
    width: calc(100% - 2.5rem);
  }
}

.pswp__bg {
  background: var(--per-base);
}

.pswp__top-bar,
.pswp__ui--fit .pswp__top-bar {
  height: 74px;
  padding: 1.5rem;
  background-color: transparent;
}

.pswp__counter {
  left: 1.5rem;
  top: 1.5rem;
  padding: 0 1.4rem;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: rgba(0, 0, 0, 0.6);
  font: normal 400 1.8rem/44px var(--_font-default);
  font-variant-numeric: lining-nums;
  color: var(--t-per-bright-light);
  opacity: 1;
}
.pswp__counter:active {
  opacity: 1;
}

.pswp__caption,
.pswp__ui--fit .pswp__caption {
  padding: 1.5rem;
  background-color: transparent;
}

.pswp__caption__center {
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  padding: 2.6rem 3rem;
  background-color: rgba(0, 0, 0, 0.6);
}
.pswp__caption__center h5 {
  font: normal 500 2.4rem var(--_font-accent);
  color: var(--t-per-bright-light);
  margin-bottom: 1.8rem;
  letter-spacing: normal;
}
.pswp__caption__center h5 small {
  display: block;
  font: normal 400 1.6rem var(--_font-default);
  color: var(--t-per-medium-light);
  margin-top: 0.4rem;
}
.pswp__caption__center p {
  font: normal 300 1.8rem/1.4 var(--_font-default);
  color: var(--t-per-bright-light);
}
@media only screen and (min-width: 1200px) {
  .pswp__caption__center {
    max-width: 600px;
  }
}

.pswp__button {
  background-color: var(--per-base);
  border: 1px solid var(--per-stroke-elements);
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  opacity: 1;
}
.pswp__button:active {
  opacity: 1;
}

.pswp__button--zoom,
.pswp__button--fs,
.pswp__button--share {
  margin-right: 1rem;
}

.pswp__button--close {
  position: relative;
  background-color: var(--neutral-white);
  border: none;
  opacity: 1;
}
.pswp__button--close:active {
  opacity: 1;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  width: 74px;
  opacity: 1;
  border: none;
  background-color: transparent;
}

.pswp__button--arrow--left::before,
.pswp__button--arrow--right::before {
  top: 28px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: var(--neutral-white);
  color: var(--t-per-bright-dark);
  font-size: 1.6rem;
}

.pswp__button--arrow--left:before {
  left: 1.5rem;
  background-position: -132px -44px;
}

.pswp__button--arrow--right:before {
  right: 1.5rem;
  background-position: -88px -44px;
}

/* ------------------------------------------------*/
/* Features Gallery End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Achievements Start */
/* ------------------------------------------------*/
.numblock {
  padding: 1rem 1.25rem;
  margin-right: 1rem;
  border: 1px solid var(--stroke-elements);
  background-color: var(--base);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
}
.numblock:last-of-type {
  margin-right: 0;
}

.numblock__number {
  display: block;
  font: normal 700 2.25rem/1 var(--_font-accent);
  font-variant-numeric: lining-nums;
  color: var(--t-bright);
}

.numblock__descr {
  font: normal 700 -moz-calc(var(--_size) * 0.938)/1.2 var(--_font-default);
  font: normal 700 calc(var(--_size) * 0.938)/1.2 var(--_font-default);
  color: var(--t-muted);
  margin-top: 0.375rem;
}
@media only screen and (min-width: 768px) {
  .numblock__descr {
    margin-top: 0;
    margin-left: 0.375rem;
  }
}

.achievements__item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .achievements__item {
    width: 33.33333334%;
  }
}

.achievements__card {
  height: 100%;
  padding: 3rem;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  text-align: center;
}
@media only screen and (min-width: 1600px) {
  .achievements__card {
    padding: 5rem 3rem;
  }
}

.achievements__number {
  font: normal 300 4.6rem/0.8 var(--_font-accent);
  font-variant-numeric: lining-nums;
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .achievements__number {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .achievements__number {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  .achievements__number {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  .achievements__number {
    font-size: 12rem;
  }
}

.achievements__descr {
  font: normal 400 1.8rem var(--_font-default);
  color: var(--t-bright);
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .achievements__descr {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .achievements__descr {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .achievements__descr {
    font-size: 2.6rem;
  }
}

/* ------------------------------------------------*/
/* Features Achievements End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Stacking Cards Start */
/* ------------------------------------------------*/
.stack-wrapper {
  position: relative;
  width: 100%;
}

.stack-offset {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 8rem;
  background-color: var(--base);
}
.stack-offset.solid-block {
  height: 8rem;
}
@media only screen and (min-width: 768px) {
  .stack-offset {
    height: 10rem;
  }
  .stack-offset.solid-block {
    height: 10rem;
  }
}
@media only screen and (min-width: 992px) {
  .stack-offset {
    height: 10rem;
  }
  .stack-offset.solid-block {
    height: 10rem;
  }
}
@media only screen and (min-width: 1200px) {
  .stack-offset.solid-block {
    height: 10rem;
  }
}
@media only screen and (min-width: 1400px) {
  .stack-offset {
    height: 11rem;
  }
  .stack-offset.solid-block {
    height: 11rem;
  }
}
@media only screen and (min-width: 1600px) {
  .stack-offset.solid-block {
    height: 11rem;
  }
}

.services-stack {
  width: 100%;
  position: relative;
  height: 65vh;
  min-height: 615px;
}
@media only screen and (min-width: 768px) {
  .services-stack {
    height: 500px;
    min-height: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .services-stack {
    height: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  .services-stack {
    height: 700px;
  }
}

.portfolio-stack {
  width: 100%;
  position: relative;
  height: 460px;
}
@media only screen and (min-width: 768px) {
  .portfolio-stack {
    height: 530px;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio-stack {
    height: 630px;
  }
}
@media only screen and (min-width: 1600px) {
  .portfolio-stack {
    height: 750px;
  }
}

.stack-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .stack-item {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .stack-item {
    padding-bottom: 5rem;
  }
}

.services-stack__inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
}

.services-stack__title {
  padding: 2.6rem 3rem 0 3rem;
  margin-bottom: 2.3rem;
}
@media only screen and (min-width: 768px) {
  .services-stack__title {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 60%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .services-stack__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services-stack__descr {
  padding: 0 3rem;
  margin-bottom: 2.3rem;
}
.services-stack__descr i {
  display: inline-block;
  font-size: 5.4rem;
  color: var(--t-bright);
  margin-bottom: 2.3rem;
  margin-left: -0.2rem;
}
@media only screen and (min-width: 768px) {
  .services-stack__descr {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    margin-bottom: 0;
    padding: 2.6rem 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .services-stack__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services-stack__image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 3rem;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.services-stack__image .service-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-stack__image .service-img-m {
  display: none;
}
@media only screen and (min-width: 768px) {
  .services-stack__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-left: 0;
  }
  .services-stack__image .service-img {
    position: absolute;
    right: -10%;
    bottom: 0;
    height: 100%;
    width: auto;
  }
  .services-stack__image .service-img-s {
    display: none;
  }
  .services-stack__image .service-img-m {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .services-stack__image .service-img {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.portfolio-stack__inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
       background-size: cover;
}

.portfolio-stack__descr {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem 3rem;
}
@media only screen and (min-width: 768px) {
  .portfolio-stack__descr {
    display: block;
    width: 60%;
    padding: 2.6rem 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .portfolio-stack__descr {
    width: 40%;
    padding: 4rem 5rem 4.6rem 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .portfolio-stack__descr {
    width: 33.3334%;
  }
}

.portfolio-stack__title {
  color: var(--t-per-bright-light);
}
.portfolio-stack__title.dark {
  color: var(--t-per-bright-dark);
  font-weight: 400;
}
.portfolio-stack__title.light {
  color: var(--neutral-white);
  font-weight: 300;
}

.portfolio-stack__text {
  margin-top: 3rem;
  font-weight: 300;
  color: var(--t-per-bright-light);
}
.portfolio-stack__text.dark {
  font-weight: 400;
  color: var(--t-per-bright-dark);
}
@media only screen and (min-width: 1400px) {
  .portfolio-stack__text {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------*/
/* Features Stacking Cards End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Services Start */
/* ------------------------------------------------*/
.services {
  position: relative;
}

.services__item {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .services__item {
    height: 500px;
  }
}
@media only screen and (min-width: 1400px) {
  .services__item {
    height: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  .services__item {
    height: 700px;
  }
}

.services__card {
  position: relative;
  height: 100%;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}

.services__title {
  padding: 2.6rem 3rem 0 3rem;
  margin-bottom: 2.3rem;
}
@media only screen and (min-width: 768px) {
  .services__title {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 60%;
    z-index: 2;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .services__title {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.services__descr {
  padding: 0 3rem;
  margin-bottom: 2.3rem;
}
.services__descr i {
  display: inline-block;
  font-size: 5.4rem;
  color: var(--t-bright);
  margin-bottom: 2.3rem;
  margin-left: -0.2rem;
}
@media only screen and (min-width: 768px) {
  .services__descr {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    z-index: 2;
    margin-bottom: 0;
    padding: 2.6rem 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .services__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

@media only screen and (min-width: 768px) {
  .services__text {
    margin-bottom: 0;
  }
}

.services__image {
  padding-left: 3rem;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.services__image .service-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__image .service-img-m {
  display: none;
}
@media only screen and (min-width: 768px) {
  .services__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding-left: 0;
  }
  .services__image .service-img {
    position: absolute;
    right: -10%;
    bottom: 0;
    height: 100%;
    width: auto;
  }
  .services__image .service-img-s {
    display: none;
  }
  .services__image .service-img-m {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .services__image .service-img {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.cards {
  position: relative;
}

.cards__item {
  position: relative;
  overflow: hidden;
}

.cards__card {
  height: 100%;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}

.cards__descr {
  padding: 2.6rem 3rem;
}
@media only screen and (min-width: 1400px) {
  .cards__descr {
    padding: 4rem 5rem 4.6rem 5rem;
  }
}

.cards__text {
  margin-top: 3rem;
}
@media only screen and (min-width: 1400px) {
  .cards__text {
    margin-top: 4rem;
  }
}

.cards__image {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -moz-border-radius-topleft: var(--_radius);
       border-top-left-radius: var(--_radius);
  -moz-border-radius-topright: var(--_radius);
       border-top-right-radius: var(--_radius);
}
.cards__image img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}

.cards__image-v2 {
  padding-left: 3rem;
}
@media only screen and (min-width: 1400px) {
  .cards__image-v2 {
    padding-left: 5rem;
  }
}

/* ------------------------------------------------*/
/* Features Services End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Resume Start */
/* ------------------------------------------------*/
.resume-lines,
.resume-lines-number {
  position: relative;
}

.resume-lines__item,
.resume-lines-number__item {
  padding: 4.3rem 0 4.1rem 0;
}
@media only screen and (min-width: 1600px) {
  .resume-lines__item,
  .resume-lines-number__item {
    padding: 5rem 0 4.8rem 0;
  }
}

.resume-divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.resume-lines__date {
  margin-bottom: 1.9rem;
}
@media only screen and (min-width: 768px) {
  .resume-lines__date {
    margin-bottom: 0;
  }
}

.resume-lines-number__date {
  margin-top: 2.6rem;
}
@media only screen and (min-width: 768px) {
  .resume-lines-number__date {
    margin-top: 0;
  }
}

.resume-lines__title,
.resume-lines__source {
  padding-right: 3rem;
}
@media only screen and (min-width: 1600px) {
  .resume-lines__title,
  .resume-lines__source {
    padding-right: 5rem;
  }
}

@media only screen and (min-width: 768px) {
  .resume-lines-number__title,
  .resume-lines-number__source {
    padding-right: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .resume-lines-number__title,
  .resume-lines-number__source {
    padding-right: 5rem;
  }
}

.resume-lines__title {
  margin-bottom: 0.6rem;
}

.resume-lines__source,
.resume-lines-number__source {
  display: inline-block;
}

.resume-lines__descr {
  margin-top: 2.3rem;
}
@media only screen and (min-width: 768px) {
  .resume-lines__descr {
    margin-top: 0;
  }
}

.resume-lines-number__descr {
  margin-bottom: 2.4rem;
}

/* ------------------------------------------------*/
/* Features Resume End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Tools Start */
/* ------------------------------------------------*/
.tools-cards__item {
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .tools-cards__item {
    width: 33.33333334%;
  }
}
@media only screen and (min-width: 992px) {
  .tools-cards__item {
    width: 25%;
  }
}

.tools-cards__card {
  position: relative;
  width: 100%;
  padding: 3rem;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  text-align: center;
}
@media only screen and (min-width: 1600px) {
  .tools-cards__card {
    padding: 5rem 3rem;
  }
}

.tools-cards__icon {
  width: auto;
  height: 6rem;
  margin: 0 auto;
}
@media only screen and (min-width: 1400px) {
  .tools-cards__icon {
    height: 7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .tools-cards__icon {
    height: 9rem;
  }
}

.tools-cards__caption {
  line-height: 1;
  margin-top: 1.5rem;
}

.tools-card {
  padding: 3rem;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius-xl);
       border-radius: var(--_radius-xl);
  overflow: hidden;
}

.tools-card__icon {
  width: auto;
  height: 60px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .tools-card__icon {
    height: 90px;
  }
}

.tools-card__caption {
  line-height: 1;
  margin-top: 1.5rem;
}

/* ------------------------------------------------*/
/* Features Tools End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Testimonials Start */
/* ------------------------------------------------*/
.testimonials-card {
  padding: 3rem;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
}
@media only screen and (min-width: 992px) {
  .testimonials-card {
    height: 500px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-card {
    padding: 5rem;
    height: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  .testimonials-card {
    height: 700px;
  }
}

.testimonials-card__tdata {
  position: relative;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  .testimonials-card__tdata {
    height: 100%;
    padding-right: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-card__tdata {
    padding-right: 2.5rem;
  }
}

.testimonials-card__timage {
  position: relative;
  padding-left: 0;
}
@media only screen and (min-width: 992px) {
  .testimonials-card__timage {
    height: 100%;
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-card__timage {
    padding-left: 2.5rem;
  }
}

.timage__inner {
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}
.timage__inner img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials-card__descr {
  max-width: 1050px;
  margin-top: 2.8rem;
}
@media only screen and (min-width: 768px) {
  .testimonials-card__descr {
    margin-top: 3.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonials-card__descr {
    margin-top: 3.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonials-card__descr {
    margin-top: 3.4rem;
  }
}

.testimonials-card__btnholder {
  margin-top: 2.2rem;
  margin-bottom: 3.3rem;
}
@media only screen and (min-width: 768px) {
  .testimonials-card__btnholder {
    margin-top: 3.2rem;
    margin-bottom: 4.2rem;
  }
}
@media only screen and (min-width: 992px) {
  .testimonials-card__btnholder {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
  }
}

.tauthor__avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  margin-right: 2rem;
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .tauthor__avatar {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 3rem;
  }
}

.tauthor__name {
  color: var(--t-bright);
}

.tauthor__position {
  margin-top: 0.6rem;
}
@media only screen and (min-width: 1600px) {
  .tauthor__position {
    margin-top: 0.8rem;
  }
}

.tauthor__rating {
  margin-top: 1.3rem;
}
.tauthor__rating i {
  display: block;
  margin-right: 1rem;
  font-size: 1.6rem;
  color: var(--t-bright);
}
.tauthor__rating i:last-of-type {
  margin-right: 0;
}
@media only screen and (min-width: 1400px) {
  .tauthor__rating i {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .tauthor__rating {
    margin-bottom: 0.4rem;
  }
  .tauthor__rating i {
    font-size: 2rem;
  }
}

/* ------------------------------------------------*/
/* Features Testimonials End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Slider Start */
/* ------------------------------------------------*/
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.swiper-testimonials {
  padding-bottom: 4.8rem;
}
@media only screen and (min-width: 1200px) {
  .swiper-testimonials {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .swiper-testimonials {
    padding-bottom: 7.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .swiper-testimonials {
    padding-bottom: 7.6rem;
  }
}

.mxd-swiper-pagination-fraction {
  width: auto;
  top: auto;
  bottom: 0;
  left: auto;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 3rem;
  font: normal 400 1.8rem/1 var(--_font-default);
  color: var(--t-bright);
}
@media only screen and (min-width: 1200px) {
  .mxd-swiper-pagination-fraction {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .mxd-swiper-pagination-fraction {
    padding-top: 5rem;
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-swiper-pagination-fraction {
    font-size: 2.6rem;
  }
}

.mxd-slider-btn {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: auto;
  width: auto;
  height: auto;
  margin: 0;
}
.mxd-slider-btn::after {
  display: none;
}
.mxd-slider-btn .btn .btn-caption {
  display: none;
}
@media only screen and (min-width: 768px) {
  .mxd-slider-btn .btn .btn-caption {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
  }
}

.mxd-slider-btn-square-prev {
  padding-left: 3rem;
  left: 0;
}
@media only screen and (min-width: 1400px) {
  .mxd-slider-btn-square-prev {
    padding-left: 5rem;
  }
}

.mxd-slider-btn-square-next {
  padding-right: 3rem;
  right: 0;
}
@media only screen and (min-width: 1400px) {
  .mxd-slider-btn-square-next {
    padding-right: 5rem;
  }
}

/* ------------------------------------------------*/
/* Features Slider End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Socials Start */
/* ------------------------------------------------*/
/* Socials Cards */
.socials-cards {
  position: relative;
}

.socials-cards__item {
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .socials-cards__item {
    width: 33.33333334%;
  }
}
@media only screen and (min-width: 992px) {
  .socials-cards__item {
    width: 20%;
  }
}

.socials-cards__link {
  position: relative;
  width: 100%;
  height: auto;
  padding: 2.6rem 0;
  background-color: var(--base);
  border: 1px solid var(--stroke-elements);
  -moz-border-radius: var(--_radius);
       border-radius: var(--_radius);
  overflow: hidden;
}
.socials-cards__link em {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: var(--t-bright);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.socials-cards__link i {
  position: relative;
  display: block;
  font-size: 7rem;
  line-height: 1;
  color: var(--t-bright);
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: color 0.3s 0s, -webkit-transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, -webkit-transform 0.3s 0.1s ease-in-out;
  -moz-transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out;
  transition: color 0.3s 0s, transform 0.3s 0.1s ease-in-out, -webkit-transform 0.3s 0.1s ease-in-out, -moz-transform 0.3s 0.1s ease-in-out;
  will-change: transform;
}
.no-touch .socials-cards__link:hover {
  color: var(--t-opp-bright);
  background-color: var(--t-bright);
  -webkit-transition: color 0.3s 0s, background-color 0.3s 0.24s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s, -webkit-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out;
  -moz-transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s, transform 0.3s ease-in-out, -moz-box-shadow 0.5s, -moz-transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s, transform 0.3s ease-in-out;
  transition: color 0.3s 0s, background-color 0.3s 0.24s, box-shadow 0.5s, transform 0.3s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}
.no-touch .socials-cards__link:hover i {
  color: var(--t-opp-bright);
  -webkit-transform: scale3d(0.96, 0.96, 1);
     -moz-transform: scale3d(0.96, 0.96, 1);
          transform: scale3d(0.96, 0.96, 1);
}
.no-touch .socials-cards__link:hover em {
  width: 225%;
  height: 40.95rem;
}
@media only screen and (min-width: 1400px) {
  .socials-cards__link i {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .socials-cards__link {
    padding: 4rem 0;
  }
  .socials-cards__link i {
    font-size: 10rem;
  }
}

/* Socials Lines */
.socials-lines {
  position: relative;
}

.socials-lines__item {
  position: relative;
  display: block;
}

.socials-lines__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-elements);
}

.socials-lines__link {
  position: relative;
  padding: 3rem 0.4rem;
  color: var(--t-bright);
  overflow: hidden;
}
.socials-lines__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 0;
  background: var(--t-bright);
  -webkit-transition: height var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: height var(--_animspeed-medium) var(--_animbezier);
  transition: height var(--_animspeed-medium) var(--_animbezier);
}
.socials-lines__link h4,
.socials-lines__link i {
  color: var(--t-bright);
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}
@media only screen and (min-width: 768px) {
  .socials-lines__link {
    padding: 5rem 0.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .no-touch .socials-lines__link:hover::before {
    height: 100%;
  }
  .no-touch .socials-lines__link:hover h4 {
    -webkit-transform: translate(5rem, 0px) !important;
       -moz-transform: translate(5rem, 0px) !important;
        -ms-transform: translate(5rem, 0px) !important;
            transform: translate(5rem, 0px) !important;
  }
  .no-touch .socials-lines__link:hover i {
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .no-touch .socials-lines__link:hover h4,
  .no-touch .socials-lines__link:hover i {
    color: var(--t-opp-bright);
  }
}

.socials-lines__icon {
  font-size: 3rem;
}
@media only screen and (min-width: 1400px) {
  .socials-lines__icon {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .socials-lines__icon {
    font-size: 4rem;
  }
}

/* ------------------------------------------------*/
/* Features Socials End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Features Contact Data Start */
/* ------------------------------------------------*/
.contact-data__item {
  margin-bottom: 3.2rem;
}
.contact-data__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .contact-data__item {
    margin-bottom: 4.3rem;
  }
  .contact-data__item:nth-of-type(3), .contact-data__item:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .contact-data__item {
    margin-bottom: 0;
  }
}

.contact-data__title {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .contact-data__title {
    margin-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-data__title {
    margin-bottom: 3.4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .contact-data__title {
    margin-bottom: 4.2rem;
  }
}

/* ------------------------------------------------*/
/* Features Contact Data End */
/* ------------------------------------------------*/