@font-face {
  font-family: 'source sans pro';
  src: url(/fonts/sourcesanspro.woff2);
}

@font-face {
  font-family: 'Kite';
  src: url(/fonts/KiteOne-Regular.ttf);
}
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;
}
input,
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
}
@-ms-viewport {
    width: device-width;
}






html {
    font-size: 18pt;
    box-sizing: border-box;
}


body {
    -ms-overflow-style: scrollbar;
    background: #fff;
    background-color: #fff;
    color: #000;
    font-family: "Kite", Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
}


a {
    -moz-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    text-decoration: underline;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #837164;
}

strong,
b {
    font-weight: 400;
}
em,
i {
    font-style: italic;
}

p {
    margin: 0 0 2rem;
}

h1,
h2 {
    hyphens: manual;
}

h1,
h2,
h3 {
    font-weight: 300;
    line-height: 1.375;
    letter-spacing: -0.05em;
    margin: 0 0 1rem;
    color: #000;
}

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}
h2 {
    font-size: 1.75rem;
}
h3 {
    font-size: 1.3rem;
}










.front {
    -moz-align-items: -moz-stretch;
    -webkit-align-items: -webkit-stretch;
    -ms-align-items: -ms-stretch;
    align-items: stretch;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: -moz-flex-end;
    -webkit-justify-content: -webkit-flex-end;
    -ms-justify-content: -ms-flex-end;
    justify-content: flex-end;
    position: relative;
    text-align: left;
    overflow-x: hidden;
    min-height: 100vh;
}
.front .content {
    padding: 5rem 5rem 5rem;
    -moz-align-self: center;
    -webkit-align-self: center;
    -ms-align-self: center;
    align-self: center;
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    width: 55%;
    max-width: 48rem;
    text-align: left;
    margin: 0 auto;
}

.front .image {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    border: 0;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    border-radius: 0;
    width: 45%;
}
.front .image img {
    display: block;
    border-radius: 4px;
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    -moz-object-position: center;
    -webkit-object-position: center;
    -ms-object-position: center;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 30% 40%;
/*    animation: ltr 20s alternate infinite;
    animation: ltr 15s; 
    animation-delay: 0s;
    display: block;  */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

@keyframes ltr {
  0% {
    object-position: 0% 0%;
  }
  100% {
    object-position: 100% 100%;
  }
}

@keyframes rtl {
  0% {
    object-position: 100% 100%;
  }
  100% {
    object-position: 0% 0%;
  }
}









@media screen and (orientation: portrait) {
    .front {
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        text-align: center;
    }
    .front .content {
        min-height: 50vh;
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    .front .image {
        width: 100%;
        max-width: 100%;
        /*height: 50vh;*/
        height: 45vh;
    }
}


@media screen and (max-width: 1680px) {
    .front .content {
        padding: 4rem 4rem 2rem;
    }
    html {
        font-size: 13pt;
    }
}
@media screen and (max-width: 1280px) {
    .front .content {
        padding: 3rem 3rem 2rem;
    }
    html {
        font-size: 12pt;
    }
}
@media screen and (max-width: 980px) {
    .front .content {
        padding: 2rem 2rem 1rem;
    }
}
@media screen and (max-width: 736px) {
    .front .content {
        padding: 1rem 1rem 0.5rem;
    }
    html {
        font-size: 11pt;
    }

}


@media screen and (max-width: 480px) {
    html,
    body {
        font-size: 10pt;
        min-width: 320px;
    }
}


.frontlinks a {
    -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    font-family: "source sans pro";
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.125em;
    text-align: center;
    white-space: nowrap;
    max-width: 20rem;
    margin: 0 5px 5px;
    color: #fff;
    background: #000;
    height: 3.75em;
    line-height: 3.75em;
    border-radius: 3.75em;
    padding: 0 1.2em;
    width: 8rem;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #dfd7ff !important;
    text-decoration: none;
}

.frontlinks a:hover {
    background-color: #211;
    box-shadow: inset 0 0 0 1px #837164;
    color: #6e5fa7 !important;
    text-decoration: none;
}




#wrapper {
    background-color: inherit;
    width: 100%;
    overflow-x: hidden;
}
