/***** RESET *****/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
html {
  line-height: 1.5;
  background: linear-gradient(90deg, #d1fae5 0%, #ffffff 100%);
  color: #18181b;
  font-family: 'Poppins', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  height: 100%;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
  --container-width: 1440px;
  --container-padding: 32px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1440px) {
  :root {
    --container-width: 1200px;
  }
}
@media (max-width: 1200px) {
  :root {
    --container-width: 992px;
  }
}
@media (max-width: 992px) {
  :root {
    --container-width: 768px;
  }
}
@media (max-width: 768px) {
  :root {
    --container-width: 576px;
  }
}
@media (max-width: 576px) {
  :root {
    --container-width: 100%;
    --container-padding: 16px;
  }
  body {
    font-size: 14px;
  }
}


body{
  overflow-x: hidden;
}

.hero-slider {
  position: relative;
  overflow-x: hidden;
}

.hero-slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;

  display: flex;
  align-items: center;
  justify-self: center;
  flex-direction: column;
  z-index: 11;
}

.slider_overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  pointer-events: none;
}

