@keyframes move-out {
    from { transform: translateX(0%); opacity: 1; }
    to { transform: translateX(50vw); opacity: 0; }
}
@keyframes move-in {
    from { transform: translateX(-50vw); opacity: 0; }
    to { transform: translateX(0%); opacity: 1; }
}
@keyframes logo-in {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}
::view-transition-old(root) { animation: 0.4s ease both move-out; }
::view-transition-new(root) { animation: 0.4s ease both move-in; }
*, *:before, *:after { box-sizing: border-box; }
html { text-rendering: optimizeLegibility; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; }
body { width: 100%; background: #000; color: #fff; font-size: 23px; }
@media (max-width: 1023px) {
    body { font-size: 17px; }
}
::-webkit-scrollbar-thumb:vertical { width: 4px; background: #ffffff; }
::-webkit-scrollbar-thumb:horizontal { height: 12px; background: #ffffff; }
::-webkit-scrollbar { width: 4px; background: #000000; }
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-unbound { font-family: 'Unbounded', sans-serif; text-transform: uppercase; letter-spacing: -0.02em; }
.normal { font-style: normal; }
.italic { font-style: italic; }
.thin, .weight-tiny { font-weight: 100; }
.light, .weight-light { font-weight: 200; }
.regular, .weight-normal { font-weight: 400; }
.medium, .weight-medium { font-weight: 500; }
.semi-bold { font-weight: 600; }
.bold, .weight-bold { font-weight: 700; }
.extra-bold, .weight-extra-bold { font-weight: 800; }
.black, .weight-black { font-weight: 900; }
.color-white { color: #fff; }
.color-black { color: #000; }
.bg-black { background-color: #000; color: #fff; }
a { color: inherit; text-decoration: none; transition: color 0.3s, text-decoration 0.3s ease; }
a:hover { text-decoration: underline; }
.text-container a:not(.button), .content-form a:not(.button) { text-decoration: underline; transition: color 200ms; }
.text-container a:not(.button):hover, .content-form a:not(.button):hover { text-decoration: underline; }
.p-relative { position: relative; }
h1 { font-size: 60px; font-weight: 700; }
@media (max-width: 1023px) {
    h1 { font-size: 50px; }
}
@media only screen and (max-width: 960px) {
    h1 { font-size: 35px; }
}
h2 { font-size: 25px; font-weight: 300; }
@media only screen and (max-width: 960px) {
    h2 { font-size: 18px; }
}
h3 { font-size: 50px; font-weight: 700; }
@media only screen and (max-width: 960px) {
    h3 { font-size: 27px; }
    h3.title { font-size: 35px; }
}
h4 { font-size: 30px; }
@media only screen and (max-width: 960px) {
    h4 { font-size: 20px; }
}
h5 { font-size: 20px; }
@media only screen and (max-width: 960px) {
    h5 { font-size: 17px; }
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; color: inherit; font-family: 'Unbounded', sans-serif; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1em; font-weight: 800; }
@media (max-width: 659px) {
    #header { width: 100%; height: auto; }
}
.text-container h1, .text-container h2, .text-container h3, .text-container h4, .text-container h5 { font-family: 'Poppins', sans-serif; text-transform: none; }
hr { height: 1px; border-width: 0px; background-color: #000000; color: #000000; }
.rounded { border-radius: 50px; overflow: hidden; }
@media (max-width: 1023px) {
    .rounded { border-radius: 25px; }
}
img { max-width: 100%; width: auto; height: auto; }
img[src=""] { visibility: hidden; }
video { max-width: 100%; height: auto; }
figure { margin: 0; padding: 0; }
p { margin: 0 0 0.5em; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-justify { text-align: justify; }
.hidden, .visually-hidden { display: none; }
.hide-text { overflow: hidden; text-indent: 100%; white-space: nowrap; }
.text-upper { text-transform: uppercase; }
.text-underline { text-decoration: underline; }
.text-container { line-height: 1.5; }
.text-ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-nostyle { margin: 0; padding: 0; list-style: none; }
.block-absolute { position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.block-relative { position: relative; }
.float-right { float: right; }
.float-left { float: left; }
.accordion-wrapper { margin-top: 2em; }
@media (max-width: 659px) {
    .accordion-wrapper { margin-top: 0; }
}
.accordion-item { border-bottom: 2px solid #fff; padding-top: 1.8em; }
.accordion-item .accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s; }
.accordion-item .accordion-content .inner { overflow: hidden; }
.accordion-item .accordion-content .inner .text-container { margin: 0 0 1em; }
.accordion-item .accordion-title { display: flex; cursor: pointer; justify-content: space-between; padding-right: 15px; }
.accordion-item .accordion-title .title { flex: 1; padding-right: clamp(10px, 2%, 30px); }
.accordion-item .accordion-title .svg-icon-dropdown { transition: transform 0.35s; width: 24px; }
@media (max-width: 659px) {
    .accordion-item .accordion-title .svg-icon-dropdown { width: 20px; height: 23px; }
}
.accordion-item.active .accordion-title .svg-icon-dropdown { transform: rotateX(180deg); }
.accordion-item.active > .accordion-content { grid-template-rows: 1fr; }
#basecontent { position: relative; }
#main { z-index: 1; margin: 0 auto; }
#content { position: relative; }
.site-logo { text-align: center; margin-top: 88px; margin-bottom: 120px; }
@media (max-width: 1023px) {
    .site-logo { margin-top: 50px; margin-bottom: 80px; }
}
.offset-bottom { margin-bottom: 1rem; }
.video-box { position: relative; padding-bottom: 56.3%; }
.video-box.vimeo-video { padding-bottom: 56.1%; }
.video-box > iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.text-image-rows { margin-top: 5em; }
.text-image-rows .text-image-row { justify-content: space-between; align-items: center; }
.text-image-rows .text-image-row .text-wrapper { margin: 0 0 0 auto; }
.text-image-rows .text-image-row .text-wrapper:not(.full-text) { max-width: 690px; }
.text-image-rows .text-image-row .image-wrapper { align-self: flex-start; }
.text-image-rows .text-image-row .image-wrapper img { display: block; border-radius: 20px; }
.text-image-rows .text-image-row .cta-button-wrapper { margin-top: 2em; }
.text-image-rows .text-image-row.odd { flex-flow: row-reverse wrap; }
.text-image-rows .text-image-row.odd .text-wrapper { margin: 0 auto 0 0; }
.text-image-rows .text-image-row:not(:last-child) { margin-bottom: 100px; }
@media (max-width: 659px) {
    .text-image-rows { margin-top: 3em; }
    .text-image-rows .text-image-row { flex-flow: column !important; }
    .text-image-rows .text-image-row:not(:last-child) { margin-bottom: 50px; }
    .text-image-rows .image-wrapper { margin-bottom: 1.5em; }
}
.alert { margin-bottom: 18px; padding: 25px; background: #D4FF26; width: 100%; color: #fff; z-index: 99999999; display: block; box-shadow: 1px 0 4px rgba(0, 0, 0, 0.34); }
.alert h4 { display: none; }
.alert .close { position: absolute; right: 10px; top: 10px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' width='15px' height='15px'%3E%3Cpath d='M.42 24.494L11.736 13.22c.12-.12.12-.32 0-.44L.42 1.465 1.507.42 12.78 11.736c.058.058.138.09.22.09s.162-.032.22-.09L24.536.42l1.044 1.086L14.264 12.78c-.06.057-.09.136-.09.22s.03.162.09.22L25.58 24.535l-1.063 1.024L13.22 14.265c-.058-.06-.137-.092-.22-.092-.083 0-.162.033-.22.092L1.465 25.58.42 24.493z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E") left 0 no-repeat; width: 15px; cursor: pointer; height: 15px; text-indent: -9000px; }
@media (max-width: 659px) {
    .alert { left: 5%; }
}
.pagination { clear: both; }
.pagination ul { display: inline-block; margin: 18px 0; padding: 0; box-shadow: 0 0 2px rgba(0, 0, 0, 0.3); }
.pagination ul > li { display: inline-block; }
.pagination ul > li > a { float: left; padding: 4px 12px; background-color: #fff; text-decoration: none; line-height: 18px; }
.pagination ul > li > a:hover { background-color: #f5f5f5; }
.pagination ul > li > a:focus { background-color: #f5f5f5; }
.pagination ul > li > span { float: left; padding: 4px 12px; background-color: #fff; text-decoration: none; line-height: 18px; }
.pagination ul > .active > a { background-color: #f5f5f5; color: #999; cursor: default; }
.pagination ul > .active > span { background-color: #f5f5f5; color: #999; cursor: default; }
.pagination ul > .disabled > span { background-color: transparent; color: #999; cursor: default; }
.pagination ul > .disabled > a { background-color: transparent; color: #999; cursor: default; }
.pagination ul > .disabled > a:hover { background-color: transparent; color: #999; cursor: default; }
.pagination ul > .disabled > a:focus { background-color: transparent; color: #999; cursor: default; }
.clear { display: block; visibility: hidden; clear: both; overflow: hidden; width: 0; height: 0; }
.clearfix:after { display: block; visibility: hidden; clear: both; width: 0; height: 0; content: ' '; font-size: 0; line-height: 0; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }
.rowed-modules > .content { position: relative; }
.row, .row.big, .row.mid { padding: 0 3.5%; box-sizing: content-box; }
@media (max-width: 659px) {
    .row, .row.big, .row.mid { padding: 0 20px; }
}
.row.big, .row.full { max-width: 1780px; }
.row.mid { max-width: 1600px; }
.row .row { padding-left: 0; padding-right: 0; }
.flex-row { display: flex; flex-flow: row wrap; }
a.cb-settings-open { cursor: pointer; }
.page-privacy-policy h3 { font-size: 40px; }
@media only screen and (max-width: 960px) {
    .page-privacy-policy h3 { font-size: 25px; }
}
.flockler-carousel_v2-item:hover:after { opacity: 0 !important; }
.flockler-carousel_v2-item:before { box-shadow: none !important; }
.bg-gradient-orange { color: #000; background: linear-gradient(180deg, #F2F2F5 0%, #FFA084 100%); }
