@import "_reset.min.css";
@font-face {
  font-family: 'inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'), url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'inter';
  src: url('../fonts/Inter-Italic.woff2') format('woff2'), url('../fonts/Inter-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'inter';
  src: url('../fonts/Inter-BoldItalic.woff2') format('woff2'), url('../fonts/Inter-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
html {
  height: 100%;
}
body {
  color: #000;
  font-size: 16px;
  font-family: 'inter', sans-serif;
  font-weight: normal;
}
h1::selection,
h2::selection,
h3::selection,
p::selection,
li::selection,
a::selection {
  background-color: #ca2a3a;
  color: #fff;
}
p,
ol,
ul {
  line-height: 1.5;
}
a {
  color: #000;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  padding-bottom: 1px;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  border-color: #000;
}
a.no_border:hover {
  border-bottom: 0 solid rgba(255, 255, 255, 0);
}
h1 {
  margin: 0 0 0.5em 0;
  color: #ca2a3a;
  font-size: 2.5rem;
  border-bottom: 0.1em solid #ca2a3a;
  display: inline-block;
}
@media only screen and (max-width: 960px) {
  h1 {
    font-size: 4.16666667vw;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
h2 {
  color: #ca2a3a;
  margin: 0 0 0.5em 0;
  font-size: 1.4rem;
}
@media only screen and (max-width: 960px) {
  h2 {
    font-size: 2.33333333vw;
  }
}
@media only screen and (max-width: 822.85714286px) {
  h2 {
    font-size: 1.2rem;
  }
}
p.small,
span.small {
  font-size: 0.85em;
}
p.large,
span.large {
  font-size: 1.25rem;
}
@media only screen and (max-width: 960px) {
  p.large,
  span.large {
    font-size: 2.08333333vw;
  }
}
@media only screen and (max-width: 768px) {
  p.large,
  span.large {
    font-size: 1rem;
  }
}
p.xlarge,
span.xlarge {
  font-size: 1.75rem;
}
@media only screen and (max-width: 960px) {
  p.xlarge,
  span.xlarge {
    font-size: 2.91666667vw;
  }
}
@media only screen and (max-width: 768px) {
  p.xlarge,
  span.xlarge {
    font-size: 1.4rem;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}
.row .colsx {
  flex: 0 100%;
  margin: 1em 0;
}
.row .coldx {
  flex: 0 100%;
  margin: 1em 0 3em 0;
  padding-left: 0;
}
.row .coldx a.readmore {
  margin: 2em 0;
  display: inline-block;
  background-color: #ca2a3a;
  color: #fff;
  border: 0;
  border-radius: 0.25em;
  padding: 0.75em 1em;
  font-weight: 700;
  font-size: 0.7em;
  letter-spacing: 0.05em;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.row .coldx a.readmore:hover {
  background-color: #000;
  cursor: pointer;
}
.row .coldx .more {
  display: none;
}
.row.intro {
  margin-bottom: 1em;
}
.row.intro p {
  font-size: 1.2rem;
}
@media only screen and (max-width: 960px) {
  .row.intro p {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 880px) {
  .row.intro p {
    font-size: 1.1rem;
  }
}
.header {
  margin: 2em 0;
}
.header .logo {
  cursor: pointer;
  flex: 0 85%;
}
.header .logo img {
  max-width: 700px;
}
.header .menu_icon {
  flex: 0 5%;
}
.header .menu_icon svg {
  display: block;
  fill: #ca2a3a;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .menu_icon svg:hover {
  fill: #000;
  cursor: pointer;
}
.menu {
  background-color: #f7f7f7;
  margin: 0 0 3em 0;
  position: fixed;
  left: 100vw;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  z-index: 99;
}
.menu .container {
  padding-top: 0;
  padding-bottom: 0;
}
.menu ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.menu ul li {
  position: relative;
}
.menu ul li ul.child {
  position: absolute;
  top: -9999px;
  left: 0;
  padding-top: 1em;
  width: 100%;
  display: block;
}
.menu ul li ul.child li {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background-color: #fff;
}
.menu ul li a {
  padding: 0.8em 1.5em;
  display: block;
}
.menu ul li a:hover {
  background-color: #EFEFEF;
  border-color: #ca2a3a;
  color: #ca2a3a;
}
.menu ul li.active a {
  background-color: #EFEFEF;
  border-color: #ca2a3a;
  color: #ca2a3a;
}
.menu ul li.active ul.child li a {
  background-color: #fff;
  color: #000;
  border-color: rgba(255, 255, 255, 0);
}
.menu ul li.active ul.child li a:hover {
  background-color: #EFEFEF;
  border-color: #ca2a3a;
  color: #ca2a3a;
}
.menu ul li.active ul.child li.active a {
  background-color: #EFEFEF;
  border-color: #ca2a3a;
  color: #ca2a3a;
}
.menu ul li:hover ul.child {
  top: 2em;
}
.menu.open {
  left: 0;
}
.container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  padding: 1rem 5%;
  max-width: 1280px;
}
.footer {
  background-color: #f7f7f7;
  text-align: center;
  padding: 2em 0;
  margin-top: 2em;
}
.joomlaiframe {
  padding: unset;
}
/* Tablet version */
/* Desktop version */
@media (min-width: 768px) {
  .container {
    overflow-x: visible;
  }
}
/* L Desktop version */
@media (min-width: 1024px) {
  .row .colsx {
    flex: 55%;
  }
  .row .coldx {
    flex: 40%;
    padding-left: 5%;
  }
  .row.intro {
    margin-bottom: 3em;
  }
  .header .menu_icon svg {
    display: none;
  }
  .menu {
    margin: 0 0 3em 0;
    position: relative;
    left: 0;
  }
  .menu ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    margin: 0;
  }
  .menu ul li a {
    padding: 0.8em 1.5em;
    display: block;
  }
  .menu ul li a:hover {
    background-color: #EFEFEF;
    border-color: #ca2a3a;
    color: #ca2a3a;
  }
  .menu ul li.active a {
    background-color: #EFEFEF;
    border-color: #ca2a3a;
    color: #ca2a3a;
  }
}
/* XL Desktop version */
@media (min-width: 1440px) {
  .container {
    padding: 0;
  }
}
