.contact-page-section {
    position: relative;
}

.contact-info-box {
    position: relative;
    margin-bottom: 30px;
    border-right: 1px solid #cdcdcd;
}

.box-inner {
    position: relative;
    padding: 40px 0px 40px 0px;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 12%);
}

.contact-info-box .box-inner {
    position: relative;
    padding: 0px 9px;
}

.contact-info-box .box-inner a {
    color: var(--text-black);
}

.page-title {
    position: relative;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 450px;
    padding-top: 0px;
    padding-bottom: 0px;
    justify-content: center;
    align-items: flex-end;
}

.contact-info-box .box-inner h5 {
    position: relative;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.contact-info-box .box-inner p {
    position: relative;
    color: var(--text-black);
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.7em;
}

.contact-info-box:nth-last-child(1) {
    border-right: 0px solid #cdcdcd;
}

.contact-page-section .inner-container {
    position: relative;
    /* padding: 40px 40px; */
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.contact-form {
    position: relative;
    margin-top: 0rem;
}

.contact-form .form-group {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    display: block;
}

.contact-form .ui-selectmenu-button.ui-button,
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    font-size: 13px;
    color: #060606;
    line-height: 34px;
    font-weight: 400;
    border-radius: 0px;
    padding: 10px 20px 10px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    resize: none;
}

.contact-map {
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 0px 5px #ccc;
}

.contact-map iframe {
    position: relative;
    /* top: -4rem; */
    height: 108%;
}

.contact-page-section .sec-title h3 {
    margin-bottom: 2rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

/* Hide default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
}

/* Circle */
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Checked state */
input:checked+.slider {
    background-color: #4CAF50;
    /* change color when ON */
}

input:checked+.slider:before {
    transform: translateX(22px);
}

/* Rounded style */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Contact Us Submit Button Styling Override */
.contact-form .theme-btn.btn-style-one {
    position: relative;
    display: inline-block;
    background: var(--btn-color);
    color: #fff !important;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    transition: 0.4s ease;
    border: none !important;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: none;
    line-height: normal;
    height: auto;
}

.contact-form .theme-btn.btn-style-one .txt {
    position: relative;
    z-index: 2;
    color: #fff;
}

.contact-form .theme-btn.btn-style-one:hover {
    background: var(--btn-hover);
    color: #fff !important;
}

.contact-form .theme-btn.btn-style-one:before {
    display: none;
}