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;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: 'figtree';
  src: url('../assets/fonts/Figtree/static/Figtree-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'figtree';
  src: url('../assets/fonts/Figtree/static/Figtree-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
.container {
  margin: 0 auto;
  max-width: 1280px;
  width: calc(100% - 40px);
}
@media (max-width: 768px) {
  .container {
    max-width: 768px;
  }
}
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
footer .content {
  margin: 0 auto;
  max-width: 1280px;
  width: calc(100% - 40px);
  height: 90px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
@media (max-width: 768px) {
  footer .content {
    max-width: 768px;
  }
}
footer .content a {
  font-family: 'figtree', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.2em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
  text-decoration: none;
}
footer .content a:first-child {
  text-align: left;
}
footer .content a:last-child {
  text-align: right;
}
@media (max-width: 768px) {
  footer .content {
    height: fit-content;
    padding-bottom: 40px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  footer .content a:first-child {
    text-align: center;
  }
  footer .content a:last-child {
    text-align: center;
  }
}
body {
  background-color: #303030;
}
.img-bg,
.title-logo,
.overlay {
  transition: opacity 2s ease-out;
  opacity: 0 !important;
}
.img-bg.opened,
.title-logo.opened,
.overlay.opened {
  opacity: 1 !important;
}
/* Overlay */
.overlay {
  position: fixed;
  top: -50px;
  left: -50px;
  width: 100%;
  height: calc(200dvh);
  z-index: 90;
  pointer-events: none;
  background-image: url('../assets/images/layerDua.png');
  background-repeat: repeat;
  background-size: 100vw 100vh;
  opacity: 0.8;
  transition: background-image 1s ease-in-out;
  background-position: top left;
}
@media (max-width: 768px) {
  .overlay {
    width: 200% !important;
    height: calc(200dvh);
    background-image: url('../assets/images/layerDuaMobile.png');
    background-repeat: repeat;
    background-size: 100vw 100vh;
    background-position: top left;
  }
}
.home-page {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}
.home-page .first-layer-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .first-layer-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}
.home-page .first-layer-wrapper .title-logo {
  height: auto;
  width: 100%;
  display: flex;
}
.home-page .first-layer-wrapper .title-logo img {
  object-fit: contain;
}
.home-page .first-layer-wrapper .title-logo img.mobile {
  display: none;
}
.home-page .first-layer-wrapper .title-logo img.desktop {
  display: flex;
}
@media (max-width: 768px) {
  .home-page .first-layer-wrapper .title-logo img.mobile {
    display: flex;
  }
  .home-page .first-layer-wrapper .title-logo img.desktop {
    display: none;
  }
}
