* {
	padding: 0;
	margin: 0;
	list-style: none;
	outline: none;
	font-family: 'Montserrat', sans-serif;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	color: black;
}

a,
span,
p,
b,
h1,
h2,
h3,
h4,
h5 {
	color: black;
}

a {
	text-decoration: none;
}

button, a {
	outline: none;
  }
  

.btn, a {
    outline: none;
    -webkit-tap-highlight-color: transparent; /* Для мобільних браузерів */
}

.btn:focus, a:focus, .btn:active, a:active {
    outline: none; /* Видалити обводку при фокусі */
    box-shadow: none; /* Видалити тінь при фокусі */
    -webkit-tap-highlight-color: transparent; /* Для мобільних браузерів */
}

#back-to-top {
    outline: none; /* Забирає стандартну обводку */
    box-shadow: none; /* Забирає тінь навколо елемента */
}

#back-to-top:focus, .back-to-top:active {
    outline: none; /* Для фокусованого елемента */
    box-shadow: none; /* Прибирає можливу тінь на мобільних */
}

#back-to-top:focus-visible {
    outline: none;
    box-shadow: none;
}

