.contact-form-box {
    color: white;
    position: relative;
    padding: 50px 0;
}

.contact-form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #232D3F;
    border-radius: 30px;
    padding: 85px 70px 50px;
    position: relative;
}


.contact-form-left {
    flex: 1;
    max-width: 234px;
}

.contact-form-left>a {
    position: absolute;
    top: -40px;
    left: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-left .logo {
    display: inline-block;
    aspect-ratio: 234/69;
    width: 234px;
    height: 69px;
}


.contact-desc {
    line-height: 1.4;
    font-weight: 400;
    font-size: 18px;

}

.contact-form {
    flex: 2;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 415px;
}

.contact-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    padding: 10px;
    flex: 1;
    width: 100%;
    font-size: 18px;
}

.contact-form input::placeholder {
    color: white;
}

.contact-form button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
    text-align: right;
}

.contact-form-right .urban-logo {
    aspect-ratio: 230/168;
}

.contact-desc {
    max-width: 235px;
}

.contact-form-wrapper-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5rem;
    width: 71%;
}

.form-success-message {
    width: 383px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.form-success-message p {
    text-align: center;
}

.contact-form {
    position: relative;
    overflow: visible;

}

.plane-wrapper {
    position: relative;
    height: 100%;
}


.contact-form-right {
    display: block;
    width: 27%;
    height: 17vh;
}

.contact-form-right .trajectory {
    width: 0;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.contact-form-right .trajectory,
.contact-form-right .plane {
    position: absolute;
    left: -85px;
    bottom: 0;
}

.contact-form-right .trajectory {
    width: 0;
    height: auto;
    transition: width 0.8s ease-in-out;
    overflow: visible;
}

.contact-form-box.animate .trajectory {
    width: 230px;
}

.contact-form-box .plane {
    transition:
        left 1.5s ease-in-out,
        bottom 1.5s ease-in-out;
}

.contact-form-box.animate .plane {
    left: 151px;
    bottom: 132px;
}

@media only screen and (max-width: 1024px) {


    .contact-form-wrapper-left {
        flex-direction: column;
        gap: 20px;
        max-width: 315px;
        width: 100%;
    }

    .contact-form-left {
        max-width: 100%;
    }

    .contact-desc {
        max-width: 100%;
    }

    .contact-form-right .urban-logo {
        max-width: 231px;
    }

    .contact-form-wrapper {
        align-items: flex-end;
        padding: 85px 30px 50px;
    }
}

@media only screen and (max-width: 768px) {

.form-success-message {
	width: 100%;
}

    .header-btn-group-bild-form::before,
    .about-us__download span:before,
    .about-us__download a:before {
        width: 70px;
        height: 70px;
        top: calc(50% - 35px);
    }

    .contact-form-box.animate .trajectory {
        width: 179px;
    }

    .contact-form-box.animate .plane {
        left: 63px;
        bottom: 82px;
    }

    .contact-form-left>a {
        top: -25px;
        left: 35px;
    }

    .contact-form-left .logo {
        aspect-ratio: auto;
        width: 150px;
        height: 45px;
    }

    .contact-form-box {
        padding: 60px 0 50px;
    }

    .contact-form-right {
        margin: 0 auto;
        height: 145px;;
    }

    .contact-form-box.animate .plane {
        width: 126px;
        height: 66px;
    }

    .contact-form-wrapper {
        padding: 62px 40px 40px;
    }

    .contact-form input,
    .contact-desc {
        font-size: 16px;
    }

    .contact-form button {
        font-size: 18px;
    }
}