/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


.arrow-button {
    transition: all 0.5s;
}
.arrow-button:hover {
	color: #ffffff !important; /* білий текст */
	background-color: #0088cc !important; /* новий фон при наведенні */
}
.arrow-button svg path {
    transition: all 0.5s;
}
.arrow-button:hover svg path {
	stroke: #ffffff;
}



/* hover circle */


.arrow-circle circle {
    fill: transparent;
    stroke: #88ccee;
    transition: fill 0.5s ease;
}

.arrow-circle path {
    stroke: #88ccee;
    fill: none;
    transition: stroke 0.5s ease;
}

.arrow-circle:hover circle {
    fill: #0088cc;
    /* stroke не змінюємо — залишаємо світлим */
}

.arrow-circle:hover path {
    stroke: #ffffff;
}

/* nav menu*/

.bricks-mobile-menu-toggle {
  position: relative;
  z-index: 10; /* щоб було над контентом */
}

.bricks-mobile-menu-toggle::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
}