@font-face {
  font-family: Comex;
  font-style: normal;
  font-weight: 400;
  src: url(fonts/comex-medium.eot);
  src: url(fonts/comex-medium.eot?#iefix) format("embedded-opentype"),
       url(fonts/comex-medium.woff) format("woff"),
       url(fonts/comex-medium.woff2) format("woff2"),
       url(fonts/comex-medium.ttf) format("truetype");
}

@font-face {
  font-family: Comex;
  font-style: normal;
  font-weight: 700;
  src: url(fonts/comex-bold.eot);
  src: url(fonts/comex-bold.eot?#iefix) format("embedded-opentype"),
       url(fonts/comex-bold.otf) format("opentype"),
       url(fonts/comex-bold.woff2) format("woff2"),
       url(fonts/comex-bold.ttf) format("truetype");
}

@font-face {
  font-family: Comex;
  font-style: normal;
  font-weight: 900;
  src: url(fonts/comex-black.eot);
  src: url(fonts/comex-black.eot?#iefix) format("embedded-opentype"),
       url(fonts/comex-black.woff) format("woff"),
       url(fonts/comex-black.woff2) format("woff2"),
       url(fonts/comex-black.ttf) format("truetype");
}

* {
  color-scheme: light;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Comex, Open Sans, serif;
}

:root {
  color-scheme: only light;
  forced-color-adjust: none;
  background-color: #ffffff;
}

html, body {
    max-width: 600px;
    margin:0 auto;
  background-color: #ffffff !important;
  -webkit-background-color: #ffffff !important;
  color-scheme: light;
  forced-color-adjust: none;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

body.fade-out {
  opacity: 0;
}

header {
  background-color: #009dda;
  text-align: center;
  padding: 10px 0;
}

header img {
  max-width: 120px;
  height: auto;
}

h1, h2 {
  text-align: center;
  color: #333;
  margin: 20px 0;
  font-family: Comex, sans-serif;
}

h2 {
  font-size: 1.2rem;
  color: #555;
}

.slider-container {
  position: relative;
  max-width: 100%;
  
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.slide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #01ace6;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
}

.slider-button.prev {
  left: 10px;
}

.slider-button.next {
  right: 10px;
}



.two-column {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  margin: 0 auto;
  max-width: 800px;
  padding: 10px;
}

.column {
  flex: 1;
  text-align: center;
}

.column button {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  margin: 10px auto;
  padding: 0;
}

.column button img {
  width: 100%;
  transform: translateX(0%);
  display: block;
}

.bottom-center {
  text-align: center;
  margin-top: -10px;
}

.bottom-center button {
  width: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.bottom-center button img {
  width: 100%;
  height: auto;
}

.blue-background {
  background-color: #005597;
  padding: 40px 20px 30px 20px;
  margin-top: 0;
}

.blue-background button {
  padding: 10px 20px;
  display: block;
  width: 70%;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.blue-background button img {
  width: 70%;
  height: auto;
}

.responsive-image img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.responsive-image_title1 {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .responsive-image_title1 {
    width: 90%;
    max-width: 90%;
  }

  .two-column {
    justify-content: space-between;
    gap: 0;
  }

  .column {
    width: 50%;
  }

  .column button img {
    width: 100%;
    transform: translateX(0%);
  }
}

.footer {
  background-color: #009dda;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-family: Comex, sans-serif;
}

.footer p {
  margin: 10px 0;
  font-size: 14px;
  text-align: left;
}

.footer a {
  color: #ffffff;
  text-decoration: none !important;
}

.footer-line {
  border-bottom: 1px solid #ffffff;
  margin: 10px 0;
}

.fixed-image {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
}

.fixed-image img {
  width: 50px;
  height: auto;
}

.fixed-image2 {
  position: absolute;
  z-index: 1000;
  width: 100%;
}

.fixed-image2 img {
  width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 667px) {
  .fixed-image2 {
    top: 550px;
  }
}

@media (max-width: 844px) {
  .fixed-image2 {
    top: 570px;
  }
}

@media (max-width: 896px) {
  .fixed-image2 {
    top: 610px;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #ffffff !important;
    color: #000000 !important;
  }
}

