#intro {
    background: url(../images/intro/sec1-bg.png) no-repeat center;
    background-size: 100% 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

#intro .container {
    padding: 130px 15px 50px;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 5;

}

.container-img {
    box-sizing: border-box;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
}
.intro__title {
    width: 100%;
    max-width: 60%;
    line-height: 100%;
    font-family: "Gilroy-Regular";
    font-size: calc(32px + (60 - 32) * ((100vw - 320px) / (1460 - 320)));
}

.intro__suptitle {
    font-size: 17px;
    opacity: .5;
    line-height: 166%;
    width: 100%;
    max-width: 45%;
}

.intro__form {
    display: flex;
    gap: 10px;
}

.intro__email {
    outline: none;
    border: none;
    width: 22%;
    position: relative;
    padding: 0 20px;
    padding-left: 45px;
    height: 60px;
    border-radius: 7px;
}
.intro__email { 
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url("../images/intro/inputemail.png");
    background-size: 25px 25px;
    background-position: 10px 50%; 
    background-repeat: no-repeat;
    transition: .3s all linear;
    overflow: hidden;

}
.intro__email.active, .intro__email:focus { 
    overflow: hidden;
    background-size: 0 0;
    padding: 0 20px;
}
.intro__submit {
    outline: none;
    height: 60px;
    border: none;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    padding: 0 55px;
    white-space: nowrap;
    border-radius: 7px;
    background: #8A39E1;
    transition: .3s all;
}
.intro__submit:hover {
    box-shadow: 0 0 5px 0 #8A39E1;
}
.intro__image {
    position: absolute;
    top: 0;
    user-select: none;
    /* z-index: -1; */
    right: 0;
}
.intro-img {
    width: 100%;
    height: 100%;
    max-height: 700px;
}
.intro-block .intro__image {
    display: none;
}