.button, .cta-btn {
  border-radius: 3px;
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  background-color: transparent;
  color: inherit;
  padding: 12px 24px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.2s all ease-out;
  -webkit-transition: 0.2s all  ease-out;
  transition: 0.2s all  ease-out;
}

.button:hover, .cta-btn:hover {
  background-color: #fff;
  border-color: #f44336;
  color: #f44336;
}

.button:focus, .cta-btn:focus {
  background-color: #f44336;
  border-color: #f44336;
  color: #222;
}

.button:active, .cta-btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.title {
  font-weight: 700;
  font-style: italic;
  font-size: 25px;
  border-bottom: 3px solid #f44336;
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #f44336;
  color: #fff;
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
}

.cta-btn:hover {
  background-color: #fff;
  color: #f44336;
}

.cta-btn:active, .cta-btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

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

.back-to-top {
  background: none;
  display: none;
  margin: 0;
  position: fixed;
  bottom: 127px;
  right: 22px;
  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 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

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

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

.back-to-top:hover::after {
  content: "Back to top";
  position: absolute;
  font-size: 13px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.video-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#preview-item .inplayerasset {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

#preview-item .inplayerasset > div {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  margin: auto;
}

#preview-item .inplayerasset > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 1024px) {
  .video-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    margin: auto;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}

.mw-700 {
  max-width: 700px;
  margin: 0 auto;
}

#faq {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
  background-color: #181818;
}

#faq .faq-header {
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}

#faq .faq-header h2 {
  font-family: "Raleway", sans-serif;
  font-size: 1.7em;
  color: #fff;
}

#faq .faq-header .divider {
  background-color: #f44336;
}

#faq .faq-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: (1fr)[3];
      grid-template: 1fr/repeat(3, 1fr);
  padding: 0 10px;
}

#faq .faq-info ul {
  list-style: none;
  padding: 0 10px;
}

#faq .faq-info ul h3 {
  text-align: center;
  color: #e4e4e4;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

#faq .faq-info ul .inner {
  padding: 1em;
  overflow: hidden;
  display: none;
  line-height: 1.5em;
  border: 1px solid #616161;
  color: #c1c1c1;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: none;
  border-bottom-right-radius: .3em;
  border-bottom-left-radius: .3em;
}

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

#faq .faq-info ul li a.toggle {
  display: block;
  border: 1px solid #3c3c3c;
  color: #d4d4d4;
  background-color: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  padding: .75em;
  border-radius: .3em;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

#faq .faq-info ul li a.toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

#faq .faq-info ul li a.toggle.active {
  border-color: #616161;
  border-bottom: 1px solid #616161;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 950px) {
  #faq .faq-info {
    -ms-grid-rows: (auto)[3];
    -ms-grid-columns: 1fr;
        grid-template: repeat(3, auto)/1fr;
  }
}

.cd-container {
  padding: 0 10%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: none;
}

.cd-container ul {
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.cd-container ul li {
  text-align: center;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.cd-container ul li span {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 4em;
  border: 2px solid #464646;
  background-color: #111;
  border-radius: 5px;
  width: 120px;
  height: 120px;
  margin: 0;
  margin-bottom: 20px;
  position: relative;
}

.cd-container ul li span:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #464646;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

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

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

.package-container {
  padding: 60px 20px;
  padding-bottom: 0;
  text-align: center;
  color: #fff;
}

.package-container #related-title {
  text-align: left;
  margin-bottom: 50px;
}

.package-container .package {
  width: 100%;
  max-width: 1400px;
  margin: 40px auto;
}

.package-container .package .package-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  color: #fff;
  padding: 0 30px;
}

.package-container .package .package-items h2 {
  text-align: left;
  width: 100%;
}

.package-container .package .package-items .package-item {
  position: relative;
  width: 100%;
  max-width: 230px;
  min-width: 150px;
  margin-bottom: 20px;
  transition: all linear .15s;
  -ms-transition: all linear .15s;
  -moz-transition: all linear .15s;
  -webkit-transition: all linear .15s;
}

.package-container .package .package-items .package-item .far {
  position: absolute;
  font-size: 25px;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  z-index: 3;
}

.package-container .package .package-items .package-item .label {
  position: absolute;
  top: 115px;
  left: 10px;
  color: #111;
  background-color: rgba(255, 211, 29, 0.9);
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 3;
}

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

.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;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #f44336;
  color: #fff !important;
  padding: 10px 40px !important;
  font-size: 18px;
  line-height: 31px;
  text-align: center;
  border-radius: 100px;
  height: 30px;
  -webkit-transition: all .05s;
  transition: all .05s;
  -ms-transition: all  .12s  ease-out;
  -moz-transition: all  .12s  ease-out;
  -webkit-transition: all  .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 {
  -webkit-box-shadow: 0 0 15px 4px rgba(244, 67, 54, 0.48);
          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;
  transition: all linear .15s;
  -ms-transition: all linear .15s;
  -moz-transition: all linear .15s;
  -webkit-transition: all linear .15s;
}

.package-container .package .package-items .package-item .item-label {
  position: relative;
  bottom: 0;
  color: #fff;
  font-size: 17px;
  width: 100%;
  line-height: 23px;
  text-align: left;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.package-container .package .package-items .package-item .item-label .inner {
  padding: 10px;
  font-weight: 600;
}

.package-container .package .package-items .package-item .item-label .inner h1, .package-container .package .package-items .package-item .item-label .inner h2, .package-container .package .package-items .package-item .item-label .inner h3, .package-container .package .package-items .package-item .item-label .inner h4, .package-container .package .package-items .package-item .item-label .inner p {
  font-size: 16px;
  line-height: 1.1;
}

.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);
}

@media (max-width: 495px) {
  .package-container .package .package-items .package-item .label {
    top: 85px;
  }
  .package-container .package .package-items .package-item .content {
    height: 100px;
  }
}

.package-container .package .package-items#related {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.package-container .package .package-items#related .package-item {
  margin-bottom: 60px;
  max-width: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.package-container .package .package-items#related .package-item .content {
  width: 250px;
}

.package-container .package .package-items#related .package-item .item-label {
  width: 300px;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}

.package-container .package .package-items#related .package-item .item-label .inner {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}

.package-container .package .package-items#related .package-item .item-label .inner h3 {
  margin: 0;
  margin-bottom: 10px;
}

.package-container .package .package-items#related .package-item .item-label .inner p {
  margin: 0;
  font-weight: 400;
}

@media (max-width: 650px) {
  .package-container .package .package-items#related .package-item {
    display: initial;
  }
  .package-container .package .package-items#related .package-item .content {
    margin: 0 auto;
  }
  .package-container .package .package-items#related .package-item .item-label {
    margin: 0 auto;
    width: 270px;
  }
  .package-container .package .package-items#related .package-item .item-label .inner {
    padding: 10px;
  }
}

.inplayer-preview-box {
  max-width: 600px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

.inplayer-preview-box .inplayer-itemdetails {
  color: #fff;
  bottom: 140px;
  left: 30px;
}

.inplayer-preview-box .inplayer-itemdetails .inplayer-title h1, .inplayer-preview-box .inplayer-itemdetails .inplayer-title h2, .inplayer-preview-box .inplayer-itemdetails .inplayer-title h3, .inplayer-preview-box .inplayer-itemdetails .inplayer-title h4, .inplayer-preview-box .inplayer-itemdetails .inplayer-title p {
  color: #fff;
  font-weight: 600;
  text-align: left;
  font-size: 1.3em;
  line-height: 1.3;
}

.inplayer-preview-box .inplayer-itemdetails p {
  text-align: left;
  font-weight: 400;
}

.inplayer-preview-box .inplayer-buybutton {
  bottom: 50px;
  left: 30px;
}

.inplayer-preview-box .inplayer-buybutton .inplayer-button {
  background: #f44336 !important;
}

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

@media screen and (max-width: 645px) {
  .inplayer-preview-box {
    background: #fff;
    border: 1px solid #e9edef;
  }
  .inplayer-preview-box .inplayer-imageholder::after {
    background: rgba(0, 0, 0, 0);
  }
  .inplayer-preview-box .inplayer-itemdetails {
    position: initial;
    color: #222;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 4%;
  }
  .inplayer-preview-box .inplayer-itemdetails .inplayer-title {
    color: #222;
  }
  .inplayer-preview-box .inplayer-buybutton {
    position: initial;
    width: 100%;
    max-width: 200px;
    padding: 0 4%;
  }
}

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

body {
  margin: 0;
  background-color: #111;
  color: #fff;
  padding: 0;
  font-family: "Raleway", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body .section {
  padding: 50px 0;
}

body #nav-wrapper {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 1.4em;
  background: #000;
  z-index: 100;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 100px;
}

body #nav-wrapper .nav-container {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px auto max-content;
      grid-template-columns: 140px auto -webkit-max-content;
      grid-template-columns: 140px auto max-content;
}

body #nav-wrapper .nav-container .nav-logo {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

body #nav-wrapper .nav-container .menu-cont {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 100px;
      grid-template-columns: auto 100px;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

body #nav-wrapper .nav-container .menu-cont ul {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (max-content)[5];
      grid-template-columns: repeat(5, -webkit-max-content);
      grid-template-columns: repeat(5, max-content);
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #nav-wrapper .nav-container .menu-cont ul li {
  display: inline;
  text-align: center;
  font-size: 17px;
  border-bottom: 2px solid transparent;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

body #nav-wrapper .nav-container .menu-cont ul li:hover, body #nav-wrapper .nav-container .menu-cont ul li:focus {
  border-bottom: 2px solid #f44336;
}

body #nav-wrapper .nav-container .menu-cont ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-style: italic;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

body #nav-wrapper .nav-container .menu-cont ul li a:hover {
  opacity: .8;
}

body #nav-wrapper .nav-container .menu-cont ul .login-button {
  line-height: 24px;
}

body #nav-wrapper .nav-container #bars {
  display: none;
  cursor: pointer;
}

@media (max-width: 930px) {
  body #nav-wrapper .nav-container {
    position: relative;
        grid-template-areas: "l . b" "m m m";
  }
  body #nav-wrapper .nav-container .nav-logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: l;
    margin-left: 40px;
  }
  body #nav-wrapper .nav-container #bars {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: b;
    margin-right: 40px;
  }
  body #nav-wrapper .nav-container .menu-cont {
    display: none;
    overflow: hidden;
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: m;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 30px 0;
  }
  body #nav-wrapper .nav-container .menu-cont.show {
    display: -ms-grid !important;
    display: grid !important;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    overflow: visible;
  }
  body #nav-wrapper .nav-container .menu-cont ul {
    -ms-grid-rows: (40px)[auto-fill];
        grid-template-rows: repeat(auto-fill, 40px);
    grid-gap: 47px;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    padding-left: 0;
  }
  body #nav-wrapper .nav-container .menu-cont ul li a {
    display: block;
  }
  body #nav-wrapper .nav-container .menu-cont .button, body #nav-wrapper .nav-container .menu-cont .cta-btn {
    margin: auto;
    margin-top: 25px;
  }
}

@media (max-width: 930px) {
  body #nav-wrapper {
    padding: 10px 0px;
  }
}

body .header-background {
  position: relative;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .header-background::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

body .header-background.demand .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 80px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

body .header-background.demand .header-content .demand-text {
  color: #fff;
  width: 100%;
  max-width: 500px;
}

body .header-background.demand .header-content .demand-text p {
  font-weight: 500;
  font-size: 17px;
}

body .header-background.demand .header-content .demand-text button {
  height: auto;
}

body .header-background.demand::after {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #000, rgba(0, 0, 0, 0));
  width: 70%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

@media (max-width: 700px) {
  body .header-background.demand::after {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  body .header-background.demand .header-content {
    text-align: center;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0 40px;
    width: 80%;
  }
  body .header-background.demand .header-content img {
    width: 150px;
    height: 150px;
    margin: auto;
  }
  body .header-background.demand .header-content .demand-text {
    margin: auto;
  }
  body .header-background.demand .header-content .demand-text h2 {
    margin-top: 0;
  }
}

body .header-background .video-container {
  position: relative;
  height: 55vh;
  overflow: hidden;
}

body .header-background .video-container img, body .header-background .video-container video {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: auto;
}

body #header {
  position: relative;
  top: 0;
  text-align: center;
  background-position: top;
  background-size: cover;
  left: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  color: #fff;
}

body #header .header-content {
  position: relative;
  margin: 0 auto;
  padding: 0 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #header .header-content img, body #header .header-content video {
  width: 100%;
  margin: auto;
}

@media (max-width: 1069px) {
  body #header .header-content {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}

@media (max-width: 820px) {
  body #header .header-content {
    padding: 20px;
    grid-gap: 30px;
  }
}

body .upcoming-wrap {
  background-position: center;
  background-size: cover;
  padding: 0px;
  text-align: center;
  position: relative;
}

body .upcoming-wrap .title-section h1, body .upcoming-wrap .title-section h2, body .upcoming-wrap .title-section h3 {
  color: #fff;
  font-weight: 900;
}

body .upcoming-wrap .upcoming-event-container {
  padding: 0 13px;
}

body .upcoming-wrap .upcoming-event-container .upcoming-event {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

body .upcoming-wrap .upcoming-event-container .upcoming-event img {
  width: 100%;
}

body .upcoming-wrap .upcoming-event-container .upcoming-event .description-container {
  color: #fff;
  padding: 0 20px;
  text-align: left;
}

body .upcoming-wrap .upcoming-event-container .upcoming-event .description-container #inplayer-title {
  display: inline-block;
  width: 65%;
  margin: 0;
}

body .upcoming-wrap .upcoming-event-container .upcoming-event .description-container #inplayer-description {
  font-weight: 500;
  font-size: 18px;
}

body .upcoming-wrap .upcoming-event-container .upcoming-event .description-container button {
  float: right;
  margin: 20px 0;
}

@media (max-width: 600px) {
  body .upcoming-wrap .upcoming-event-container .upcoming-event .description-container {
    text-align: center;
  }
  body .upcoming-wrap .upcoming-event-container .upcoming-event .description-container #inplayer-title {
    display: block;
    width: 100%;
  }
  body .upcoming-wrap .upcoming-event-container .upcoming-event .description-container button {
    float: none;
    margin: 20px 0;
  }
}

body .rounds-wrap {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 60px;
}

body .rounds-wrap .text {
  color: #fff;
  font-family: "Raleway", sans-serif;
  padding: 0 30px;
  text-align: center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

body .rounds-wrap .text .rounds-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

body .rounds-wrap .text .rounds-container p {
  text-align: left;
  font-size: 19px;
}

body .rounds-wrap .text .rounds-container p .bold {
  font-weight: 800;
  margin-right: 20px;
}

@media (max-width: 950px) {
  body .rounds-wrap .text .rounds-container {
    grid-gap: 10px;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  body .rounds-wrap .text .rounds-container p {
    font-size: 16px;
  }
}

body #asset {
  background: linear-gradient(45deg, #C7C7C7, #EAEAEA);
}

body #asset .inplayer-preview-box {
  background: #fff;
  padding: 0;
}

@media (min-width: 600px) {
  body #asset .inplayer-preview-box .inplayer-itemdetails {
    width: 66%;
    padding: 0 10px;
  }
}

@media (max-width: 1069px) {
  body #asset {
    margin: 0;
  }
}

body #contact {
  text-align: center;
  color: #fff;
  border-top: 1px solid #404040;
}

body #contact .freshwidget-embedded-form {
  max-width: 600px;
}

body #contact .freshwidget-embedded-form .feedback-wrapper {
  font-family: 'Raleway', sans-serif !important;
  text-align: center;
}

body #contact .freshwidget-embedded-form .embedded-wrapper .modal-header h3 {
  font-family: 'Raleway', sans-serif;
}

body .archive {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

body .archive h1, body .archive h2, body .archive h3, body .archive h4 {
  color: #fff;
  text-align: center;
  font-weight: 400;
  max-width: 500px;
  margin: auto;
  margin-bottom: 20px;
}

body .archive .cont {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr 1fr;
      grid-template-columns: 1fr 3fr 1fr;
  color: #fff;
  text-align: center;
}

body .archive .cont .image {
  background-image: url("../img/ar1.jpg");
  background-position: center;
  background-size: cover;
}

body .archive .cont .red {
  background-color: #F73131;
  font-size: 30px;
  text-transform: uppercase;
  padding: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

body .archive .cont .red p {
  margin: 0;
}

body .archive .cont .it {
  font-style: italic;
  font-size: 53px;
  font-weight: 800;
}

@media (max-width: 750px) {
  body .archive .cont {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -ms-grid-rows: 1fr 3fr 1fr;
        grid-template-rows: 1fr 3fr 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
  body .archive .cont .red {
    width: auto;
  }
}

body .sponsor-cont {
  background-color: #1e1e1e;
  background: url("../img/carsbnw1.jpg");
  background-position: center;
  background-size: cover;
  text-align: center;
}

body .sponsor-cont h1, body .sponsor-cont h2, body .sponsor-cont h3, body .sponsor-cont h4 {
  font-weight: 600;
  color: #fff;
  font-style: italic;
}

body .sponsor-cont .sponsor-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .sponsor-cont .sponsor-images img {
  width: 100%;
  max-width: 150px;
  margin: 15px;
}

body .widget-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  padding-bottom: 50px;
}

body #footer {
  background: #161616;
  color: #fff;
  padding: 20px 70px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr;
      grid-template-columns: 3fr 1fr;
}

body #footer h2 {
  font-family: "Raleway", sans-serif;
}

body #footer .divider {
  background-color: #fff;
}

body #footer .f-left {
  text-align: left;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #footer .f-left #ip {
  font-family: "Raleway", sans-serif;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: i;
  text-transform: uppercase;
  opacity: .4;
  font-weight: 600;
  margin: 0;
}

body #footer .f-right {
  display: -ms-grid;
  display: grid;
      grid-template-areas: ". ." "s s" "i i";
  text-align: right;
}

body #footer .f-right .social-icons {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: s;
}

body #footer .f-right .social-icons a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

body #footer .f-right .social-icons a .fab {
  font-size: 22px;
  margin: 5px;
}

body #footer .f-right .social-icons a:hover {
  opacity: .7;
}

@media (max-width: 950px) {
  body #footer {
    -ms-grid-rows: auto;
    -ms-grid-columns: auto;
        grid-template: auto / auto;
    padding: 20px;
  }
  body #footer .f-left, body #footer .f-right {
    text-align: center;
    margin: 10px 0;
  }
  body #footer .f-right #ip {
    margin: 10px 0;
  }
}
/*# sourceMappingURL=style.css.map */