/* body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
} */
.wpcf7-form-control, .nice-select.wpcf7-form-control {
    background-color: var(--bz-color-common-white);
    color: var(--bz-color-text-body);
    font-size: 16px;
    font-weight: 400;
    box-shadow: none;
    border: none;
    padding: 15.5px 30px;
    border-radius: 0;
    margin-bottom: 25px;
    width: 100%;
}

.nice-select.wpcf7-form-control {
    height: auto;
    line-height: inherit;
    padding: 15.5px 30px;
}

button.wpcf7-submit.btn {
    background-color: var(--bz-color-theme-primary);
    font-family: var(--bz-ff-heading);
    color: var(--bz-color-common-white);
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 20px;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.wpcf7-form-control::placeholder {
    color: var(--bz-color-text-body);
}

.nice-select.open .list {
    width: 100%;
}
.tab-container {
    width: 80%;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.tabs {
    display: flex;
    background-color: #e0e0e0;
    border-bottom: 1px solid #ccc;
}

.tab-link {
    flex: 1;
    padding: 16px;
    cursor: pointer;
    background-color: #e0e0e0;
    border: none;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s;
}

.tab-link.active {
    background-color: #0c5f34;
    color: #fff;
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: #ffffff;
}

.row {
    display: flex;
}

.left-column {
    flex: 1;
    max-width: 50%;
}

.left-column img {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.right-column {
    flex: 1;
    max-width: 50%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-column h2 {
    color: #002e6e;
}

.right-column p {
    margin: 10px 0;
    color: #333;
}

.right-column button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #333;
    border: none;
    cursor: pointer;
}

.right-column button:hover {
    background-color: #555;
}


@media (min-width:320px) and (max-width:767px){
    .tabs {
    display: block;
}

.office-tab-content iframe {
    width: 100%;
    height: 100%;
}
}