/* Variables
---------------------------------------- */
:root {
  --primary: #25acaf;
  --secondary: #E00000;
  --rojo: #E00000;
  --amarillo: #FFCC00;
  --gris: #BDBFC1;
  --dark: #303030;
  --light: #f4f4f4;
  --border: #dddddd;

  --color-text: #444444;
  --color-heading: #111111;
}

/* HTML and Body
---------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7em;
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.site-page .node-content {
  width: 100% !important;
  margin: 0 auto 30px !important;
}

/* Regions
---------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

details {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

template,
[hidden] {
  display: none;
}

/* Typography
---------------------------------------- */
h1 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  color: var(--dark);
}

h2 {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  font-weight: 600;
  font-style: normal;
  line-height: 1.2em;
  text-transform: uppercase;
  margin: 0;
}

h2.destaca {
  color: #B90000;
}

h3,
h4,
h5,
h6 {
  font-family: 'Lato', sans-serif;
  color: var(--color-heading);
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
  text-transform: uppercase;
  margin: 0;
}

h1 {
  font-size: calc(28px + (40 - 28)*(100vw - 300px)/(1000 - 300));
  line-height: 1.2em;
  text-align: center;
}

/* Línea debajo */
h1::after {
  content: "";
  width: 100px;
  height: 3px;
  /*background: #B90000;*/
  display: flex;
  margin: 0 auto 30px;
}

h2 {
  font-size: calc(18px + (24 - 18)*(100vw - 300px)/(1000 - 300));
}

h3 {
  font-size: calc(16px + (20 - 16)*(100vw - 300px)/(1000 - 300));
}

h4 {
  font-size: calc(16px + (18 - 16)*(100vw - 300px)/(1000 - 300));
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* Subrayado animado */
h2 a,
h3 a,
h4 a {
  color: #787878;
  background: linear-gradient(to right, rgba(250, 250, 250, 0), rgba(250, 250, 250, 0)), linear-gradient(to right, rgba(80, 80, 0, 1), rgba(80, 80, 0, 1));
  background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 800ms;
}

h2 a:hover,
h3 a:hover,
h4 a:hover,
.sidebar li a:hover,
a.linea:hover,
h2 a:focus,
h3 a:focus,
h4 a:focus,
.sidebar li a:focus,
a.linea:focus {
  background-size: 0 1px, 100% 1px;
  color: #324D9A;
}

p {
  margin: 0 0 1.2rem 0;
}

b,
strong {
  font-weight: bolder;
}

dfn,
cite {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: #ED3237;
}

a:active,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
  color: #b90000;
}

a:hover {
  text-decoration: none;
  color: #b90000;
}

a.feed-icon {
  display: none;
}

/* Typography-> code tags */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
}

kbd,
samp {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
}

pre {
  overflow: auto;
  margin: 1rem 0;
  padding: 1rem;
  tab-size: 2;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

mark {
  background: var(--primary);
}

acronym[title],
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

abbr,
acronym {
  cursor: help;
}


/* Media
---------------------------------------- */
audio,
canvas,
progress,
video {
  vertical-align: baseline;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
a img {
  /*width: 100%;*/
  max-width: 100%;
  height: auto !important;
  margin: 0;
  padding: 0;
  border: 0;
  border-style: none;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border: 0;
}

.align-left {
  margin: 0 1rem 0 0;
}

.align-right {
  margin: 0 0 0 1rem;
}

figcaption {
  padding: 4px;
  font-size: 0.8rem;
  text-align: center;
}

/* BUTTON */
.webform-submission-form .button {
  border: 1px solid #606062 !important;
}

.webform-submission-form .button:hover {
  border: 1px solid #fff !important;
}

.button {
  margin: 10px;
  padding: 12px 18px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: #606062;
  border-radius: 30px !important;
  display: block;
  border: 1px solid #606062 !important;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background: transparent !important;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button:hover {
  background-position: right center;
  /* change the direction of the change here */
  text-decoration: none;
  background: var(--primary) !important;
  color: #fff;
  border: 0;
}

.button:active {
  transform: scale(0.95);
}

/* Form
---------------------------------------- */
form {
  margin-bottom: 1rem;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.7;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

.button {
  display: inline-block;
}

.button,
button,
[type="button"],
[type="reset"],
[type="submit"] {
  position: relative;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

input {
  line-height: normal;
}

input,
textarea {
  max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
textarea {
  padding: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  outline: 0;
}

textarea {
  width: 100%;
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  padding: 0;
  cursor: pointer;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[type="file"] {
  cursor: pointer;
}

fieldset {
  margin: 0 0 20px 0;
  padding: 1rem 1rem 0;
}

fieldset> :last-child {
  margin-bottom: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 6px;
  cursor: pointer;
}

label[for] {
  cursor: pointer;
}

/* Form */
.form-item {
  margin-bottom: .5rem;
}

.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: red;
}

.form-item label {
  display: block;
}

label.option {
  display: inline;
  font-weight: normal;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
}

:-moz-placeholder {
  color: #a3a3a3;
}

::-moz-placeholder {
  color: #a3a3a3;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #a3a3a3;
}

.field--name-body input[type="text"],
.field--name-body input[type="email"],
.field--name-body input[type="url"],
.field--name-body input[type="password"],
.field--name-body input[type="search"],
.field--name-body textarea {
  display: block;
  margin-bottom: 0.8rem;
}

/* Common HTML Elements
---------------------------------------- */
hr {
  background-color: var(--border);
  clear: both;
  width: 100%;
  max-width: 100%;
  height: 2px;
  border: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: visible;
}

address {
  margin: 0 0 1rem 0;
  font-style: italic;
}

/* Definition Lists */
dt {
  font-weight: 700;
}

dd {
  margin: 0 0 1.2rem 0;
}

blockquote {
  position: relative;
  background-color: none;
  margin: 1rem 0;
  padding: 1rem;
  font-size: 20px;
  font-style: italic;
  border-left: 5px solid #24AAAD;
}

blockquote> :last-child {
  margin-bottom: 0;
}

/* List
---------------------------------------- */
ul,
ol {
  margin: 0;
  padding: 0 0 0.25rem 1rem;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1rem 0.25rem 0;
}

ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25rem 1rem;
}

[dir="rtl"] ol ol,
[dir="rtl"] ul ul {
  padding: 0 1rem 0.25rem 0;
}

ul {
  list-style: disc;
}

li>ul,
li>ol {
  margin-bottom: 0;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1rem 0.25rem 0;
}

li {
  padding: 4px 0;
}

/* Table
---------------------------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  margin: 0;
  padding: 5px;
  text-align: left;
}

td {
  padding: 5px;
}


/* MESSAGES */
.messages__wrapper {
  margin-top: 20px;
  padding: 12px;
  border-radius: 12px;
  background: #dcfeff;
  border: 2px solid #24A8AC;
}

/* MEGAMENU */
@media (min-width: 992px) {

  .we-mega-menu-ul>.we-mega-menu-li>a,
  .we-mega-menu-ul>.we-mega-menu-li>span {
    padding: 1.125rem 1.43rem;
  }

  .we-mega-menu-ul .dropdown-menu>a:after,
  .we-mega-menu-ul .dropdown-menu>a:before,
  .we-mega-menu-ul .dropdown-menu>span:after,
  .we-mega-menu-ul .dropdown-menu>span:before {
    right: .1rem;
  }
}

/* Default box sizing.
---------------------------------------- */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:after,
*::after,
*:before,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* SIDEBAR BLOCKS */
.sidebar .block {
  border-radius: 12px;
  background: none !important;
}


/* SIDEBAR */
@media (max-width: 880px) {
  #sidebar-right {
    display: none;
  }
}


/* SIDEBAR RIGHT */
#sidebar-right h4 {
  font-size: 14px;
  line-height: 1.5em;
  color: #B90000;
  margin-bottom: 12px;
}

#sidebar-right p {
  font-size: .8em;
  line-height: 1.6em;
}

#sidebar-right .views-row {
  margin-bottom: 36px;
}


/* BLOCK TABS */
div#blocktabs-virtual_campus {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.ui-tabs-vertical {
  width: 100%;
}

.ui-tabs-vertical .ui-tabs-nav {
  padding: 0;
  border: 0;
  float: none !important;
  flex-basis: 20%;
}

.ui-tabs-vertical .ui-tabs-panel {
  padding: 0 0 0 2em;
  float: none;
  width: 100%;
}

.ui-tabs-panel {
  flex-basis: 76%;
  float: none !important;
}

.ui-tabs-vertical .ui-tabs-nav li {
  border: 0;
}

.ui-widget-header {
  background: transparent;
  border: 0;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  padding-bottom: 0;
  margin-bottom: .2em;
  border: 0;
}

.ui-tabs .ui-tabs-nav li a {
  color: #fff !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: #b00000;
  font-weight: normal;
  color: #fff;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  background: #000;
  color: #fff;
}

@media (max-width: 640px) {
  div#blocktabs-virtual_campus {
    flex-direction: column;
  }

  .ui-tabs-nav {
    display: flex !important;
    flex-wrap: wrap;
  }

  .ui-tabs-vertical .ui-tabs-nav {
    padding: 0;
    float: none;
    width: 100%;
  }

  .ui-tabs-vertical .ui-tabs-nav li {
    width: min-content;
    padding: 0;
  }

  .ui-tabs-vertical .ui-tabs-nav li:active {
    width: min-content;
  }

  .ui-tabs-panel {
    width: 100%;
    float: none !important;
  }

  .ui-tabs .ui-tabs-panel {
    padding: inherit;
  }

  .ui-tabs .ui-tabs-nav li {
    margin: 1px !important;
  }
}


/* FLEXMODEL */
.flexmodel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0 40px;
}

.flexmodel img {
  min-width: 100px;
  margin-right: 20px;
}

@media (max-width: 479px) {
  .flexmodel {
    display: block;
  }
}

/* FLEXMODEL2 */
.flexmodel2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 40px;
  gap: 1em;
}

.flexmodel2 div {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*justify-content: center;*/

  flex: 1 auto;
  flex-basis: 22%;
  text-align: center;
  padding: 6px;
}

@media (max-width: 480px) {
  .flexmodel2 {
    display: block;
  }
}


.layout--twocol-section {
  gap: 30px !important;
}

.layout__region--first,
.layout__region--second,
.layout__region--third {
  padding: 0 !important;
}

.layout__region--second .node-taxonomy-container,
.node-links-container {
  padding: 0 !important;
}

.layout--twocol-section {
  margin: 0 0 40px !important;
}

.layout--twocol-section .layout__region--first,
.layout--twocol-section .layout__region--second {
  background: transparent;
}

.layout--twocol-section .layout__region--first h2 {
  font-size: calc(18px + (20 - 18)*(100vw - 300px)/(1000 - 300));
  margin-bottom: 12px;
}

.layout--twocol-section .layout__region--first label {
  display: none;
}

.layout--twocol-section .layout__region--first ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.layout--twocol-section .layout__region--first li {
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.layout--twocol-section .layout__region--first ul li a {
  font-weight: bold !important;
  text-transform: uppercase;
  font-size: .86rem;
}

.layout--twocol-section .layout__region--first ul li.menu-item.expanded>a {
  color: red;
}


/* CONTENT BOTTOM */
.region-content-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.region-content-bottom h2 {
  font-size: 1.5em;
}

.region-content-bottom .block2 {
  flex-basis: 49%;
}


@media (max-width: 688px) {
  .region-content-bottom {
    flex-flow: column wrap;
  }

  .region-content-bottom .block2 {
    flex-basis: 100%;
    margin-bottom: 24px;
  }
}

/* MORE LINK */
.more-link {
  margin-top: 60px;
}

.more-link a {
  padding: 8px 36px 10px;
  border-radius: 30px;
  background: #B90000;
}

.more-link a:hover {
  background: #E52307;
}

.more-link p {
  font-weight: bold;
  text-align: center;
  line-height: 2em;
  color: #fff;
  margin: 0;
}

.more-link a {
  color: #fff;
}

/* WHATSAPP */
.whatsapp {
  position: fixed !important;
  z-index: 5000;
  left: 10px;
  bottom: 10px;
  max-width: 50px;
  min-width: 50px;
}

@media (max-width: 960px) {
  .whatsapp {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .whatsapp {
    right: 8px;
  }
}


/* SOCIAL */
.social {
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
  gap: 16px;
}

.social ion-icon {
  font-size: 32px;
}

.social ion-icon {
  color: #eee;
}

.social ion-icon {
  --ionicon-stroke-width: 16px;
}

.social ion-icon:hover {
  color: #fff;
}


/* BLOCK SEARCH */
div#block-xaraflexrd-languagedropdownswitcher {
  position: absolute;
  z-index: 2;
  right: 0;
  margin-top: 20px;
  font-size: .8em;
}

/* LANGUAGE */
.language-switcher-language-url {
  position: absolute !important;
  z-index: 2;
  right: 0;
  margin-top: 24px;
  font-size: .8em;
}

.language-switcher-language-url ul.links {
  list-style: none;
  display: flex;
  gap: 10px;
}

@media (max-width: 320px) {
  .language-switcher-language-url {
    margin-top: 3px !important;
  }
}


/* TABLE.xaraflex */
table.xaraflex {
  font-size: .8em;
  border-collapse: collapse;
  width: 100%;
}

table.xaraflex td,
table.xaraflex th {
  border: 1px solid #ddd;
  padding: 8px;
}

table.xaraflex tr:nth-child(even) {
  background-color: #f2f2f2;
}

table.xaraflex tr:hover {
  background-color: #ddd;
}

table.xaraflex th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #666;
  color: white;
}

table.xaraflex {
  margin-bottom: 1.2rem;
  border-spacing: 0;
}


/* HERO */
.hero-front #slider * { font-family: 'lato' !important; }
.hero-front #slider { height: 60vh; }
.hero-front #slider li .content_slider { /*background: none;*/ }
.hero-front #slider li { background-position: center !important; }

.hero-front .content_slider h2 {
  text-transform: none;
  font-size: calc(18px + (28 - 18) * (100vw - 300px) / (1000 - 300));
  color: #fff;
  margin-bottom: 50px !important;
}
.hero-front .btnSlider {
  padding: 10px 50px !important;
  background: #fff;
  color: #000;
}
.hero-front .btnSlider:hover {
  background: #FFCC00;
  color: #000;
}
.hero-front .listslider li {
  margin: 0 5px !important;
}
.hero-front .listslider li a {
  background: #666;
}
.hero-front .listslider li a.item-select-slid {
  background: orange !important;
}
.hero-front #slider li:first-child a.btnSlider {
  /*display: none !important;*/
}
.hero-front #container-slider .arrowPrev, .hero-front #container-slider .arrowNext {
    top: 50%;
}

@media screen and (max-width: 460px) {
  .hero-front #slider {
    height: 400px;
    min-height: 400px;
  }
}


/* PRODUCTS VIEWS */
.products-views-block {
    background: #e5e5e5;
    padding: 30px 30px 1px;
    margin-bottom: 60px;
    border-radius: 20px;
    border: 1px solid #cbcbcb;
}
.products-views-block .views-field-field-img-product {
	border: 1px solid #cbcbcb;
}
.products-views-block h2 {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 50px;
}
.products-views h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 360px) {
  .products-views-block {
    padding: 18px 18px 1px;
    margin-bottom: 60px;
}
}

/* PRODUCT */
.page-type-products h1 {
	text-align: left;
}
.page-type-products h2 {
  font-size: calc(18px + (20 - 18)*(100vw - 300px)/(1000 - 300));
  line-height: 1.3em;
  margin: 0 0 .4em;	
}
.details {
	background: #f5f5f5;
	border-radius: 20px;
	border: 1px solid #cbcbcb;
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.details .layout__region {
	width: 94%;
}
.details ul.taxonomy-terms li {
	font-size: .9em;
    font-weight: bold;
	color: #E00000;
}


/* COL2 
.col2 {
	display: flex;
	justify-content: center;
	align-items: normal;
	gap: 30px;
}
.col2 .item {
	width: 50%;
	text-align: left;
}
.col2 .item img {
	max-width: 90%;
	margin: 0 auto 20px;
}
.col2 .item h3 {
	font-size: calc(30px + (24 - 30)*(100vw - 300px)/(1000 - 300));
}
@media (max-width: 880px) {
	.col2 { flex-flow: row wrap; }
	.col2 .item {
	width: 100%;
	text-align: left;
}
}
*/


/* COL3 */
.col3 {
	display: flex;
	justify-content: center;
	align-items: normal;
	gap: 30px;
}
.col3 .item {
	width: 34%;
	text-align: left;
}
.col3 .item img {
	max-width: 80%;
	margin: 0 auto 20px;
}
.col3 .item h2 {
	font-size: calc(18px + (22 - 18)*(100vw - 300px)/(1000 - 300));
	text-align: center;
	margin-bottom: 24px;
}
.col3 .item h3 {
	font-size: calc(18px + (22 - 18)*(100vw - 300px)/(1000 - 300));
}
@media (max-width: 880px) {
	.col3 { flex-flow: row wrap; }
	.col3 .item {
	width: 100%;
	text-align: left;
}
}


/* INQUIRY FORM */
details.details-inquiry-producto { border: 0; padding: 0; }

details .inquiry {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #cbcbcb;
    border-radius: 20px;
}


/* RELEASES */
.page-type-releases h1 {
    text-align: left;
    margin-bottom: 80px;
}
.page-type-releases h4 {
	color: #24AAAD;
}
.page-type-releases ul.taxonomy-terms li {
    font-size: .9em;
    font-weight: bold;
    color: #E00000;
}

/* COL2 RELEASES */
.page-type-releases .col2 {
	display: flex;
	justify-content: center;
	align-items: normal;
	gap: 30px;
}
.page-type-releases .col2 .item {
	width: 50%;
	text-align: left;
}
.page-type-releases .col2 .item img {
	max-width: 90%;
	margin: 0 auto 20px;
}
.page-type-releases .col2 .item h3 {
	font-size: calc(30px + (24 - 30)*(100vw - 300px)/(1000 - 300));
}
.page-type-releases .col2 .item h4 {
	color: #24AAAD;
}
@media (max-width: 880px) {
	.page-type-releases .col2 { flex-flow: row wrap; }
	.page-type-releases .col2 .item {
	width: 100%;
	text-align: left;
}
}
