*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
p,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
:root {
  --font: "Inter";
}
body {
  font-family: var(--font), sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  color: #000;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}
.rapimov-footer .svg-inline--fa{
  height: 16px;
  width: 16px;
}
input,
select,
textarea,
button {
  font: inherit;
}
a,
button {
  cursor: revert;
  transition: all 0.3s;
  text-decoration: none;
}
button {
  vertical-align: middle;
}
ol[class],
ul[class],
menu[class] {
  list-style: none;
}
p {
  line-height: 1.5;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
textarea {
  user-select: auto;
  -webkit-user-select: auto;
}
textarea {
  white-space: revert;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
:where(pre) {
  all: revert;
}
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}
::marker {
  content: initial;
}
:where([hidden]) {
  display: none;
}

:where(dialog:modal) {
  all: revert;
}
.main-content-section {
  flex-grow: 1;
}
button:focus{
  box-shadow: none!important;
}
button:focus-visible {
  box-shadow: none!important;
}
.owl-carousel .owl-dots {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 11px;
}
.owl-carousel .owl-dot{
  height: 10px;
  width: 10px;
  display: block;
  background: #dddddd!important;
  border-radius: 50px;
  transition: all 0.5s;
}
.owl-carousel .owl-dot.active{
  background: #0CB8B6!important;
  width: 20px;
}
.custom-list {
  display: inline-grid;
  gap: 0.3rem;
}
.custom-list li {
  position: relative;
  padding-left: 1.5rem; 
  transition: all 0.5s;
}
.custom-list li::before {
  content: "►";
  position: absolute;
  left: 0;
  color: #0CB8B6;
  font-size: 16px; 
  font-weight: 600;
}
.custom-list li a {
  color: #0CB8B6;
  font-weight: 600;
}
.custom-list li:hover {
  margin-left: 12px;
}