
.inter-0001 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.rwd-table {
  margin: auto;
  min-width: 300px;
  max-width: 100%;
  border-collapse: collapse;
}

.rwd-table tr:first-child {
  border-top: none;
  background: #428bca;
  color: #fff;
}

.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #ffffff;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #ffffff;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: .5em;
}

.rwd-table td:last-child {
  margin-bottom: .5em;
}

.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table {
  color: #333;
  border-radius: .4em;
  overflow: hidden;
}

.rwd-table tr {
  border-color: #001C3E;
}

.rwd-table th,
.rwd-table td {
  padding: .5em 1em;
}
@media screen and (max-width: 601px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 600px) {
  .rwd-table tr:hover:not(:first-child) {
    background-color: #ffffff;
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}


/* THE END OF THE IMPORTANT STUFF */

/* Basic Styling */
/* body {
background: #4B79A1; 
background: #f5f9fc;
background: -webkit-linear-gradient(to left, #4B79A1 , #283E51);
background: linear-gradient(to left, #4B79A1 , #283E51);        
}
*/
body {
  background-color: #ffffff !important; /* <!-- back color --> */
  color: #2C3383; /* readable text <!-- font color 1 --> */
}	
h1 {
  text-align: center;
  font-size: 2.4em;
  color: #f2f2f2;
}
.container {
  display: block;
  text-align: center;
}
h3 {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.5em;
  color: #cecece;
}
h3:before {
  content: "\25C0";
  position: absolute;
  left: -50px;
  -webkit-animation: leftRight 2s linear infinite;
  animation: leftRight 2s linear infinite;
}
h3:after {
  content: "\25b6";
  position: absolute;
  right: -50px;
  -webkit-animation: leftRight 2s linear infinite reverse;
  animation: leftRight 2s linear infinite reverse;
}
@-webkit-keyframes leftRight {
  0%    { -webkit-transform: translateX(0)}
  25%   { -webkit-transform: translateX(-10px)}
  75%   { -webkit-transform: translateX(10px)}
  100%  { -webkit-transform: translateX(0)}
}
@keyframes leftRight {
  0%    { transform: translateX(0)}
  25%   { transform: translateX(-10px)}
  75%   { transform: translateX(10px)}
  100%  { transform: translateX(0)}
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

.center:hover {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
/*  transform: scale(1.02);  */
  transform: translate(2px, 2px);
}

.page-footer {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #2C3383;
  font-size: 0.9em;
  padding: 5px 10px;      /* adds a little breathing room */
  background: transparent; /* you can change this if you want a dark strip */
}

.page-footer i {
  color: #2C3383;
  margin-right: 6px;
}

@media (max-width: 600px) {
  .page-footer {
    font-size: 0.8em;     /* slightly smaller text on mobile */
    line-height: 1.4em;
    padding: 8px 5px;
  }

  .page-footer i {
    display: block;       /* puts icons on separate lines if text wraps */
    margin-right: 0;
    margin-bottom: 4px;
  }
}

.image-rotator {
  position: relative;
  width: min(80%, 600px);   /* ✅ responsive: max 800px, shrinks to 90% of screen */
  margin: 30px auto;        /* center horizontally */
  overflow: hidden;
  border-radius: 12px;
  background-color: #000;   /* fills space behind letterboxing */
  aspect-ratio: 1800 / 832; /* maintain image proportions */
}

.image-rotator img {
  position: absolute;
  top: 0;
  left: 0;
    max-height:400px;
    max-width:600px;
    height:auto;
    width:auto;
  object-fit: contain;       /* show entire image, no cropping */
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 2s ease-in-out;
  border-radius: 12px;
  background-color: #000;
}

.image-rotator img.active {
  opacity: 1;
  transform: scale(1.02);
}

}
