/* 
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 */

.na-tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}
.na-tab {
	display: inline-block;
	background: none;
	border: 0px;
	border-radius: 0px;
	cursor: pointer;
	font-size: 12px;
	line-height:16px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #828282;
	padding: 0px;
	transition: color 0.25s ease;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}
.na-tab:hover {
	color: #000;
	background: none;
}
.na-tab.active {
	color: #000;
	font-weight: 600;
	background: none;
	border-bottom: 1px solid #000;
}
.na-tab.active::after {
	width: 100%;
}
.na-panels {
	position: relative;
}
.na-panel {
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
.na-panel.active {
	position: relative;
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}


@media (max-width:480px){
	.na-tabs{
		flex-wrap: wrap;
		row-gap: 15px;
        column-gap: 20px;
	}
	.na-tabs button, .na-tabs a{
		width: 46%;
   	 	padding: 18px 16px;
   	 	text-decoration: none;
   	 	border: 1px solid #000;
		text-align: center;
	}
}

