/* contact us */

.contact_us {
    min-height: 100vh;
}
.contact_box {
    background-color: var(--background-color);
}
.contact_box .content_box_background {
    padding: 50px;
}
.contact_box .content_box_background .content_box_glass {
    background-color: var(--background-color);
    border: 1px solid #ddd;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    gap: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.contact_box .content_box_background .contact_form {
    flex: 5;
}
.contact_box .content_box_background .contact_form .content_back {
    position: relative;
    overflow: hidden;
    gap: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.contact_box .content_box_background .contact_form .content_back .colme {
    width: 100%;
}
.contact_box .content_box_background .contact_form .content_back p {
    margin-bottom: 12px;
}
.contact_box .content_box_background .contact_form .content_back span {
    width: 100%;
    display: block;
}
.contact_box .content_box_background .contact_form .content_back textarea {
    background-color: #f0f5f7;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 10px 14px;
    font-size: 1rem;
    width: 100%;
    display: block;
    outline: none;
    min-height: 270px;
}
.contact_box .content_box_background .contact_form .content_back input {
    background-color: #f0f5f7;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 10px 14px;
    font-size: 1rem;
    width: 100%;
    display: block;
    outline: none;
}
.contact_box .content_box_background .contact_form .content_back .wpcf7-not-valid-tip {
    padding-left: 8px;
    font-size: 0.8rem;
}
.contact_box .content_box_background .contact_form .content_back .wpcf7-submit {
    background-color: var(--main-color);
    color: #fff;
}
.contact_box .content_box_background .contact_form .content_back .wpcf7-submit:hover {
    background-color: var(--secondary-color);
}
.contact_box .content_box_background .contact_form .content_back .wpcf7-spinner {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.47);
    position: absolute;
    padding: 10px;
    z-index: 20;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: -5px;
    margin: 5px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 0;
    opacity: 1;
}
.contact_box .content_box_background .contact_form .content_back .wpcf7-spinner:before {
    background-color: var(--main-color);
    left: 50%;
    right: 50%;
    top: 50%;
    height: 8px;
    width: 8px;
}
.contact_box .content_box_background .contact_form .wpcf7-response-output {
    border-radius: 8px;
    margin-top: 10px;
    font-size: 1rem;
}


.contact_box .content_box_background .contact_sidebar {
    border-right: 1px solid #ddd;
    padding-right: 30px;
    position: sticky;
    flex: 2;
    top: 0;
}
.contact_box .content_box_background .contact_sidebar div {
    background-color: #f0f5f7;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-top: 12px;
    padding: 14px;
}
.contact_box .content_box_background .contact_sidebar div:first-child h3 {
    padding-top: 0;
    margin-top: 0;
    border: none;
}
.contact_box .content_box_background .contact_sidebar h3 {
    /*border-top: 1px solid #ccc;*/
    font-size: 1.5rem;
    /*padding-top: 15px;*/
    margin: 0 0 15px 0;
}
.contact_box .content_box_background .contact_sidebar p {
    display: block;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--secondary-text-color);
    margin: 0;
}
.contact_box .content_box_background .contact_sidebar a {
    display: block;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--secondary-text-color);
}
.contact_box .content_box_background .contact_sidebar a:hover {
    color: var(--main-color);
}

.contact_box .content_box_background .contact_sidebar ul {
    padding: 0;
    margin: 0;
}
.contact_box .content_box_background .contact_sidebar ul li {
    display: inline-block;
}
.contact_box .content_box_background .contact_sidebar ul li a {
    color: var(--secondary-text-color);
    position: relative;
    font-size: 1rem;
    padding: 4px 7px;
}
.contact_box .content_box_background .contact_sidebar ul li a:after {
    content: '';
    background-color: var(--main-color);
    border-radius: 50%;
    position: absolute;
    height: 6px;
    width: 6px;
    right: -6px;
    top: 14px;
}
.contact_box .content_box_background .contact_sidebar ul li:last-child a:after {
    display: none;
}