@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css');

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65em
}

section {
  position: relative; 
}

h1 {
  font-size: 4.500em;
  font-weight: 400;
  line-height: 1.23em;
  margin-top: 0.72em;
  margin-bottom: 0.52em
}

h2 {
  font-size: 2.000em;
  font-weight: 800;
  line-height: 1.2em;
  margin-top: 1.1em;
  margin-bottom: 0.52em
}

h3 {
  font-size: 2.500em;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 1.3em;
  margin-bottom: 0.4em
}

h4 {
  font-size: 1.500em;
  font-weight: 700;
  line-height: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em
}

h5 {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.3em;
  margin-top: 2.2em;
  margin-bottom: 0.85em
}

h6 {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.35em;
  margin-top: 1.25em;
  margin-bottom: 0.65em
}

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

a {
  outline: none;
  text-decoration: none;
}

a:link, a:visited, a:focus {
  text-decoration: none;
}

a:hover, a:active {
  text-decoration: none;
  color: #C11C1B;
}

ul {
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

li {
    list-style: none;
}

.logo .logo_text {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.4em
}

/* Colors */
.bgdark {
	background-color: #1f1f1f;
}

.bgred {
	background-color: #C11C1B;
}

.accordion {
  display: block;
  overflow: hidden;
}

.accordion-header {
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #1f1f1f;
  color: #1f1f1f;
  font-size: 30px;
  font-weight: 300;
  /*text-transform: uppercase;*/
  font-style: normal;
  line-height: 34px;
  letter-spacing: 2px;
  text-align: left;
  padding: 20px 20px 10px;
}

.accordion-content {
  color: #1f1f1f;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.accordion .accordion-header .icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, transform 0.5s ease-out, opacity 0.5s ease-out;
  transform-origin: top;
  padding: 0;
}

.accordion-wrap {
  padding: 50px 50px 150px;
}

.accordion-wrap p {
  margin-bottom: 20px;
}

.accordion.active .accordion-content {
  max-height: 500px; /* Adjust the height based on your content */
  /* You can also use max-height: 100%; if you want the content to take up all available space */
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  background-color: transparent;
  color: #1a1a1a;
  font-size: 50px;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}