:root {
  --primary: #F49276;
  --dark: #222;
  --font1: "Dosis", sans-serif;
}

.hide {
  display: none !important;
}

.flex {
  display: flex !important;
}

.overflow {
  overflow: hidden;
}

p {
  line-height: 1.5em;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--lightblue);
}

.container-title {
  color: var(--lightblue);
  margin-bottom: 30px;
}
.container-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.button, .cta-btn {
  font-family: inherit;
  border: 1px solid;
  font-size: inherit;
  font-weight: 400;
  background-color: transparent;
  color: #fff;
  padding: 15px 25px;
  position: relative;
  cursor: pointer;
  transition: 0.2s all ease-out;
}
.button:hover, .cta-btn:hover, .button:focus, .cta-btn:focus {
  background-color: #fff;
  color: #222;
  border-color: #fff;
}
.button.none-btn, .none-btn.cta-btn {
  border: none;
  padding: 0;
}
.button.none-btn:hover, .none-btn.cta-btn:hover, .button.none-btn:focus, .none-btn.cta-btn:focus {
  background-color: transparent;
  color: #fff;
}

.cta-btn {
  color: #fff;
  border: none;
  text-decoration: none;
  transition: 0.2s all ease-out;
}
.cta-btn:hover, .cta-btn:active, .cta-btn:focus {
  color: #fff;
}

.divider {
  display: block;
  height: 3px;
  width: 200px;
  margin: 0 auto;
}

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

.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: 0.7;
  background-color: var(--primary);
  border-radius: 60px;
  transition: 0.2s all 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: 500px;
  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;
  background: rgba(14, 20, 34, 0.6);
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
}
.cd-container ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  font-weight: 500;
  color: #fff;
  background-color: rgba(14, 19, 32, 0.4);
  min-width: 120px;
  padding: 10px 20px;
  margin: 0;
  margin-bottom: 5px;
}
@media (max-width: 650px) {
  .cd-container ul li span {
    min-width: 90px;
    font-size: 3em;
  }
}

@media (max-width: 570px) {
  .cd-container {
    padding: 0;
  }
  .cd-container ul {
    max-width: 330px;
  }
  .cd-container ul li {
    font-size: 13px;
  }
  .cd-container ul li span {
    padding: 8px;
    min-width: 70px;
    font-size: 2.8em;
  }
}
#header {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
#header .image {
  width: 100%;
  height: 100%;
}
#header .header-content {
  height: 100%;
  width: 100%;
  padding: 20px 50px;
  padding-bottom: 30px;
}
#header .header-content .text {
  color: #fff;
  font-family: var(--font1);
  text-align: left;
  padding: 30px 20px;
  width: 100%;
  max-width: 500px;
  align-self: center;
  transition: 0.2s all ease-out;
}
#header .header-content .text h1 {
  font-weight: 800;
  margin: 0;
  margin-bottom: 0px;
  font-size: 2.5em;
  color: #fff;
}
#header .header-content .text p {
  margin-bottom: 40px;
  font-size: 1.2em;
  text-shadow: 0px 0px 18px #000;
}
#header .header-content .image img {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 950px) {
  #header .header-content .text {
    width: 80%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
  }
  #header .header-content .image {
    margin: 30px;
  }
  #header .header-content .image img {
    max-width: 500px;
  }
}
@media (max-width: 880px) {
  #header .header-content {
    justify-content: center;
  }
  #header .header-content .text {
    width: calc(100% - 50px);
    text-align: center;
    justify-self: center;
    padding: 30px 0;
  }
}
@media (max-width: 520px) {
  #header .header-content {
    padding: 20px;
  }
}

#faq {
  padding: 30px;
}
#faq h2 {
  text-align: center;
  color: var(--primary);
}
#faq .faq-info {
  display: flex;
  padding: 0 10px;
  box-sizing: border-box;
}
#faq .faq-info ul {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#faq .faq-info ul li {
  margin: 0.5em 0;
}
#faq .faq-info ul li a.toggle {
  display: block;
  border: 1px solid #808080;
  color: #777777;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 0.3em;
  transition: all 0.3s ease-in-out;
}
#faq .faq-info ul li a.toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
#faq .faq-info ul li a.toggle.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font-weight: 500;
}
#faq .faq-info ul li .inner {
  padding: 1em;
  overflow: hidden;
  display: none;
  line-height: 1.5em;
  border: 1px solid rgba(121, 89, 84, 0.32);
  border-bottom-right-radius: 0.3em;
  border-bottom-left-radius: 0.3em;
  border-top: none;
}
@media (max-width: 950px) {
  #faq .faq-info {
    flex-direction: column;
  }
  #faq .faq-info ul {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  #faq .faq-info ul {
    width: 90%;
  }
}

#footer {
  background-color: #333;
  border-top: 1px solid #808080;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer p {
  max-width: 1000px;
  margin: 0 auto;
}
#footer .link {
  transition: 0.3s all ease;
}
#footer .link:hover {
  color: var(--primary);
}
#footer h2 {
  font-family: var(--font1);
  margin-top: 0;
  color: var(--primary);
}
#footer .social-icons a {
  transition: 0.3s all ease;
  cursor: pointer;
}
#footer .social-icons a i {
  font-size: 20px;
  color: #fff;
  margin: 5px;
}
#footer .social-icons a i:hover {
  opacity: 0.7;
  color: var(--primary);
}
#footer #ip {
  font-family: var(--font1);
  text-transform: uppercase;
  opacity: 0.4;
  font-weight: 600;
  margin: 0;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 950px) {
  #footer {
    flex-direction: column;
  }
  #footer .f-left,
#footer .f-right-container {
    text-align: center;
    justify-content: center;
    margin: 10px 0;
  }
  #footer .f-right-container .f-right #ip {
    margin: 10px 0;
  }
}
.asset {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
}
.asset .asset-description {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
  color: #fff;
}
.asset .asset-description #item-title {
  position: relative;
}
@media screen and (max-width: 600px) {
  .asset .responsive-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
  }
  .asset .responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.asset .inplayer-paywall {
  text-align: center;
}
.asset .inplayer-paywall .inplayer-preview-box {
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font1);
}
.asset .inplayer-paywall .inplayer-preview-box .inplayer-imageholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.asset .inplayer-paywall .inplayer-preview-box .inplayer-imageholder .inplayer-paywallexplain {
  display: none;
}
.asset .inplayer-paywall .inplayer-preview-box .inplayer-itemdetails {
  display: none;
  position: absolute;
  color: #fff;
  bottom: 140px;
  left: 30px;
  width: 54%;
}
.asset .inplayer-paywall .inplayer-preview-box .inplayer-itemdetails .inplayer-title {
  color: #fff;
  font-weight: 600;
  text-align: left;
  font-size: 2em;
  line-height: 1em;
}
.asset .inplayer-paywall .inplayer-preview-box .inplayer-itemdetails p {
  text-align: left;
  font-weight: 200;
}
.asset .inplayer-paywall .inplayer-preview-box .inplayer-buybutton {
  position: absolute;
  top: calc(50% - 17px);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: 0.2s all ease-out;
}
.asset .inplayer-paywall .inplayer-preview-box .inplayer-buybutton .inplayer-button {
  letter-spacing: normal;
  width: initial;
  text-transform: initial;
  background: var(--primary) !important;
  font-weight: 700;
}
.asset .inplayer-paywall .inplayer-preview-box .inplayer-preview-footer {
  margin-top: 0;
  border: none;
}
@media screen and (max-width: 645px) {
  .asset .inplayer-paywall .inplayer-preview-box .inplayer-itemdetails {
    position: initial;
    color: #222;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1em;
  }
  .asset .inplayer-paywall .inplayer-preview-box .inplayer-itemdetails .inplayer-title {
    color: #222;
  }
  .asset .inplayer-paywall .inplayer-preview-box .inplayer-buybutton {
    width: 100%;
    max-width: 210px;
    padding: 0 1em;
  }
}

@media (max-width: 990px) {
  .asset {
    flex-direction: column;
  }
  .asset .asset-description p {
    width: 100%;
  }
}
.cPoCpd {
  padding-bottom: 40.25%;
}

.package-container {
  padding: 30px;
  text-align: center;
}
.package-container .container-title {
  color: var(--primary);
}
.package-container h2 {
  margin-bottom: 60px;
}
.package-container .package {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.package-container .package .package-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.package-container .package .package-items .package-item {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-width: 253px;
  padding: 4px;
  margin-bottom: 20px;
  transition: all linear 0.15s;
  -ms-transition: all linear 0.15s;
  -moz-transition: all linear 0.15s;
  -webkit-transition: all linear 0.15s;
}
.package-container .package .package-items .package-item .content {
  padding: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 56.25%;
}
.package-container .package .package-items .package-item .content.active {
  opacity: 0.6;
}
.package-container .package .package-items .package-item .content .buy-btn {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 111;
  transform: translate(-50%, -50%);
  color: #fff !important;
  padding: 10px 40px !important;
  font-size: 18px;
  line-height: 31px;
  text-align: center;
  border-radius: 100px;
  height: 30px;
  transition: all 0.05s;
  -ms-transition: all 0.12s ease-out;
  -moz-transition: all 0.12s ease-out;
  -webkit-transition: all 0.12s ease-out;
}
.package-container .package .package-items .package-item .content .buy-btn:hover, .package-container .package .package-items .package-item .content .buy-btn:active, .package-container .package .package-items .package-item .content .buy-btn:focus {
  box-shadow: 0 0 15px 4px rgba(244, 67, 54, 0.48);
}
.package-container .package .package-items .package-item .content .overlay-link {
  position: absolute;
  bottom: 0px;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 10;
  transition: all linear 0.15s;
  -ms-transition: all linear 0.15s;
  -moz-transition: all linear 0.15s;
  -webkit-transition: all linear 0.15s;
}
.package-container .package .package-items .package-item .item-label {
  font-size: 17px;
  line-height: 23px;
  text-align: center;
  z-index: 11;
  align-items: center;
}
.package-container .package .package-items .package-item .item-label h1, .package-container .package .package-items .package-item .item-label h2, .package-container .package .package-items .package-item .item-label h3, .package-container .package .package-items .package-item .item-label h4, .package-container .package .package-items .package-item .item-label p {
  color: #222;
}
.package-container .package .package-items .package-item .item-label .inner {
  padding: 10px;
  font-family: var(--font1);
  font-weight: 600;
}
@media screen and (max-width: 812px) {
  .package-container .package .package-items .package-item .item-label .assetDesc {
    display: none;
  }
}
.package-container .package .package-items .package-item:hover .buy-btn {
  opacity: 1;
}
.package-container .package .package-items .package-item:hover .overlay-link {
  background-color: rgba(0, 0, 0, 0.4);
}

html {
  padding: 0;
  margin: 0;
}

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

p {
  font-family: var(--font1);
}

body {
  background-color: #fff;
  color: var(--dark);
  margin: 0;
  padding: 0;
  font-family: var(--font1);
  -ms-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}
body #nav-wrapper {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font1);
  color: var(--dark);
  background-color: #fff;
  font-size: 1em;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 30px 60px;
}
body #nav-wrapper .nav-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 5px;
}
body #nav-wrapper .nav-container ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin: 0;
  animation-duration: 0.5s;
}
body #nav-wrapper .nav-container ul li {
  display: inline;
  text-align: center;
  border-bottom: 2px solid transparent;
  margin: 0 15px;
  transition: 0.2s all ease-out;
}
body #nav-wrapper .nav-container ul li:hover, body #nav-wrapper .nav-container ul li:focus {
  border-bottom: 2px solid var(--primary);
}
body #nav-wrapper .nav-container ul li a {
  color: var(--drk);
  text-decoration: none;
  transition: 0.2s all ease-out;
}
body #nav-wrapper .nav-container ul li a:hover {
  opacity: 0.8;
}
body #nav-wrapper .nav-container .nav-logo {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100px;
}
body #nav-wrapper .nav-container .nav-logo .logo {
  width: 160px;
}
@media (min-width: 790px) {
  body #nav-wrapper .hamburger {
    display: none;
  }
}
@media (min-width: 790px) {
  body #menu.animated {
    animation: none;
  }
}
@media (max-width: 789px) {
  body #nav-wrapper {
    padding: 0;
  }
  body #nav-wrapper .nav-container {
    position: relative;
    padding: 20px;
  }
  body #nav-wrapper .nav-container ul {
    padding: 0 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    position: fixed;
    background-color: var(--dark);
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
  }
  body #nav-wrapper .nav-container ul li {
    margin: 20px 0;
  }
  body #nav-wrapper .nav-container ul .login-button {
    margin: 20px 0;
  }
  body #nav-wrapper .nav-container ul.slideInDown {
    display: flex;
    z-index: 1;
    background-color: #fff;
  }
}
body .text {
  margin: 30px auto 0;
  max-width: 800px;
}
body .text h1, body .text h2 {
  text-align: center;
}
body .text h1 span, body .text h2 span {
  font-weight: 400;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  background-color: var(--primary) !important;
  z-index: 2 !important;
}
/*# sourceMappingURL=style.min.css.map */