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

/*button style normal*/

.btn-logia a {
  color: #212121 !important;
  background: var(--e-global-color-primary) !important;
  position: relative;
  color: white!important;
  overflow: hidden;
  border: solid 2px var(--e-global-color-primary);
  z-index: 1;
  display: flex;
  transition: color 250ms ease;
}

.btn-logia a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: white;
  z-index: -1;

  transition: width 250ms ease;
}

.btn-logia a:hover {
  color: var(--e-global-color-primary)!important;
}
.btn-logia a:hover::before {
  width: 100%;
}

/*button style reverse*/

.btn-logia.reverse a {
  background: white!important;
  color: var(--e-global-color-primary)!important;
  border: var(--e-global-color-primary) 2px white;
}
.btn-logia.reverse a::before {
  background-color: var(--e-global-color-primary);
}
.btn-logia.reverse a:hover {
  color: white!important;
}

/*button style outline*/

.btn-logia.outline a {
  background: white!important;
  color: var(--e-global-color-primary)!important;
  border: solid 2px var(--e-global-color-primary);
}
.btn-logia.outline a::before {
  background-color: var(--e-global-color-primary);
}
.btn-logia.outline a:hover {
  color: white!important;
}

/*button style outline reverse*/

.btn-logia.outline.reverse a {
  background: var(--e-global-color-primary)!important;
  color: white!important;
  border: solid 2px white;
}
.btn-logia.outline.reverse a::before {
  background-color: white;
}
.btn-logia.outline.reverse a:hover {
  color: var(--e-global-color-primary)!important;
}

/* --------- END BUTTONS --------- */