@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --margin-xxs:.25rem;
    --margin-xs:.5rem;
    --margin-s:.75rem;
    --margin-m:1rem;
    --margin-l:1.25rem;
    --margin-xl:1.75rem;
    --margin-xxl:2.5rem;

    --h-ff: 'Poppins',sans-serif;
    --h1: bold 1.75rem/1.2em var(--h-ff);
    --h2: bold 1.5rem/1.2em var(--h-ff);
    --h3: bold 1.25rem/1.2em var(--h-ff);
    --h4: bold 1.2rem/1.2em var(--h-ff);
    --h5: bold 1.1rem/1.2em var(--h-ff);
    --h6: bold 1rem/1.2em var(--h-ff);

    --ff: 'Open Sans',sans-serif;
    --xs: 0.8rem/1.4 var(--ff);
    --s: 0.9rem/1.3 var(--ff);
    --m: 1rem/1.2 var(--ff);
    --l: 1.1rem/1.1 var(--ff);
    --xl: 1.2rem/1 var(--ff);

    font-size:14px;
}

/* Bootstrap */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 15px;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(238, 240, 242);
  line-height: 1.7em;
}

p {
  margin-bottom: 1rem
}

ol,
ul {
  padding-left: 2rem;
  margin-bottom: 0.5rem
}

li {
  list-style-type: circle;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 2em 1em;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
    font: var(--h1);
}
h2 {
    font: var(--h2);
}
h3 {
    font: var(--h3);
}
h4 {
    font: var(--h4);
}
h5 {
    font: var(--h5);
}
h6 {
    font: var(--h6);
}


h4,
h5,
h6 {
  color: rgb(85, 90, 95);
}

table {
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-collapse: collapse;
}

th {
  text-align: start;
}

th,
td {
  border-bottom: solid 1px rgb(222, 226, 230);
  padding: .5rem .5rem;
  color: black;
}

/* Common */
header {
  padding: 0.3%;
  background-color: white;
  margin-bottom: 54px;
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px;
}

.header-left {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-left a {
  color: black;
  font-size: max(1.3vw, 1rem);
  text-decoration: none;
  font-weight: 500;
}

.header-right {
  padding: 0% 3%;
  display: flex;
  gap: 5%;
  align-items: center;
  white-space: nowrap;
}

.header-right a {
  text-decoration: none;
  letter-spacing: 0.04rem;
  color: rgb(115, 115, 115);
  font-variant: all-small-caps;
  border-bottom: solid 2px transparent;
}

.header-right a:hover {
  border-color: rgb(80, 100, 176);
  transition: border-color .5s;
}

.header-right .active {
  color: rgb(80, 100, 176);
  font-weight: bold;
}

main {
  flex: 1;
  width: 100%;
}

section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  margin-bottom: 20px;
  background-color: white;
  color: rgb(31, 30, 32);
  border-radius: 4px;
}

/* Slider */
.slider {
  position: relative;
  margin-bottom: 30px;
}

.slider .slides {
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 100%;
  gap: 0px 10px;
  scrollbar-width: none;
  margin-bottom: 10px;
}

.slider .slide {
  min-width: 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
}

.slider .slides .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 400px;
  width: 100%;
}

.slider .slides .content img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.slider .slides .content video {
  max-height: 90%;
  max-width: 100%;
  border-radius: 8px;
}

.slider .slides .content .title {
  color: rgb(100, 100, 100);
  font-size: 0.9em;
  text-align: center;
}

.slider .slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.slider .slider-nav .slider-arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider .slider-nav .slider-arrow img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}

.slider .slider-nav .slider-arrow.previous img {
  transform: rotate(180deg);
}

.slider .slider-nav .slider-arrow img:hover {
  cursor: pointer;
  color: black;
  opacity: 0.4;
}

.slider .slider-nav .radios {
  bottom: 7px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.slider .slider-nav .radios input {
  appearance: none;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: solid 1px transparent;
}

.slider .slider-nav .radios input:checked {
  background-color: rgba(0, 0, 0, 0.4);
}

.slider .slider-nav .radios input:hover {
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

/* */
.image {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px 0px;
}


.scrollable {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgb(0, 150, 200) white;
}

footer>div {
  padding: 5px 30px;
  border-top: 1px solid rgb(200, 200, 200);
  margin: auto;
  margin-top: 50px;
  display: flex;
  gap: 40px;
  justify-content: center;
  background-color: black;
  color: white;
  font-size: 0.9rem;
}

footer a {
  font-size: 0.9em;
  color: white;
  width: max-content;
  text-decoration: none;
}

footer a:hover {
  font-size: 0.9em;
  color: white;
  width: max-content;
  text-decoration: underline;
}

.btn-outline-primary {
  background-color: white;
}

@media all and (max-width:800px) {
  header {
    display: block;
  }

  .header-left,
  .header-right {
    flex: none;
  }

  .header-left,
  .header-right {
    justify-content: center;
  }
}

@media all and (min-width:800px) {
  .header-left {
    flex: 1 1 auto;
  }

  .header-right {
    flex: 1 1 auto;
    justify-content: right;
  }
}