/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.13.6.1784982138
Updated: 2026-07-25 12:22:18

*/

/* Menu Link */
#menu-main-menu > li > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

/* Underline */
#menu-main-menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px; /* Adjust distance from text */
    width: 100%;
    height: 3px;
    background: #FBBF12;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease-in-out;
}

/* Hover Effect */
#menu-main-menu > li > a:hover::after,
#menu-main-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}






@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

.vf-contact-form{
    width:100%;
    font-family:'Open Sans',sans-serif !important;
}

.vf-contact-form p{
    margin:0 !important;
    padding:0 !important;
}

.vf-row{
    display:flex !important;
    gap:8px !important;
    margin-bottom:8px !important;
}

.vf-col{
    flex:1 1 0 !important;
}

.vf-col-full{
    width:100% !important;
}

.vf-contact-form .wpcf7-form-control-wrap{
    display:block !important;
    width:100% !important;
}

/* Inputs */

.vf-contact-form input[type="text"],
.vf-contact-form input[type="email"],
.vf-contact-form input[type="tel"],
.vf-contact-form select{

    width:100% !important;
    height:36px !important;

    padding:0 12px !important;

    border:none !important;
    border-radius:4px !important;

    background:#ffffff !important;
    color:#00235A !important;

    font-family:'Open Sans',sans-serif !important;
    font-size:12px !important;
    font-weight:400 !important;

    box-sizing:border-box !important;
    outline:none !important;
}

/* Placeholder */

.vf-contact-form input::placeholder{
    color:#777 !important;
}

/* Select */

.vf-contact-form select{

    appearance:none !important;
    -webkit-appearance:none !important;
    -moz-appearance:none !important;

    padding-right:35px !important;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2300235A' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") !important;

    background-repeat:no-repeat !important;
    background-position:right 12px center !important;
}

/* Button Row */

.vf-btn-row{
    display:flex !important;
    justify-content:flex-start !important;
    align-items:center !important;
}

/* Button */

.vf-contact-form input[type="submit"]{

    width:190px !important;
    height:38px !important;

    background:#FBBF12 !important;
    color:#00235A !important;

    border:none !important;
    border-radius:4px !important;

    font-family:'Open Sans',sans-serif !important;
    font-size:13px !important;
    font-weight:700 !important;

    text-align:center !important;
    line-height:38px !important;

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    cursor:pointer !important;

    padding:0 !important;
}

.vf-contact-form input[type="submit"]:hover{
    background:#FBBF12 !important;
    color:#00235A !important;
}

/* Hide CF7 messages */

.vf-contact-form .wpcf7-not-valid-tip{
    display:none !important;
}

.vf-contact-form .wpcf7-response-output{
    margin-top:8px !important;
}

.vf-contact-form .wpcf7-spinner{
    display:none !important;
}

/* Mobile */

@media(max-width:767px){

    .vf-row{
        flex-direction:column !important;
    }

    .vf-contact-form input[type="submit"]{
        width:100% !important;
    }

}