@charset "UTF-8";
#domain-check-result {
    display: none;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
  }

  .valid {
    background-color: #38d39f;
    color: white;
  }

  .invalid {
    background-color: #ff6b6b;
    color: white;
  }

  @media only screen and (max-width: 1000px) {
    /* Ensure the full hero section is flexible */
    .hero-wrap, .hero-wrap .container-fluid, .hero-wrap .row {
        height: auto;
        display: block;
    }
    
    /* Remove any specific height styles for js-fullheight for mobile */
    .js-fullheight {
        height: auto !important;
    }
    
    /* Adjust the image to not float and to take the full width of its container */
    .hero-wrap .one-third.js-fullheight {
        order: 1;
        width: 100%;
        height: auto;
        position: static;
        float: none;
    }
    
    /* Place the text block after the image and adjust its width */
    .hero-wrap .one-forth.js-fullheight {
        order: 2;
        width: 100%;
        position: static;
        float: none;
        display: block;
        padding: 1em;
        text-align: center; /* Center the text for mobile */
    }
    
    /* Ensure the text has padding and is centered */
    .hero-wrap .text {
        margin-top: 20px; /* Add some space above the text */
        padding: 0 15px;
    }
    }
    .typing-effect-container {
    display: inline-block;
    overflow: hidden; /* Hide the overflowing content */
    white-space: nowrap; /* Keep the text in a single line */
    border-right: 3px solid; /* Cursor-like right border */
    animation: blink 1s step-end infinite;
    }
    
    @keyframes blink {
    50% { border-color: transparent; }
    }