.contact-bg {
    background: linear-gradient(90deg, rgba(217, 187, 255, 0.4) 0%, rgba(217, 187, 255, 0.4) 100%);
    display: flex;
    padding: 20px 10px;
    border-radius: 8px;
}


.form-input {
    --width-of-input: 200px;
    --border-height: 1px;
    --border-before-color: rgba(221, 221, 221, 0.39);
    --border-after-color: #5891ff;
    --input-hovered-color: #4985e01f;
    position: relative;
    width: var(--width-of-input);
}

.form-control.custom-input {
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1.5px solid #dca6e6;
}

.form-control.custom-input:focus {
    outline: none;
    box-shadow: none;
}

.custom-input::placeholder {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    opacity: 1;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(to right, #E83E8C, #6610F2);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.btn-contact .btn-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact:hover {
    padding-right: 30px;
}

.btn-contact:hover .btn-text {
    transform: translateX(-8px);
}

.btn-contact:hover .btn-icon {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    opacity: 1;
    background-color: #fff;
}


.contact-map {
    margin-top: 100px;
    padding: 0;
}

.contact-map .container {
    position: relative;
    height: 550px;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.contact-info-card {
    position: absolute;
    top: -50px;
    left: 70px;
    z-index: 100;
    border-radius: 0 8px 8px 8px;
    background-color: #7923D8;
    color: #fff;
    padding: 60px 15px 0px 15px;
}

.contact-info-card::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -35px;
    width: 0;
    height: 0;
    border-bottom: 52px solid #43028C;
    border-left: 35px solid transparent;
}

.contact-info-card .card-body {
    width: 355px;
}

.contact-info-card .card-body {
    color: white;
}

h2.card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 5%;
}


.icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: #fff;
    flex-shrink: 0;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-wrapper i {
    font-size: 24px;
    text-align: center;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

.info-text {
    font-family: 'Nunito', sans-serif;
    line-height: 25px;
    letter-spacing: 0%;
}
