body {
    font-family: 'Raleway', sans-serif;
    background-color: #666;
}

p a {
	color: #FF6;
}

p a:hover {
	color: #9FF;
}

#about p a { color: #066; }
#about p a:hover { color: #F36; }

#contact p a { color: #066; }

footer span a { color: #FFF; }

.tm-logo-font {
    font-family: 'Oswald', sans-serif;
}

.tm-container {
    max-width: 1200px;
}

.parallax-window {
    min-height: 1064px;
    background: transparent;
}

.text-red-30{
    color: rgb(253, 72, 0);
    font: 30px;
}

.tm-text-yellow {
    color: #FC6;
}

.tm-text-gold {
    color: #CC9966;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.904);
    transition: text-shadow 0.3s ease; /* Add a transition for a smooth effect */
}

.tm-text-brown {
    color: #544639;
}

.tm-text-black {
    color: #000000;
}

.tm-text-green {
    color: #006666;
}

a.tm-text-black:hover {
    color: #ff7300;
}

a.tm-bg-green:hover {
    background-color: #0a8585;
}

a.tm-bg-blue:hover {
    background-color: #253b80;
}

a.tm-bg-gold:hover {
    background-color: #fdb66e;
}

.tm-bg-gold {
    background-color: #CC9966;
}

a.tm-bg-brown:hover {
    background-color: #886237;
}

.tm-bg-brown {
    background-color: #544639;
}

.tm-bg-green {
    background-color: #006666;
}

.tm-bg-blue {
    background-color: #3b7bbf ;
}

.tm-border-gold {
    border-color: #CC9966;
}


.tm-home-width {
    max-width: 436px;
}

.tm-item-container {
    max-width: 520px;
}

.tm-tr-gold {
    background-color: #CC9966;
}

tr.tm-tr-gold:hover  {
    background-color: #cca866;
    color: white;
}

.tm-tr-grey {
    background-color: #f3f2f1;
}

tr.tm-tr-grey:hover  {
    background-color: #c0c0bf;
    color: white;
}

.js-table-text {
    font-weight: 600;
    color: #000000;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.904);
    transition: text-shadow 0.3s ease; /* Add a transition for a smooth effect */
}

.input:focus {
    outline: none !important;
    border:1px solid #CC9966;
    box-shadow: 0 0 10px #b67533;
}

input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(214, 212, 212);
    opacity: 1; /* Firefox */
}
  
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgb(214, 212, 212);
}
  
input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: rgb(214, 212, 212);
}

#tm-nav {
    z-index: 1000;
    transition: all 0.3s ease;
}

#tm-nav.scroll {
    background-color: rgba(0,0,0,0.7);
}

#tm-nav li a {
    border-bottom-color: transparent;
    transition: all 0.3s ease;
}

#tm-nav li a.current,
#tm-nav li a:hover {
      border-bottom: 4px solid #CC9966;
}

.tm-text-2xl {
    font-size: 1.2rem;
    line-height: 2rem;
}

 
  

@media (min-width: 768px) {
    #tm-nav.scroll .tm-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    #tm-nav {
        width: auto;
        right: 0;
        border-radius: 5px;
    }
}

@media (max-width: 639px) {
    .parallax-window {
        min-height: 600px;
    }
}

@media (max-width: 370px) {
    .tm-menu-item {
        flex-direction: column;
    }

    .tm-menu-item-2 {
        flex-direction: column-reverse;
    }

    .tm-menu-item img {
        margin-bottom: 10px;
    }

    .tm-menu-item-2 img {
        margin-bottom: 10px;
    }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10%); }
  }

  .scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .animate-scroll {
    animation: scroll 5s linear infinite;
    display: flex;
    white-space: nowrap;
  }
  
  .animate-scroll:hover {
    animation-play-state: paused;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { 
        color: rgb(255, 255, 255); /* change to your blinking color */
        font-weight: bold;
        text-shadow: 1px 1px 5px rgba(8, 0, 0, 0.7);
        opacity: 0.7;
     }
  }
  
  .blink-row {
    animation: blink 5s infinite; /* 3 seconds = slower blink */
  }



.sponsor-scroll-wrapper {
  position: relative;
  height: 7.5rem;
  overflow: hidden;
}

.scroll-content {
  display: inline-block;
  animation: scroll-up-down var(--scroll-duration, 25s) linear infinite alternate;
  will-change: transform;
}

/* Pause on hover */
.sponsor-scroll-wrapper:hover .scroll-content {
  animation-play-state: paused;
}

@keyframes scroll-up-down {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(calc(-100% + 7.5rem));
  }
}
