
/* Contact Page ---------------------------------- */ 
.contact-feature {
    &-row {
        justify-content: center;
        margin-left: 25px;
        margin-right: 25px;
        @include lg {
            margin: -24px -12px 30px -12px !important;
            --bs-gutter-y: 24px;
        }
    }
    background-color: $white-color;
    padding: 40px 30px 40px 40px;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    @media (max-width: 1300px) and (min-width: 1200px) {
        padding: 25px;
    }
    @include md {
        padding: 20px;
    }
    @include sm {
        padding: 40px;
        border-radius: 20px;
    }
    @include vxs {
        padding: 20px;
        gap: 15px;
    }
    .box-icon {
        @include equal-size-lineHeight(70px);
        font-size: 34px;
        color: $white-color;
        background-color: $theme-color;
        border-radius: 16px;
        text-align: center;
    }
    .box-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    .box-text {
        line-height: 24px;
        max-width: 240px;
        a {
            display: block;
            max-width: fit-content;
            color: inherit;
            &:hover {
                color: $theme-color;
            }
        }
    }
}

.contact-form {
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background-color: $white-color;
    padding: 60px;
    background-size: auto;
    background-position: right 60px bottom;
    .sec-title {
        margin-bottom: 45px;
        @include md {
            margin-bottom: 25px;
            text-align: center;
        }
    }
    .input-wrap {
        max-width: 540px;
        @include md {
            max-width: 100%;
        }
    }
    .row {
        --bs-gutter-x: 20px;
    }
    @include lg {
        padding: 50px;
        background-position: right 20px bottom;
    }
    @include md {
        background-image: none !important;
    }
    @include xs {
        padding: 40px 20px;
        border-radius: 20px;
    }
}
.rounded-20 {
    border-radius: 20px;
    overflow: hidden;
}
.form-text {
    font-size: 16px;
}
.contact-map {
    line-height: 0px;
    border-radius: 30px;
    padding: 40px;
    background-color: $white-color;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    @include lg {
        padding: 30px !important;
    }
    @include xs {
        padding: 20px !important;
        border-radius: 20px;
    }
    iframe {
        width: 100%;
        height: 500px;
        border-radius: 10px;
        filter: invert(1) grayscale(1) brightness(1) invert(1);
        @include lg {
            height: 400px;
        }
        @include md {
            height: 350px;
        }
    }
}
