


#typed1,
    #typed2, #typed3 {
    color: white;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#typed1.fade-in,
    #typed2.fade-in, #typed3.fade-in {
      opacity: 1;
}

#typed1 {
    padding-top: 5px;
}

@media (max-width:768px){
    #typed1, #typed3 {
        font-size: 19px !important;
    }
  }

#typed2 {
    padding-bottom: 15px;
    padding-left: 5px;
}




  
  .online{
    background: #25b655;
  }
  
  .orange{
      background: #f17c57fa;
  }
  
  .blue{
    background: #3652D9;
  }
  
  .rose{
    background:#FF66CC;
  }
  
  .center {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 3px;

  }
  
  .circle {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #13ff13;
  }
  
  .pulse {
    animation: pulse-animation 1.5s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(4, 255, 17, 0.2);
    }
    100% {
      box-shadow: 0 0 0 40px rgba(0, 0, 0, 0);
    }
  }
  

  @media (max-width:768px){
    .circle {
        width: 20px;
        height: 20px;
    }
  }



  #home{
    padding-top: 3rem;
  }

  #heroSubheader{
    padding-top: 10px;
    font-weight: 100;
    
  }

  #heroSubheaderDivider{
    /* color:#3f6ee9; */
    font-size: 22px;
    padding-left: 5px;
    padding-right: 5px;
  }

  #heroSubheaderContainer{
    margin-bottom: 39px !important;
  }

  #heroImageContainer{
    margin-bottom: 39px !important;
  }

  #heroSideHeaderContainer{
    margin-top: 40px;
  }

  #heroSideHeaderText{
    margin-bottom: 100px;
  }

  .emphasizeText{
    color:#71aaff
  }

  .emphasizeTextGreen{
    color: #27dd64;
  }

  .emphasizeTextUnderline {
    text-decoration-line: underline;
    text-decoration-color: #446faf;
}

.welcomeOnline-block-extras{
    padding: 20px
}

#aboutTextContainer{
    padding: 40px 20px 45px 40px;
}

@media (max-width:768px){
    #aboutTextContainer {
        padding: 20px;
    }
  }


  .servicesSubheader{
    font-size: 18px;
  }


/*********/

 #aboutHeader{
  margin-bottom: 36px;
 }

 .form-welcome-online-text{
  font-size: 45px;
 }

#contact{
  padding-bottom: 0px;
  padding-top: 0px;
}

 @media only screen and (max-width: 739px){
  .stg-row > div.stg-m-top-gap, .stg-row > div.stg-m-top-gap-m, .stg-m-top-gap, .stg-m-top-gap-m {
    margin-top: 40px;
  }

  #contact{
    padding-bottom: 30px;
    padding-top: 100px;
  }

  .form-welcome-online-text{
    font-size: 32px;
   }

   #bottomWOlogo{
    margin-left: 10px;
   }
 }

 #bottomWOlogo{
  width: 100%
 }



 label, blockquote cite, .welcomeOnline-label{
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
 }





/**** Modals ****/
.modal-container {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.3s ease;
  opacity: 0;
}

.modal-container.show {
  display: block;
  animation: fadeIn 0.3s forwards;
}

.modal-container.hide {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; background-color: rgba(0,0,0,0.8); }
}

@keyframes fadeOut {
  from { opacity: 1; background-color: rgba(0,0,0,0.8); }
  to { opacity: 0; background-color: rgba(0,0,0,0); }
}

.modal {
  display: none;
}

.modal-content {
  position: relative;
  margin: 3% auto;
  width: 52%;
  /* box-shadow: 0 0 300px 0px #6ea5f7;
  box-shadow: 0 0 300px 0px #6ea5f780;
  box-shadow: 0 0 300px 0px #6e92f780; */
  box-shadow: 0 0 10px 0px #6e92f780;
  border-radius: 17px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s ease;
}

.modal.show .modal-content {
  animation: modalIn 0.3s forwards;
}

.modal.hide .modal-content {
  animation: modalOut 0.3s forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes modalOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.7); }
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s ease;
}

.close:hover,
.close:focus {
  color: #6ea5f7;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 1024px){
  .modal-content {
    width: 70%;
  }
}

@media only screen and (max-width: 739px){
  .modal-content {
    width: 85%;
  }
}

.modal-inside-subheaders{
  margin-bottom: 5px;
}

.modal-ul{
  padding-left: 15px;
}

.modal-ul ::marker{
  color: cornflowerblue;
}

.modal-li{
  margin-bottom: 10px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.modal-content.modal-content-adjustment{
  margin: 2% auto;
}






 /***Menu Items***/

/*** Logo ***/


  /****************ADDED HERO*/
  .hero {

    padding: 2rem;
    text-align: center;
}

.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-cta {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #0056b3;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #555;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    flex-basis: 30%;
    margin-bottom: 1rem;
}

.feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.main-cta {
    background-color: #28a745;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 2rem;
    transition: background-color 0.3s ease;
}

.main-cta:hover {
    background-color: #218838;
}

.clients {
    overflow: hidden;
    white-space: nowrap;
}

.clients-slide {
    display: inline-block;
    animation: slide 20s linear infinite;
}

.clients img {
    height: 50px;
    margin: 0 1rem;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .features {
        flex-direction: column;
    }
    
    .feature {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-cta {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    }
    
    .main-cta {
        width: 100%;
    }
}