body{
font-family: Georgia, 'Times New Roman', Times, serif;

}

#container{
    margin: auto;
    text-align: center;
    justify-content: center;
    width: 95%;
    height: 100%;
    /*background-image: url("img/winter-bg1.jpg");*/
    background-color: azure;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    padding: 5px;
    border-radius: 8px;
}

#logo{
    color: #1E90FF;
    background-color: black;
}

h1{
    color: #1E90FF;
    font-size: 1.8vw;
    letter-spacing: -1px;
    padding-bottom: 2vh;
    padding-top: 2vh;
    background-color: black;
    margin-bottom: none;
}
h1 .span{
    color: azure;
    font-size: 1.2vw;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2{
    padding: 10px;
    color: black;
    font-size: 1.5vw;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: underline;
}
ul{
    list-style-type: none;
}
#service-types{
    margin-top: 1.2vh;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.service-card{
     display: flex;
     flex: 1 1 1 auto;
     flex-direction: column;
     width: 30%;
     border: 1px solid #1E90FF;
     border-radius: 5px;
     padding: 3vw;
     justify-content: center;
}
.service-card header{
    flex: auto;
    font-size: 2vw;
    width: 100%;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.service-card p{
    flex: auto;
    width: 100%;
}

#footer{
    margin-top: none;
    color: white;
    font-size: 1vw;
    padding-bottom: 2vh;
    padding-top: 2vh;
    background-color: black;
    text-align: center;
}

#mission-statement{
    background-color: #6495ED;
    border-radius: 5px;
    margin-top: 1.2vh;
    border: none;
    display: block;
    width: 100%;
}
#mission-statement p{
    padding-bottom: 10px;
    color: white;
    
}
#aboutus-block{
    background-color: lightcyan;
    border-radius: 5px;
    margin-top: 1.2vh;
    border: none;
    display: block;
    height: fit-content;
    width: 100%;
    overflow: auto;
}
#aboutus-block p{
    padding-bottom: 10px;
    padding-left: 5vw;
    color: black;
    
}
#aboutus-block img{
    max-width: 30%;
    float: right;   
    object-fit: contain;
    padding-left: 5vw;
    padding-right: 5vw; 
}
#ps-block{
    margin-top: 1.2vh;
    border: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}
#ps-block p{
    padding-bottom: 10px;
    color: black;
    flex: auto;
}
#ps-block img{
    flex: 1 1 auto;
    max-width: 100%;
}
#list1{
    font-size: 1.5vw;
    display: flex;
    flex-direction: row;
    width: 100%;
    text-align: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}
#list1a .list1a{
    flex: auto;
    width: 50%;
}

#head-img{
    margin-top: -2vh;
    width: 100%;
}
#head-img img{
    background-color: white;
    width: 100%;
    height: 30vh;
}

.btn-1{
    background-color: #6495ED;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
}
.btn-1:hover{
    background-color: #1E90FF;
}

.btn-2{
    background-color: #6495ED;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
    text-align: center;
    display: flex;
  justify-content: center;
  align-items: center;
    width: 150px;
    height: 35px;
    margin: auto;
}
.btn-2:hover{
    background-color: #1E90FF;
}

.fright{
    float: right;
    padding-right: 5vw;
    padding-left: 5vw;
}
.thirty-percent{
width: 35%;
}
.rounded{
    border-radius: 25%;
}
.rounded5{
    border-radius: 5%;
}
.rounded10{
    border-radius: 10%;
}
.rounded25{
    border-radius: 25%;
}
.rounded50{
    border-radius: 50%;
}




#over-box{
   position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 90%; /* Full width (cover the whole page) */
  height: 90%; /* Full height (cover the whole page) */
  top: 5%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  border: 2px solid #1E90FF;
  border-radius: 3%;
  background-color: white; /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
  text-align: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}
#over-box p{
    padding: 5vw;
}

.callout {
  position: fixed;
  top: 35px;
  right: 45px;
  margin-left: 20px;
  max-width: 300px;
}

/* Callout header */
.callout-header {
  padding: 5px 15px;
  background: #1E90FF;
  font-size: 1.5vw;
  color: white;
}

/* Callout container/body */
.callout-container {
  padding: 15px;
  background-color: #fff;
  color: black;
  text-align: center;
  font-size: 1vw;
  text-transform: uppercase;
}

/* Close button */
.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* Change color on mouse-over */
.closebtn:hover {
  color: lightgrey;
}

.noshow{
    display: none !important;
}

.fade-in{
    /* Initial state (optional, but good practice) */
    opacity: 0; 
    /* Apply the animation */
    animation: fadeIn .5s ease-in-out forwards;
}

@keyframes fadeIn {
    /* Starting point of the animation */
    0% {
        opacity: 0;
    }
    /* Ending point of the animation */
    100% {
        opacity: 1;
    }
}
