/* 
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 */
body{
    font-family: "Inter", Sans-serif;
}
.container{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
#site-header,#site-footer{
    display: none;
}
.navigation-menu ul{
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 0 0;
}
.navigation-menu ul li{
    padding: 0 0;
    margin: 0 0 0 0;
    display: block;
}
.navigation-menu ul li a{
    padding: 10px 20px;
    display: block;
    font-size: 16px;
    color: #000;
    line-height: normal;
    transition: all 0.5s ease;
}
.navigation-menu ul li a:hover{
    color: #f89406;
}
.navigation-menu ul li.current_page_item a{
    background-color: #f89406;
    color: #fff;
}



.banner-img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.banner-wrap{
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
}
.banner-text{
    margin: 0 0 0 auto;
    display: table;
}
.banner-text h2{
    margin: 0;
    padding: 10px 15px;
    color: #fff;
    font-weight: 500;
    background-color: #f89406;
}



.form-group{
    margin: 0 0 20px 0;
}
body .form-group .form-control{
    width: 100%;
    height: 45px;
    padding-left: 15px;
    color: #000;
    border-radius: 0;
    border: none;
    box-shadow: none;
    outline: none;
}
body .form-group textarea.form-control{
    height: 130px;
    padding-top: 14px;
}
body .form-button .form-btn{
    width: 100%;
    background-color: #000;
    border-radius: 0;
    border: 1px solid #000;
    color: #fff;
}
.wpcf7 form .wpcf7-response-output{
    color: #000;
}
.wpcf7-spinner{
    position: absolute;
    right: 0;
}



table tr th,
table tr td{
    font-size: 16px;
    line-height: normal;
    vertical-align: middle;
    padding: 10px;
    text-align: center;
    color: #000;
    border-color: #ededed;
}
table tr th{
    background-color: #f89406;
    color: #fff;
}



@media screen and (max-width: 1199px){
    .container{
        max-width: 930px;
    }
}
@media screen and (max-width: 991px){
    .container{
        max-width: 730px;
    }
    .navigation-menu {
        max-width: 300px;
        width: 100%;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        left: -100%;
        top: 0;
        z-index: 11;
        height: 100%;
        transition: all 0.5s ease;
        overflow-y: auto;
        padding: 50px 0 30px 0;
        background-color: #fff;
    }
    .navigation-menu.open-menu{
        left: 0;
    }
    .navigation-menu ul li{
        width: 100%;
    }
    .close-btn{
        position: absolute;
        top: 15px;
        right: 20px;
        cursor: pointer;
    }
    .toggle-btn {
        cursor: pointer;
    }

    .banner-wrap{
        bottom: 50px;
    }
}


@media screen and (max-width: 767px){
	table {
	  display: block;
	  overflow-x: auto;
	  white-space: nowrap;
	}
    .container{
        max-width: 630px;
        padding: 0 15px;
    }

    .banner-wrap{
        bottom: 20px;
    }
    .banner-text h2{
        font-size: 16px;
        line-height: normal;
        padding: 5px 10px;
    }
}