:root {
  --primary: #f5dc1f;
  --p-hover: #d2bc14;
  --dark: #091425;
  --font1: "Roboto", sans-serif;
  --font2: "Quicksand", sans-serif;
}

.hide {
  display: none !important;
}

.flex {
  display: flex !important;
}

.overflow {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-style: italic;
  line-height: 1em;
}

.container-title {
  margin-top: 0;
}

p {
  line-height: 1.4em;
}

.bg-white {
  background-color: #fff;
}

.small {
  font-size: 20px;
  margin: 0;
}

.f-size-45 {
  font-size: 45px;
}

.cta-button {
  background-color: var(--primary);
  border: none;
}

.button, .asset .inplayer-preview-box .inplayer-buybutton button {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  border-radius: 0;
  padding: 12px 30px;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-22deg);
  transition: all .2s ease-out;
}

.button span, .asset .inplayer-preview-box .inplayer-buybutton button span {
  display: inline-block;
  transform: skew(22deg);
}

.button.primary, .asset .inplayer-preview-box .inplayer-buybutton button {
  background-color: var(--primary);
  border: none;
}

.button.primary:hover, .asset .inplayer-preview-box .inplayer-buybutton button:hover {
  background-color: var(--p-hover);
}

a.link {
  text-decoration: underline;
  font-style: italic;
}

.back-to-top {
  background: none;
  display: none;
  margin: 0;
  position: fixed;
  bottom: 250px;
  right: 23px;
  width: 35px;
  height: 35px;
  z-index: 100;
  text-decoration: none;
  color: #fff;
  opacity: .5;
  background-color: rgba(9, 9, 9, 0.6);
  border-radius: 60px;
  transition: all .3s ease-out;
}

.back-to-top i {
  font-size: 38px;
  position: relative;
  left: -1.5px;
  top: -1.5px;
}

.back-to-top:hover {
  opacity: 1;
}

.cd-container {
  padding: 0 20px;
  align-self: center;
  width: 100%;
}

.cd-container ul {
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.cd-container ul li {
  text-align: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
  font-size: 1em;
  color: #fff;
}

.cd-container ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4em;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  width: 120px;
  height: 120px;
  margin: 0;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .cd-container ul li span {
    width: 90px;
    height: 90px;
    font-size: 3em;
  }
}

@media (max-width: 520px) {
  .cd-container {
    padding: 0;
  }
  .cd-container ul li {
    font-size: 15px;
  }
  .cd-container ul li span {
    width: 70px;
    height: 70px;
    font-size: 2.5em;
  }
}

.package-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 10px;
  text-align: center;
  box-sizing: border-box;
}

.package-container iframe {
  width: 100%;
  height: 370px;
  max-width: 650px;
}

@media screen and (max-width: 550px) {
  .package-container iframe {
    height: 270px;
  }
}

.package-container #preview-container {
  max-width: 650px;
}

.package-container .package-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.package-container .package-items .package-item {
  position: relative;
  width: 100%;
  max-width: 385px;
  margin: 10px;
  margin-bottom: 30px;
  transition: all .2s ease-out;
}

.package-container .package-items .package-item .content {
  height: 210px;
  padding: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.package-container .package-items .package-item .content .overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 10;
  transition: all .2s ease-out;
}

.package-container .package-items .package-item .content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.package-container .package-items .package-item .item-label {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 22px;
  line-height: 23px;
  text-align: center;
  z-index: 11;
  display: flex;
  align-items: center;
}

.package-container .package-items .package-item .item-label .name {
  width: 100%;
}

.package-container .package-items .package-item:hover .content .button, .package-container .package-items .package-item:hover .content .asset .inplayer-preview-box .inplayer-buybutton button, .asset .inplayer-preview-box .inplayer-buybutton .package-container .package-items .package-item:hover .content button {
  opacity: 1;
}

.package-container .package-items .package-item:hover .far {
  font-size: 70px;
  opacity: 1;
}

.package-container .package-items .package-item:hover .overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.package-container .package-items .package-item.active {
  opacity: .7;
}

.package-container .package-items .package-item.active:hover {
  opacity: 1;
}

.package-container .package-items .package-item .overlay-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

#header {
  position: relative;
  height: 100%;
  min-height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/header.jpg");
  background-size: cover;
  background-position: right;
  z-index: -1;
}

#header.item-header {
  background: #fff;
  min-height: 60vh;
}

#header.item-header .header-content {
  justify-content: center;
  padding: 20px 10px;
  display: block;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
  z-index: 2;
}

.header-content .text {
  color: #fff;
  text-align: left;
  padding: 30px 20px;
  width: 100%;
  max-width: 700px;
  transition: all .3s ease-out;
}

.header-content .text h1 {
  text-transform: uppercase;
  font-weight: 900;
  font-style: italic;
  margin: 0;
  margin-bottom: 0px;
  font-size: 3.5em;
  line-height: 1em;
}

.header-content .text p {
  padding-left: 5px;
}

.header-content .text #desc {
  font-size: 18px;
  margin: 10px 0 30px;
  line-height: 1.5em;
}

@media (max-width: 950px) {
  #header.overlay::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 97%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
  }
  .header-content .text {
    width: 80%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
  }
  .header-content .text h1 {
    font-size: 4em;
  }
  .header-content .image {
    margin: 30px;
  }
  .header-content .image img {
    max-width: 500px;
  }
}

@media (max-width: 880px) {
  .header-content {
    justify-content: center;
  }
  .header-content .text {
    width: calc(100% - 50px);
    text-align: center;
    justify-self: center;
    padding: 30px 0;
  }
}

#faq {
  background-color: inherit;
  padding: 20px;
}

#faq .faq-header {
  text-align: center;
}

#faq .faq-header .title {
  justify-content: center;
  align-items: center;
}

#faq .faq-header h3 {
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
  color: inherit;
  font-style: normal;
}

#faq .faq-info {
  display: flex;
  justify-content: center;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

#faq .faq-info .column {
  list-style: none;
  width: 50%;
}

#faq .faq-info .column ul {
  list-style: none;
}

#faq .faq-info ul .inner .question ol {
  padding-left: 20px;
}

#faq .faq-info .column h3 {
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
  font-style: normal;
}

#faq .faq-info .column ul h3 {
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
  font-style: normal;
}

#faq .faq-info .column ul li {
  margin: .5em 0;
}

#faq .faq-info .column ul li .contact-support-btn:hover {
  opacity: .7;
}

#faq .faq-info .column ul li a {
  color: inherit;
}

#faq .faq-info .column ul li a.toggle {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: .75em .75em .75em .95em;
  border-top-right-radius: .2em;
  border-top-left-radius: .2em;
  transition: 0.2s all ease;
  border: 1px solid #111;
}

#faq .faq-info .column ul li a.toggle:active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font-weight: 500;
}

#faq .faq-info .column ul li .inner {
  padding: 1em;
  overflow: hidden;
  display: none;
  line-height: 1.5em;
  color: inherit;
  border-top: none;
  border-bottom-right-radius: .2em;
  border-bottom-left-radius: .2em;
  border: 1px solid #111;
  border-top: none;
}

#faq .faq-info .column ul li .inner .steps {
  width: inherit;
  list-style: disc;
  padding-left: 20px;
}

@media (max-width: 950px) {
  #faq .faq-info {
    flex-direction: column;
  }
  #faq .faq-info .column {
    width: 100%;
  }
  #faq .faq-info .column ul {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  #faq .faq-info .column ul {
    width: 90%;
    padding: 0;
  }
  #faq .faq-info .column ul li .contact-support-btn {
    width: 100%;
  }
}

.contact-support-btn {
  border: 2px solid;
  background-color: inherit;
  color: inherit;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px 60px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  padding: 5px 10px;
  text-align: center;
  display: block;
  margin: 10px auto;
  max-width: fit-content;
  transition: 0.2s all ease;
  font-style: normal;
}

.contact-support-btn:hover,
.contact-support-btn:focus {
  outline: none;
  transform: translateY(-1px);
}

a.link {
  text-decoration: none;
  font-style: italic;
  color: inherit;
}

.launcher-button {
  display: none !important;
}

.contact-support {
  text-align: center;
}

.contact-support i {
  color: inherit;
  text-align: center;
  margin: 0 auto;
  padding-top: 20px;
  display: block;
}

.asset {
  text-align: center;
}

.asset .inplayer-preview-box {
  max-width: 700px;
  border: 1px solid #e9edef;
  padding: 0;
  border-radius: 0;
}

.asset .inplayer-preview-box .inplayer-imageholder {
  background: none;
}

.asset .inplayer-preview-box .inplayer-imageholder .inplayer-paywallexplain {
  display: none;
}

.asset .inplayer-preview-box .inplayer-itemdetails {
  padding: 20px;
  box-sizing: border-box;
}

.asset .inplayer-preview-box .inplayer-itemdetails .inplayer-title h1, .asset .inplayer-preview-box .inplayer-itemdetails .inplayer-title h2, .asset .inplayer-preview-box .inplayer-itemdetails .inplayer-title h3, .asset .inplayer-preview-box .inplayer-itemdetails .inplayer-title h4, .asset .inplayer-preview-box .inplayer-itemdetails .inplayer-title p {
  font-weight: 700;
  color: #000;
  font-size: 1.5em;
  margin: 0;
}

.asset .inplayer-preview-box .inplayer-itemdetails h1, .asset .inplayer-preview-box .inplayer-itemdetails h2, .asset .inplayer-preview-box .inplayer-itemdetails h3, .asset .inplayer-preview-box .inplayer-itemdetails h4, .asset .inplayer-preview-box .inplayer-itemdetails p {
  font-weight: 400;
}

.asset .inplayer-preview-box .inplayer-buybutton {
  vertical-align: top;
  padding: 20px;
}

.asset .inplayer-preview-box .inplayer-buybutton button {
  text-transform: initial;
  margin: 0;
}

.asset .inplayer-preview-box .inplayer-buybutton button:hover {
  transform: none !important;
}

.asset .inplayer-preview-box .inplayer-preview-footer {
  margin-top: 0;
  display: none;
}

@media (min-width: 700px) {
  .asset .inplayer-preview-box .inplayer-itemdetails h1, .asset .inplayer-preview-box .inplayer-itemdetails h2, .asset .inplayer-preview-box .inplayer-itemdetails h3, .asset .inplayer-preview-box .inplayer-itemdetails h4, .asset .inplayer-preview-box .inplayer-itemdetails p {
    text-align: left;
  }
  .asset .inplayer-preview-box .inplayer-itemdetails .inplayer-title, .asset .inplayer-preview-box .inplayer-itemdetails p {
    text-align: left;
  }
  .asset .inplayer-preview-box .inplayer-buybutton {
    float: right;
    width: initial;
  }
}

@media screen and (max-width: 700px) {
  .asset .inplayer-preview-box .inplayer-itemdetails {
    width: 100%;
    box-sizing: border-box;
  }
  .asset .inplayer-preview-box .inplayer-itemdetails .inplayer-title {
    color: #222;
  }
  .asset .inplayer-preview-box .inplayer-buybutton {
    position: initial;
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 5px auto;
  }
}

@media (max-width: 900px) {
  .asset .responsive-iframe {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
  }
  .asset .responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

#footer {
  background-color: #f1f1f1;
}

#footer a {
  color: inherit;
}

#footer #ip {
  text-transform: uppercase;
  font-weight: bold;
}

#footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
}

#footer .footer-top .footer-logo {
  margin: 20px;
}

#footer .footer-top .footer-logo h2 {
  font-size: 40px;
  margin: 0;
}

#footer .footer-top .footer-logo .small {
  font-weight: 300;
}

#footer .footer-top .footer-contact {
  margin: 20px;
  text-align: center;
}

#footer .footer-top .footer-contact a {
  color: #111111;
}

#footer .footer-top .footer-contact p {
  margin: 6px 0;
}

@media screen and (max-width: 592px) {
  #footer .footer-top {
    flex-direction: column;
    text-align: center;
  }
}

#footer .footer-bottom {
  background-color: var(--primary);
  text-align: center;
  font-size: 14px;
  padding: 20px 20px;
}

#footer .footer-bottom p {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: var(--font2);
  -ms-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

h2 {
  font-size: 1.5em;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.top {
  background-color: var(--primary);
  padding: 5px 100px;
}

.top .social-icons {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 789px) {
  .top {
    padding: 5px 20px;
  }
}

.social-icons a {
  transition: all .2s ease-out;
  cursor: pointer;
}

.social-icons a i {
  font-size: 20px;
  color: #111;
  margin: 5px 8px;
}

.social-icons a:hover {
  opacity: .7;
}

#nav-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 10px 100px;
}

#nav-wrapper .nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#nav-wrapper .nav-container ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  animation-duration: 0.5s;
}

#nav-wrapper .nav-container ul li {
  display: inline;
  text-align: center;
  margin: 0 15px;
  opacity: 1;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease-out;
}

#nav-wrapper .nav-container ul li:hover, #nav-wrapper .nav-container ul li:focus {
  opacity: 0.8;
}

#nav-wrapper .nav-container ul li a {
  color: #111;
  text-decoration: none;
}

#nav-wrapper .nav-container ul li .inplayer-button {
  padding: 0;
  font-weight: inherit;
  border: none;
  font-size: inherit;
}

#nav-wrapper .nav-container .nav-logo {
  font-style: italic;
  display: flex;
  align-items: center;
  font-size: 38px;
  color: inherit;
  text-decoration: none;
}

#nav-wrapper .nav-container .nav-logo .logo {
  width: 140px;
}

@media (min-width: 790px) {
  #nav-wrapper .hamburger {
    display: none;
  }
}

@media (min-width: 790px) {
  #menu.animated {
    animation: none;
  }
}

@media (max-width: 789px) {
  #nav-wrapper {
    padding: 0;
  }
  #nav-wrapper .nav-container {
    position: relative;
    padding: 20px;
  }
  #nav-wrapper .nav-container ul {
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    position: fixed;
    background-color: #fff;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
  }
  #nav-wrapper .nav-container ul li {
    margin: 20px 0;
  }
  #nav-wrapper .nav-container ul .login-button {
    margin: 20px 0;
  }
  #nav-wrapper .nav-container ul.slideInDown {
    display: flex;
  }
}

.about {
  padding: 50px 30px;
}

.about .container {
  display: flex;
  flex-wrap: no-wrap;
  justify-content: center;
}

.about .container img {
  width: 100%;
  max-width: 620px;
}

.about .container .text {
  max-width: 500px;
  margin-left: 30px;
}

@media screen and (max-width: 1070px) {
  .about .container {
    flex-wrap: wrap;
  }
  .about .container .text {
    margin: 0;
    text-align: center;
  }
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 16px white;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 16px #c1c1c1;
}

.social-icons a {
  text-decoration: none;
}

.f-size-32, h2 {
  font-size: 2em;
}

.inplayer-button {
  cursor: pointer;
}
/*# sourceMappingURL=style.min.css.map */