/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.custom-menu li.menu-btn a {
    display: inline-block !important;
    padding: 6px 22px !important;
}
.custom-menu li.btn-blue a{
    background: #2F75E1 !important;
    color: #ffffff !important;
}
.custom-menu li.btn-blue a:hover,
.custom-menu li.btn-blue.current-menu-item a {
    background: #E50083 !important;
    color: #ffffff !important;
}


@media(max-width: 1280px) {
    .custom-menu > ul {
        display: flex !important;
        gap: 15px !important;
    }
    .custom-menu li.menu-item a {
        font-size: 18px !important; 
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
.custom-menu li.menu-item a {
    font-size: 15px !important;
}

}


.form-wrap {
    display: flex;
    flex-direction: column;
    gap: 29px;
}
.form-wrap .form_field {}
.form-wrap .form_field p {
    margin: 0px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.form-wrap .form_field label {
     white-space: nowrap; 
    flex-shrink: 0;
}
.form-wrap .form_field .wpcf7-form-control-wrap {
    flex: 1;
    min-width: 0;
}
.form-wrap .form_field input.wpcf7-text {
    border-radius: 0;
    background: no-repeat;
    border: 0;
    border-bottom: 1px solid #000;
    padding: 0;
}

.form-wrap .form_field input.wpcf7-text:focus,
.form-wrap .form_field input.wpcf7-text:focus-visible,
.form-wrap .form_field .wpcf7-textarea:focus,
.form-wrap .form_field .wpcf7-textarea:focus-visible {
    outline: 0;
}

.form-wrap .form_field .wpcf7-textarea {
    border-radius: 0;
    border: 0;
    padding:15px;
    height: 197px;
}

.form-wrap .form_field .wpcf7-submit {
    padding: 11px 21px 11px 21px;
    font-size: 20px;
}

.form-wrap .form_button p {
    justify-content: end;
    flex-direction: row-reverse;
}


#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 69px;
    height: 69px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;    
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 0;
}

#backToTop svg {
    width: 69px;
    height: 69px;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-3px);
}
