@font-face {
  font-family: "Katwijk Mono re";
  src: url("../fonts/KatwijkMono-Regular.woff2") format("woff2"), url("../fonts/KatwijkMono-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Katwijk Mono li";
  src: url("../fonts/KatwijkMono-Light.woff2") format("woff2"), url("../fonts/KatwijkMono-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Katwijk Mono bd";
  src: url("../fonts/KatwijkMono-Bold.woff2") format("woff2"), url("../fonts/KatwijkMono-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Katwijk Mono bl";
  src: url("../fonts/KatwijkMono-Black.woff2") format("woff2"), url("../fonts/KatwijkMono-Black.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* VARIABLES */
/* ANIMATION */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

/* RESET CSS */
/* http://meyerweb.com/eric/tools/css/reset/
       v2.0 | 20110126
       License: none (public domain)
    */
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 {
  color: inherit;
  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;
}

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;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a, a:hover, a:active, a:visited, a:focus {
  color: inherit;
}

i,
em,
.italic-text {
  font-style: italic;
}

.left {
  float: left;
}

.right {
  float: right;
}

.wrap-clear::after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
  display: table;
  clear: both;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

:focus {
  outline: none;
}

input,
button,
textarea {
  border-radius: 0;
  appearance: none;
}

select {
  border-radius: 0;
}

textarea {
  resize: none;
}

/* COMMONS */
body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.6px;
}

ol,
ul {
  margin: 0px;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
  background-color: transparent;
}

input,
textarea {
  background: transparent;
  border: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: none;
}

a {
  color: inherit;
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4 {
  line-height: 1.4;
}

p {
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.slick-next:before,
.slick-prev:before {
  content: "";
}

.scroll-lock {
  height: 100%;
  overflow-y: hidden;
}
small {
  font-size: 13px;
}

.input[type=checkbox] {
  -webkit-appearance: checkbox;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media only screen and (min-width: 1025px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .container {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.common-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

main {
  padding-top: 30px;
  min-height: 100vh;
  background-image: url("../images/bg-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
main .header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .header .logo img {
  max-width: 200px;
}
@media (max-width: 767px) {
  main .header .logo img {
    max-width: 120px;
  }
}
main .header .logo a:hover {
  opacity: 0.8;
  transition: all 0.3s linear;
}
main .header .navs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #51205a;
}
main .header .navs a:hover {
  opacity: 0.8;
  transition: all 0.3s linear;
}
main .header .navs i {
  font-size: 28px;
}
@media (max-width: 767px) {
  main .header .navs i {
    font-size: 20px;
  }
}
main .wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
main .wrapper .window {
  padding-top: 50px;
}
@media (max-width: 767px) {
  main .wrapper .window {
    padding-top: 25px;
  }
}
main .wrapper .window .wind-1 {
  position: relative;
}
main .wrapper .window .wind-1 .copy {
  position: absolute;
  width: 40%;
  left: 15%;
  top: 14%;
}
@media (max-width: 767px) {
  main .wrapper .window .wind-1 .copy {
    width: 100%;
    left: unset;
    top: 103%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
main .wrapper .window .wind-1 .copy h2 {
  font-family: "Katwijk Mono re";
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.3;
  position: relative;
  color: #51205a;
}
@media (max-width: 767px) {
  main .wrapper .window .wind-1 .copy h2 {
    font-size: 1.5rem;
  }
}
main .wrapper .window .wind-1 .copy h2 img {
  position: absolute;
  top: -55px;
  right: 76px;
  width: 70px;
}
@media (max-width: 767px) {
  main .wrapper .window .wind-1 .copy h2 img {
    top: -147px;
    left: 0px;
    width: 40px;
  }
}
main .wrapper .window .wind-1 .copy p {
  font-family: "Katwijk Mono re";
  font-size: 1.25;
  font-size: 20px;
  color: #51205a;
  margin-top: 10px;
}
@media (max-width: 767px) {
  main .wrapper .window .wind-1 .copy p {
    margin-top: 10px;
    font-size: 16px;
  }
}
main .wrapper .window .wind-1 .copy a {
  margin-top: 20px;
  padding: 10px 20px;
  max-width: fit-content;
  font-family: "Katwijk Mono re";
  font-size: 22px;
  display: flex;
  gap: 20px;
  border: 2px solid #51205a;
  align-items: center;
  color: #51205a;
  background-color: transparent;
}
@media (max-width: 767px) {
  main .wrapper .window .wind-1 .copy a {
    font-size: 20px;
  }
}
main .wrapper .window .wind-1 .copy a:hover {
  opacity: 0.8;
  transition: all 0.3s linear;
}
main .wrapper .window .wind-1 .copy a img {
  width: 100px;
}
main .wrapper .window .wind-1 .main-img {
  padding-right: 150px;
}
@media (max-width: 767px) {
  main .wrapper .window .wind-1 .main-img {
    padding-right: 10px;
  }
}