body {
    background-color: rgba(14, 14, 14, 1) !important;
}
section{position: relative;z-index: 99;overflow: hidden;}
.ScrollSmoother-wrapper {
    display: none !important;
}

.main-ai-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
}


p {
    color: rgba(152, 152, 152, 1) !important;
}

.main-ai-container .logo {
    display: block;
    margin-bottom: 2rem;
}

.main-ai-container .logo img {
    height: 60px;
}

.main-ai-container .container {
    text-align: center;
    color: white;
}

.main-ai-container .img {
    margin-bottom: 2rem;
}

.btn {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    transition: all 0.5s ease;
    box-shadow: 0px 0px 50px 0px rgba(239, 206, 133, 0.25);
    border-radius: 50rem;
}

.btn:hover {
    color: white !important;
}

.btn-back {
    background-color: #000;
    margin-right: 1rem;
}

.btn-back img {
    height: 18px;
}

.ai-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0 !important;
}

.ai-wizard-section {
    padding-top: 10%;
}

.ai-wizard-content {
    text-align: center;
}

.progress {
    width: 200px;
    height: 6px;
    background-color: #ffffff15;
}

.progress .progress-bar {

    background: linear-gradient(90deg, #EFCE85 0%, #EF7F50 100%);
    border-radius: 50rem;
    transition: width 1s ease;
}

.form-control,.form-select {
    background-color: #555;
    border: #444;
    color: #eee;
    overflow: hidden;
}

.form-control::placeholder {
    color: #ddd
}

.ai-header .back img {
    height: 32px;
}

.ai-header .logo img {
    height: 50px;
}

.ai-wizard-container {
    text-align: center;
}

.check-btn {
    background: rgba(217, 217, 217, 0.1);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 0.3rem 1.5rem;
    border-radius: 50rem 0 50rem 50rem;
    cursor: pointer;
    transition: background-color 0.5s ease;
    margin: 0.5rem;
}

.form-data {
    padding: 2rem 0 1rem 0;
}

.check-btn:hover {
    background-color: black;
}

.check-btn.active {
    background: linear-gradient(90deg, #EFCE85 0%, #EF7F50 100%);
    color: black;
}

.ai-wizard-container .form .form-data {
    max-width: 70%;
    display: inline-block;
}

.form-data-filed {
    width: 350px;
}

.ai-wizard-container .form .container {
    display: none;
    overflow: hidden !important;
}

.ai-wizard-container .form .container.active {
    display: block;
}

.or_container {
    opacity: 20%;
}



.ocean {
    height: 5%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #EF7F50;
}

.wave {
    background: url('../img/wave.svg') repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {

    0%,
    100% {
        transform: translate3d(0, -25px, 0);
    }

    50% {
        transform: translate3d(0, 5px, 0);
    }
}

@media (max-width: 768px) {
    .or_container {
        margin-top: 2rem;
    }

    .ai-header {
        position: relative !important;
    }

    .ai-wizard-container .form .form-data {
        max-width: none !important;
        width: auto !important;
        display: block !important;
    }

    .ai-wizard-section {
        padding-top: 0 !important;
    }

    .ai-wizard-container h2 {
        margin-top: 1rem;
    }
}