@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");


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

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

body {
  -webkit-text-size-adjust: none;
}

/* Box Model */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Basic */
@media screen and (max-width: 480px) {
  html,
  body {
    min-width: 320px;
  }
}

body.is-loading * {
  -moz-animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

html {
  height: 100%;
}

body {
  height: 100%;
  background-color: #fdf5e7;
  background-image:
    -moz-linear-gradient(
      60deg,
      rgba(253, 245, 231, 0.30) 5%,
      rgba(253, 245, 231, 0.30)
    ),
    url("../../images/bg.jpg");
  background-image:
    -webkit-linear-gradient(
      60deg,
      rgba(253, 245, 231, 0.30) 5%,
      rgba(253, 245, 231, 0.30)
    ),
    url("../../images/bg.jpg");
  background-image:
    -ms-linear-gradient(
      60deg,
      rgba(253, 245, 231, 0.30) 5%,
      rgba(253, 245, 231, 0.30)
    ),
    url("../../images/bg.jpg");
  background-image:
    linear-gradient(
      60deg,
      rgba(253, 245, 231, 0.30) 5%,
      rgba(253, 245, 231, 0.30)
    ),
    url("../../images/bg.jpg");
  background-repeat: repeat, no-repeat, no-repeat;
  background-size:
    100px 100px,
    cover,
    cover;
  background-position:
    top left,
    center top,
    bottom center;
  background-attachment: fixed, fixed, fixed;

  -moz-transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

/* Type */
body,
input,
select,
textarea {
  color: #4e4a46;
  font-family: "Roboto", sans-serif;
  font-size: 11pt;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}

p {
  margin: 0 0 1.5em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #313f47;
  line-height: 1.5;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 1.85em;
  letter-spacing: 0.1em;
}

/* List */
ol {
  list-style: decimal;
  margin: 0 0 1.5em 0;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 1.5em 0;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}

ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
  margin-top: -0.675em;
  white-space: nowrap;
  display: flex;
  gap: 20px;
}

ul.icons li {
  display: inline-block;
}

ul.icons li a {
  font-size: 21px;
  color: #4e4a46;
  text-decoration: none;
  display: block;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

ul.icons li a:hover {
  color: #2e8b8e;
}

#divider {
  height: 15px;
  display: none;
}

/* Wrapper */
#wrapper {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Main */
#main {
  position: relative;
  max-width: 36em;
  width: 100%;
  padding: 80px 50px 80px 50px;
  background: rgba(246, 241, 231, 0.96);
  cursor: default;
  text-align: left;
  -moz-transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  transition: opacity 1s ease;
  box-shadow: none;
}

header h1 {
  position: relative;
  z-index: 9999999;
  font-weight: 400;
  font-size: 30px;
  color: #c0392b;
}

header p {
  position: relative;
  z-index: 9999999;
  font-weight: 200;
  font-size: 15px;
  color: #4e4a46;
}

#mainText p {
  letter-spacing: 0.01em;
  line-height: 1.6em;
  color: #4e4a46;
  margin-bottom: 0.3em;
}

#mainText {
  margin-bottom: 60px;
}

#mainText a {
  color: #2e8b8e;
  text-decoration: none;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

#mainText a:hover {
  color: #1f6163;
  text-decoration: underline;
}

body.is-loading #main {
  opacity: 0;
}

body.is-loading {
  opacity: 0;
}

/* line */
#line {
  margin: 0;
  width: 80px;
  height: 1px;
  background-color: rgba(192, 57, 43, 0.2);
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Footer */
#footer {
  width: 100%;
  padding: 1.5em 0 0 0;
  color: rgba(255, 255, 255, 0.75);
  cursor: default;
  text-align: center;
}

@media screen and (max-width: 600px) {
  /* Main */
  #main {
    position: relative;
    top: 20px;
    width: 90%;
    min-height: 100%;
    padding: 5%;
    padding-top: 60px;
  }

  ul.icons li a {
    font-size: 16px;
  }

  #divider {
    display: inherit;
  }
}
