.contact-info {
    padding: 30px;
    box-shadow: rgb(0 0 0 / 12%) 0px 3px 8px;
    height: 100%;
}
.contact-info .content_button_link {
    color: var(--tp-primary);
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-form form .bp_form_field:not(:has(textarea)) {
    width: calc((100% / 3) - 15px);
}

.contact-form form .bp_form_field:not(:has(textarea, button)) input {
    border: none;
    border-bottom: 1px solid var(--tp-primary);
}

.contact-form form .bp_form_field:has(textarea) {
    width: 100%;
}

.contact-form form .bp_form_field textarea {
    border: none;
    border-radius: 10px;
    border-bottom: 1px solid var(--tp-primary);
}

.contact-form form .bp_form_field:last-child {
    margin: auto;
    text-align: center;
    width: 100%;
}

.contact-form form .bp_form_field button {
    position: relative;
    background-color: var(--tp-primary);
    color: #fff;
    border: 1px solid var(--tp-primary);
    overflow: hidden;
    z-index: 1;
    transition: all .4s;
}

.contact-form form .bp_form_field button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    transform-origin: center center;
    transition: all .5s;
    z-index: -1;
}

.contact-form form .bp_form_field button:hover {
    color: var(--tp-primary);
    transition: all .5s;
}

.contact-form form .bp_form_field button:hover::before {
    transform: translateX(-50%) scale(10);
    transition: all .5s;
}


@media (max-width: 767.98px) {
    .contact-form form .bp_form_field:not(:has(textarea)) {
        width: 100%;
    }
}













.mega-menu{
    display:flex;
    width:100%;
    min-height:500px;
    background:#fff;
    border:1px solid #ddd;
}

.mega-menu__left{
    width:260px;
    border-right:1px solid #eee;
}

.mega-menu__right{
    flex:1;
    padding:20px;
}

.menu-item{
    padding:12px 20px;
    cursor:pointer;
}

.menu-item.active{
    background:#f5f5f5;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.menu-box h4{
    margin-bottom:10px;
}

.menu-box ul{
    padding:0;
    margin:0;
    list-style:none;
}

.menu-box li{
    margin-bottom:8px;
}
