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

a {
	outline: none !important;
}

.link-more {
	position: relative;
}

.link-more::after {
	content: "";
  height: 1px;
  background: #1c2c34;
  position: absolute;
  width: 100%;
  transform: translateX(-50%);
  left: 50%;
  bottom: 2px;
  transition: all 0.3s;
}

.link-more:hover::after {
	width: 0;
  background: #aa998a;
}

/* Swiper */
.swiper-pagination {
	gap: 15px;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 21px;
  height: 21px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  background: transparent;
}

.swiper-pagination .swiper-pagination-bullet {
	margin: 0;
  position: relative;
}