/* ==========================================================================
Variables & FONTS SASS-CSS
========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&family=PT+Serif:ital,wght@0,700;1,700&display=swap");
@import url(../lib/bootstrap/css/bootstrap.min.css);
@import url(../lib/aos/aos.css);
@import url(../lib/slick/slick.css);
@import url(../lib/slick/slick-theme.css);
:root {
  font-size: 16px; }

/* ==========================================================================
   Typography Variables & Colors Variables
   ========================================================================== */
.container {
  /*
    	@include for-desktop-up-special { 
  		max-width: 1380px !important;
  	}
  	@include for-desktop-up-special-dos {
  		max-width: 1470px !important;
  	}
    	@include for-big-desktop-up {
  		max-width: 1470px !important;
  	}
      @include for-big-desktop-up-special {
          max-width: 1470px !important;
      }
      @include for-big-desktop-up-special-dos {
          max-width: 1470px !important;
      }
      */ }
  @media (min-width: 1200px) {
    .container {
      max-width: 1190px; } }

/* ==========================================================================
Layout SASS-CSS
========================================================================== */
::-moz-selection {
  /* Code for Firefox */
  background: #c4003e;
  color: white; }

::selection {
  background: #c4003e;
  color: white; }

@keyframes fadein {
  0% {
    opacity: 0;
    transform: rotate(0deg); }
  66% {
    opacity: 0;
    transform: rotate(90deg); }
  100% {
    opacity: 1;
    transform: rotate(360deg); } }
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    transform: rotate(0deg); }
  66% {
    opacity: 0;
    transform: rotate(90deg); }
  100% {
    opacity: 1;
    transform: rotate(360deg); } }
.only-phone {
  display: none !important; }
  @media (max-width: 767px) {
    .only-phone {
      display: block !important; } }

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/*
.container {
  max-width: 1470px;
}
*/
/* generic */
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.6s forwards;
  animation-delay: 0.2s;
  opacity: 0; }
  @media (max-width: 767px) {
    body {
      padding-top: 0px; } }
  body.no-scroll {
    overflow: hidden; }

html a, body a {
  transition: all 0.2s ease;
  color: black;
  text-decoration: none; }
html a:active, html a:focus, html a:hover, body a:active, body a:focus, body a:hover {
  text-decoration: none !important;
  outline: none;
  color: #c4003e; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0; }

h1 {
  font-family: "PT Serif", serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 2.875rem; }

h2 {
  font-family: "PT Serif", serif;
  font-weight: 600; }
  .large h2 {
    font-size: 1.85rem;
    line-height: 2.25rem; }
  .medium h2 {
    font-size: 1.375rem;
    line-height: 1.625rem;
    margin-bottom: 0.5rem; }

h3 {
  font-weight: 900;
  font-size: 35px;
  line-height: 45px; }

p {
  font-family: "Inter", sans-serif;
  font-size: 0.938rem;
  line-height: 23px; }
  p a {
    font-family: "Inter", sans-serif; }
  p strong {
    font-family: "Inter", sans-serif; }

ul {
  list-style: none; }

ul, ol {
  margin: 0;
  padding: 0; }

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }

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

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

hr {
  border-top: 1px solid #d5d3d3; }

/* ///////// TRIGGER MOBILE MENU ///////// */
#mainMenu_trigger {
  z-index: 999999;
  height: 26px;
  width: 25px;
  cursor: pointer;
  opacity: 1;
  transition: all .4s ease-in-out;
  display: block;
  position: relative;
  /*position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  */
  /*@media (min-width: 991px) and (max-width: 1064px) { 
    display: none !important;   
    }*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    #mainMenu_trigger {
      display: block; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #mainMenu_trigger {
      display: block; } }
  @media (max-width: 767px) {
    #mainMenu_trigger {
      display: block; } }
  #mainMenu_trigger:after {
    content: "SECCIONS";
    position: absolute;
    right: -72px;
    top: 5px;
    font-size: 12px; }
  #mainMenu_trigger span {
    position: absolute;
    width: 100%;
    height: 2px;
    transition: all 280ms;
    background: black; }
  #mainMenu_trigger span.top-line {
    top: 5px; }
  #mainMenu_trigger span.center-line {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: all 200ms; }
  #mainMenu_trigger span.bottom-line {
    bottom: 5px; }
  .menu-opened #mainMenu_trigger span.top-line {
    top: 5px;
    transform: translateY(8px) translateX(-1px) rotate(45deg) !important; }
  .menu-opened #mainMenu_trigger span.center-line {
    opacity: 0;
    left: -25px; }
  .menu-opened #mainMenu_trigger span.bottom-line {
    bottom: 5px;
    width: 100% !important;
    transform: translateY(-10px) translateX(-1px) rotate(-45deg) !important; }

/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */ }

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table; }

.clearfix::after {
  clear: both; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]::after {
    content: " (" attr(href) ")"; }

  abbr[title]::after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: ""; }

  pre {
    white-space: pre-wrap !important; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

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

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

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

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/* ==========================================================================
Layout SASS-CSS
========================================================================== */
.g-5, .gx-5 {
  --bs-gutter-x: 2rem; }
  @media (max-width: 767px) {
    .g-5, .gx-5 {
      --bs-gutter-x: 0; } }

.grid-divider {
  position: relative;
  margin-bottom: 0rem; }
  @media (max-width: 767px) {
    .grid-divider {
      margin-bottom: 0; } }
  .grid-divider [class*=col-] {
    position: relative; }
  .grid-divider [class*=col-]:nth-child(n+2):after {
    content: "";
    background-color: #d5d3d3;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    left: -1px; }
    @media (max-width: 767px) {
      .grid-divider [class*=col-]:nth-child(n+2):after {
        display: none; } }

.no-border:after {
  display: none; }

/* ///////// ESTRUCTURA ///////////// */
.box-content .topbar-wrapp {
  background-color: #ededed;
  height: 40px;
  justify-content: space-between;
  align-items: center; }
  .box-content .topbar-wrapp .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center; }
  .box-content .topbar-wrapp a {
    color: black;
    font-size: 11px; }

.enllacos-grup {
  display: flex; }
  .enllacos-grup li {
    margin-right: 1.85rem;
    position: relative; }
    .enllacos-grup li:after {
      content: "";
      position: absolute;
      width: 10px;
      height: 1px;
      background-color: #c4003e;
      right: -20px;
      top: 14px; }
  .enllacos-grup li:last-child:after {
    display: none; }

.canvi-edicio li {
  position: relative; }
  .canvi-edicio li:before {
    content: "";
    background-image: url(/img/right.svg);
    background-size: 15px 9px;
    position: absolute;
    width: 15px;
    height: 9px;
    left: -23px;
    top: 10px; }

/* /// HEADER /// */
header.header {
  background-color: white;
  border-bottom: 1px solid #e2e2e2; }
header .header-wrapp {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center; }
  header .header-wrapp.slim {
    height: 70px; }
header .icons-header {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 150px; }
header .navbar-brand {
  width: 210px;
  height: auto;
  padding: 0;
  position: absolute;
  transform: translateX(-50%);
  left: 50%; }
header .search-btn {
  width: 21px;
  height: auto;
  position: absolute;
  right: 0;
  top: -1px; }
  header .search-btn:after {
    content: "CERCAR";
    position: absolute;
    right: -60px;
    top: 7px;
    font-size: 12px; }

/* /// Buttons /// */
.buttons-header {
  display: flex;
  position: absolute;
  right: 0; }
  .buttons-header .btn {
    margin-left: 1rem; }

.btn {
  height: 30px;
  width: auto;
  padding: 1rem;
  text-align: center;
  border-radius: 6px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; }
  .btn.btn-dark {
    background-color: #6e6e6e;
    color: white; }
  .btn.btn-light {
    background-color: #ffd00b;
    color: black; }

/* /// highlights /// */
.highlights {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .highlights .element {
    font-size: 11px;
    color: black;
    margin: 0 .5rem;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    padding: 0.05rem 0.5rem;
    text-transform: uppercase; }
    .highlights .element span {
      font-weight: normal !important;
      color: black;
      margin-left: 0.15rem; }
    .highlights .element.en-directe {
      font-weight: 600;
      color: #c4003e; }
    .highlights .element.last-news {
      font-weight: 600;
      color: #999; }

/* ///  Article Home  ///  */
.noticies-portada {
  padding-top: 1rem; }

.first {
  margin-bottom: 2rem; }

.row-bottom {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  position: relative; }
  .row-bottom:before {
    content: "";
    position: absolute;
    width: auto;
    height: 1px;
    bottom: -1px;
    left: 1rem;
    right: 1rem;
    background-color: #d5d3d3; }
  .row-bottom:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    bottom: -1px;
    left: 1rem;
    right: 1rem;
    background-color: #c4003e; }

article {
  border-bottom: 1px solid #d5d3d3;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative; }
  article:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    bottom: -1px;
    left: 0;
    background-color: #c4003e; }
  article header .info-article {
    display: flex;
    font-size: 12px;
    color: #c4003e; }
    article header .info-article li {
      margin-right: 1.25rem;
      position: relative; }
      article header .info-article li:after {
        content: "";
        position: absolute;
        width: 10px;
        height: 1px;
        background-color: black;
        right: -14px;
        top: 8px; }
      article header .info-article li a {
        font-size: 12px;
        color: #c4003e; }
    article header .info-article li:last-child:after {
      display: none; }
  article header .author {
    color: black; }
  article p {
    margin-bottom: 0px; }
  article figure {
    position: relative;
    background-size: cover;
    height: 100%;
    padding-top: 56.25%;
    margin-bottom: 0;
    background-position: center; }
  article .header-over {
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
    z-index: 99;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 2rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column; }
    .row-bottom article .header-over {
      bottom: 0px; }
    article .header-over h2 {
      font-size: 26px;
      line-height: 34px;
      color: white; }
    article .header-over li {
      color: white; }
    article .header-over a {
      color: white !important; }
    article .header-over .info-article li:after {
      background-color: white; }

article:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px; }
  article:last-child:after {
    display: none; }

.title {
  border-top: 1px solid #d5d3d3;
  padding-top: 1rem;
  font-size: 24px;
  line-height: 30px;
  font-weight: 900;
  color: #c4003e;
  margin-bottom: 1rem; }

.sidebar-content {
  position: relative; }

.item-opinio {
  background-color: #ededed;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: .5rem;
  display: flex; }
  .item-opinio h2 {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 20px;
    margin: 0; }
  .item-opinio p {
    font-size: 12px;
    color: #7f7f7f;
    margin: 0; }
  .item-opinio img {
    width: 36px;
    height: 36px;
    border-radius: 50%; }

.container-arrows {
  position: absolute;
  top: 1rem;
  right: 0px; }

.slick-arrow {
  background: transparent;
  border: none;
  background-size: 31px 31px;
  width: 31px;
  height: 31px; }
  .slick-arrow.prev, .slick-arrow.prev1 {
    background-image: url("/img/left-arrow.svg"); }
  .slick-arrow.next, .slick-arrow.next1 {
    background-image: url("/img/right-arrow.svg"); }

.banner {
  background-color: #e2e2e2;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.onecolumn figure {
  padding-top: 170px;
  margin-bottom: 1rem; }

.video-play {
  position: relative; }
  .video-play:after {
    content: "";
    background-image: url("/img/video-play.svg");
    background-size: 45px 45px;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 99; }

.video {
  background-color: #d5d3d3;
  padding: 0.15rem 0.5rem;
  color: black;
  text-align: center;
  border-radius: 3rem;
  max-width: fit-content;
  font-size: 11px;
  margin-top: 1.25rem; }

.twocolumns {
  display: flex; }
  .twocolumns .caption {
    width: 50%;
    padding-right: 1rem; }
  .twocolumns figure {
    padding-top: 170px;
    margin-bottom: 0;
    background-position: center;
    width: 50%; }
