@charset "utf-8";
/*New Additional CSS Document */


/* Scroll  To Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 30px;
  color: #ffffff;
  line-height: 0;
}
.scroll-top:hover {
  background-color: #ff9e30;
  
}
.scroll-top i:hover {
  color: #000000;
  
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/* Preloader Spinner */
.spinner-wrapper {
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
.spinner-border {
  height: 60px;
  width: 60px;
}


/* Header */
#header {
  background:#8080804d;
 height: auto;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0px 10px 0px;
}
#header img {
  max-height: 150px;
  width: auto;
}

#main-display {
min-height: 85dvh;
display: flex;
justify-content: center;
text-align: center;
background-color: #000000;
color: #ffffff;
align-items: center;
font-family: 'quicksand', Arial, Helvetica, sans-serif;
}

#main-display h2 { 
font-size: clamp(15px, 5vw, 40px); 
}

.contact {
border: 1px solid #053593;
padding: 10px;
border-radius: .5rem;
margin-top: 35px;
}

#lower-text {
    margin-top:30px;
}

.contact a {
    text-decoration: none;
}

/* Footer */
#footer {
  display: flex;
  flex-direction: column;
  align-items: center;
background:#808080;
color: #000000;
font-size: 10px;
}
.footer-copy {
padding-bottom: 10px;
text-align: center;
}
.social-links  {
display: flex;
 font-size: 25px;
 flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 10px;
}
.social-links a {
  color: #053593;
}
.social-links a:hover {
  color: #ff9e30;
}



