/*--------------------------------------------*/
@font-face {
    font-family: 'lemonmilkregular';
    src: url('../fonts/lemonmilk-regular-webfont.woff2') format('woff2'),
         url('../fonts/lemonmilk-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
  font-family: 'thomas';
  src:  url('../fonts/thomas.eot?9oe75w');
  src:  url('../fonts/thomas.eot?9oe75w#iefix') format('embedded-opentype'),
    url('../fonts/thomas.ttf?9oe75w') format('truetype'),
    url('../fonts/thomas.woff?9oe75w') format('woff'),
    url('../fonts/thomas.svg?9oe75w#thomas') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="th-"], [class*=" th-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'thomas' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.th-social-facebook:before {
  content: "\e905";
}
.th-instagram:before {
  content: "\e900";
}
.th-linkedin:before {
  content: "\e901";
}
.th-mail:before {
  content: "\e902";
}
.th-twitter:before {
  content: "\e903";
}
.th-cross:before {
  content: "\e904";
}

/*--------------------------------------------*/
body {
	font-family: 'lemonmilkregular';
	text-transform: uppercase;
	text-align: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility !important;
}
p {
    font-size: 16px;
}
a {
    text-decoration: none;
}
a:hover {
    cursor: pointer;
}
ol, ul {
    list-style: none;
    padding-left: 0;
}
.content-body {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 1200px;
    max-height: calc(100vh - 50px);
    min-height: 90vh;
	background-color: #ffffff;
    margin: 35px 15px 15px 15px;
}
.content-body h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
	color:#000000;
    letter-spacing: 10px;
    margin: 0;
}
.content-links {
    display: flex;
    align-items: center;
    min-height: 50px;
}
.content-links ul {
    display: flex;
    margin: 0;
}
.content-links ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-links ul li:first-child {
    width: 30px;
}
.content-links ul li:nth-child(2) {
    margin-left: 6px;
}
.content-links ul li:last-child {
    margin-left: 10px;
}
.content-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-links ul li i {
    font-size: 35px;
    color: #000000;
}
.content-links ul li i:hover {
    cursor: pointer;
    color: #999999;
}
.content-links ul li .th-social-facebook {
    font-size: 25px;
}
.content-gif {
    display: flex;
    align-items: center;
    max-height: 55vh;
    height: 100vh;
}
.content-gif.disable {
    display: none;
}
.content-gif img {
    width: 100%;
    height: 90%;
    object-fit: contain;
}
.shop-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    min-height: 32px;
    height: 32px;
    background-color: #000000;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 3.5px;
    border: 4px solid #000000;
}
.shop-button:hover {
    background-color: #ffffff;
    color: #000000;
    border: 4px solid #000000;
}
.content-mail {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: calc(100vh - 110px);
    top: 110px;
    bottom: 100%;
    right:100%;
    background-color: #ffffff;
    z-index: 3;
    box-sizing: border-box;
}
.content-mail.active {
    right: 0;
    bottom: 0;
}
.mail-text {
    margin-bottom: 20vh;
}
.mail-text a {
    display: block;
    color: #000000;
    letter-spacing: 4px;
    margin-bottom: 3.5vh;
}
.close-mail {
    font-size: 10px;
    color: #999999;
    letter-spacing: 2.5px;
    text-decoration: underline;
}
.close-mail:hover {
    cursor: pointer;
}
@media (min-width: 992px) {
    .content-body {
        margin: 0 auto;
    }
    .content-body h1 {
        min-height: 100px;
        font-size: 40px;
    }
    .content-links{
        position: absolute;
        right: 20px;
        top: 0;
        min-height: 100px;
    }
    .content-links ul {
        margin-top: 20px;
    }
    .content-gif {
        display: flex;
        align-items: center;
        max-height: 75vh;
        height: 100vh;
    }
    .content-gif img {
        height: 100%;
    }
    .content-mail {
        height: calc(100vh - 100px);
        top: 100px;
    }
}