p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}
ul, ol {
  font-family: Arial, sans-serif; /* Specifies Arial as the primary font, with sans-serif as a fallback */
  font-size: 16px; /* Sets the font size to 16 pixels */
}

.topnav1 {
  overflow: hidden;
  background-color: beige;
}

.topnav1 a {
  float: left;
  display: block;
  color: maroon;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav1 a:hover {
  background-color: maroon;
  color: beige;
}

.topnav1 a.active {
  background-color: maroon;
  color: beige;
}

.topnav1 .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav1 a:not(:first-child) {display: none;}
  .topnav1 a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav1.responsive {position: relative;}
  .topnav1.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav1.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* Google Translate styles */
#google_translate_element select{
  font-family:Arial;
  border: 3px solid maroon;
  display: block;
  margin: 0 auto;
  width:80%;
  height:7%;
  font-size:14pt;
 }
  .goog-logo-link,.gskiptranslate,.goog-te-gadget span,.goog-te-banner-frame,#goog-gt-tt, .goog-te-balloon-frame,div#goog-gt-{
    display: none!important;
  }
  .goog-te-gadget {
    color: transparent!important;
    font-size:0pt;
  }

  .goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
  }
  
  /* Mobile-specific Styles */
@media (max-width: 600px) {
    body {
        text-size-adjust: none; /* Prevent text inflation on mobile */
        -webkit-text-size-adjust: none; /* For older iOS devices */
    }

    .content {
        padding: 10px;
    }

    p {
        font-size: 20px; /* Adjust font size for better readability on smaller screens */
    }

    button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

* {
  box-sizing: border-box;
}

.img {
  width: 100%;
  height: auto;
	
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}



.aside {
  background-color: #33b5e5;
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}



/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}



/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc)*/ 
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
