/*==============================

font-family: 'Rajdhani', sans-serif;
font-family: 'Roboto', sans-serif;

==============================*/



/*==============================
    #GLOBAL DEFAULTS
==============================*/
html {
	font-size: 62.5%; /* 10px browser default */
}
body {
  color: #000;
  background-color: #fff;
	font: 400 2rem/1.45 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
}
body > div {
	font-size: 2rem;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
  line-height: 1.2;
  margin: 0 0 2rem;
}
p {
	margin-bottom: 2.5rem;
}
p:last-child {
	margin-bottom: 0;
}
a, a:hover {
  text-decoration: none;
}
img, iframe {
  max-width: 100%;
  border: none;
}
ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}



/*==============================
    #BOOTSTRAP OVERWRITE
==============================*/
.row {
  margin: 0 auto;
  width: 100%;
}
.section {
  background: transparent no-repeat center top / cover;
  padding: 2rem 0;
}
.header,
.main-wrap,
.footer {
  max-width: 117rem;
  margin: 0 auto;
}
.main-wrap {
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
}



/*==============================
    #CSS LIBRARY
==============================*/

/* INPUT FIELDS */
input, textarea, select {
  width: 100%;
  font: 600 1.8rem 'Rajdhani', sans-serif;
  padding: 1.5rem 2rem;
  border: 2px solid #868582;
  transition: 0.3s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: #a0a0a0;
  text-transform: uppercase;
}
.select-field {
  position: relative;
  width: 100%;
}
.select-field::after {
  content: '';
  position: absolute;
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-top: 0.8rem solid #c29925;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
select option {
  font: 600 1.8rem 'Rajdhani', sans-serif;
}


/* WISTIA VIDEO */
.wistia-vid-wrap {
  max-width: 104rem;
  margin: 0 auto;
}

/* GREEN BUTTON */
.green-btn-a a,
.green-btn-a span,
.green-btn-button button,
.green-btn-input input[type="submit"],
.gold-btn-a a,
.gold-btn-button button,
.gold-btn-input input[type="submit"] {
  color: #fff;
  background-color: #68c644;
  border: 2px solid #55a537;
  text-shadow: 0 2px 1px rgba(0,0,0,0.18);
  padding: 1.05rem 2rem;
  cursor: pointer;
  text-transform: uppercase;
  font: 600 2.5rem 'Rajdhani', sans-serif;
  transition: 0.3s ease;
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.green-btn-a a:hover,
.green-btn-a span:hover,
.green-btn-button button:hover,
.green-btn-input input[type="submit"]:hover,
.green-btn-input input[type="submit"]:focus,
.gold-btn-a a:hover,
.gold-btn-button button:hover,
.gold-btn-input input[type="submit"]:hover,
.gold-btn-input input[type="submit"]:focus {
  color: #68c644;
  background-color: #fff;
  text-shadow: 2px 2px 1px rgba(104, 198, 68, 0.3);
}

.green-btn-a.inline-btn span {
  display: inline-block;
  max-width: 38.5rem;
  font-size: 3.6rem;
  padding: 1.35rem 2rem;
}

/* GOLD BUTTON */
.gold-btn-a a,
.gold-btn-button button,
.gold-btn-input input[type="submit"] {
  color: #fff;
  background-color: #c29925;
  border: 2px solid #97771b;
  text-shadow: 0 2px 1px rgba(0,0,0,0.18);
}
.gold-btn-a a:hover,
.gold-btn-button button:hover,
.gold-btn-input input[type="submit"]:hover,
.gold-btn-input input[type="submit"]:focus {
  color: #c29925;
  background-color: #fff;
  text-shadow: 2px 2px 1px rgba(194, 153, 37, 0.3);
}

/* TOGGLE SWITCH BUTTON */
.rounded-switch-btn input {
	display: none;
}
.rounded-switch-btn span {
	transition: 0.3s ease;
}
.rounded-switch-btn {
  position: relative;
  width: 75px;
  height: 32px;
  border-radius: 50px;
  margin-bottom: 0;
  cursor: pointer;
}
.rounded-switch-btn span:nth-child(2) {
	position: relative;
  display: block;
  height: inherit;
  font: 600 18px 'Rajdhani', sans-serif;
  text-transform: uppercase;
  background: #bcbcbc;
  border-radius: inherit;
}
.rounded-switch-btn span:nth-child(2):before,
.rounded-switch-btn span:nth-child(2):after {
	position: absolute;
	top: 50%;
  transform: translateY(-50%);
	line-height: 1;
	transition: inherit;
  text-shadow: 0 2px 1px rgba(0,0,0,0.18);
  color: #fff;
}
.rounded-switch-btn span:before {
	content: attr(data-off);
	right: 11px;
}
.rounded-switch-btn span:after {
	content: attr(data-on);
	left: 15px;
	opacity: 0;
}
.rounded-switch-btn input:checked ~ span:nth-child(2) {
	background: #44b916;
}
.rounded-switch-btn input:checked ~ span:nth-child(2):before {
	opacity: 0;
}
.rounded-switch-btn input:checked ~ span:nth-child(2):after {
	opacity: 1;
}
.rounded-switch-btn span:nth-child(3) {
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.rounded-switch-btn input:checked ~ span:nth-child(3) {
  left: 44px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}


/* COUNTDOWN TIMER */
.countdown-timer-custom {
  visibility: hidden;
  display: flex;
  align-items: start;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.countdown-timer-custom > div {
  width: calc(25% - 2rem);
  text-align: center;
  margin: 0 1rem;
}
.countdown-timer-custom .count {
  position: relative;
  color: #be8d1c;
  background-color: rgba(0,0,0,0.7);
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 1rem;
  font: 500 4.05rem 'Rajdhani', sans-serif;
  margin-bottom: 1rem;
}
.countdown-timer-custom .count::before {
  content: '';
  position: absolute;
  height: 3rem;
  width: 3px;
  border-top: 7px solid #fff;
  border-bottom: 7px solid #fff;
  right: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.countdown-timer-custom .secs .count::before {
  display: none;
}
.countdown-timer-custom .label {
  font: 1.3rem 'Roboto', sans-serif;
  text-transform: uppercase;
}

/* OTHERS */
.content-outer-cont {
  max-width: 79rem;
  margin: 0 auto;
}
.content-inner-cont {
  max-width: 71rem;
  margin: 0 auto;
}


/*==============================
    #HEADER
==============================*/

/* GLOBAL HEADER */
.header {
  background-color: #000;
  padding: 1.5rem 0;
}
.header .row {
  margin: 0;
}
.header .logo {
  padding: 0 4rem;
}
.header .logo img {
  max-width: 102px;
  margin: 0 auto;
}



/*==============================
    #FOOTER
==============================*/

.footer {
  background-color: #eaeaea;
  padding: 4rem 3rem 2rem;
}
.footer-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  padding-bottom: 3rem;
}
.inner-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.legal-agreements-wrap,
.influex-logo {
  font-size: 1.8rem;
}
.legal-agreements-wrap {
  width: 65%;;
}
.legal-agreements {
  margin: 0 0 0.5rem;
  padding: 0;
}
.legal-agreements li {
  list-style: none;
  display: inline-block;
  padding-right: 2rem;
  line-height: 1;
  margin-bottom: 0;
}
.legal-agreements li:last-child {
  padding-right: 0;
}
.legal-agreements li a {
  position: relative;
  white-space: nowrap;
  color: #be8d1c;
  font-weight: 700;
}
.legal-agreements li a::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #be8d1c;
  left: 50%;
  bottom: -3px;
  transition: 0.4s ease;
  transition-timing-function: cubic-bezier(.58,.3,.005,1);
}
.legal-agreements li a:hover::before {
  width: 100%;
  left: 0;
}
.influex-logo {
  width: 35%;
  text-align: right;
}
.influex-logo img {
  max-width: 27rem;
}


.funnel-content {
  margin: 0 4rem 4rem;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
}
.funnel-header {
  margin: 0 4rem 4rem;
}
.funnel-presentation {
  margin: 7rem 4rem 0;
  width: auto;
  text-align: left;
}
.funnel-header h2 {
  font-size: 7rem !important;
  line-height: 7.4rem;
  font-weight: 700;
}
.funnel-header h2.sz-s {
  font-size: 6rem !important;
  line-height: 6.2rem;
}
.funnel-header h3 {
  font-size: 3rem !important;
  margin: 1.5rem 0 2.5rem !important;
}
.funnel-video {
  max-width: 78rem;
  margin-bottom: 6rem;
}
.dl-title {
  font-weight: 600;
}
.dl-list {
  padding: 2rem 0;
  font-size: 1.8rem;
}
.dl-list li::before {
  position: absolute;
  left: .4rem;
  content: "\2022";
  font-size: 2rem;
  font-weight: 700;
}
.dl-list li {
  position: relative;
  padding: 0 2rem 1.2rem;
}
.sub-note {
  font-size: 1.6rem;
  text-align: center;
  padding: 0.8rem 0;
}
.btn-style2 {
  max-width: 40rem;
}
.text-center .btn-style2 {
  margin: 0 auto;
}
.btn-style2 a {
  padding: 1.6rem 2rem;
}
.fb-section-container {
  padding: 0 15px;
}
.ttm-listing {
  padding-left: 2rem;
}
.ttm-listing li {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
.ttm-listing li .ttm-movie-box {
  width: 30%;
  padding-top: 1rem;
  cursor: pointer;
}
.ttm-listing li .ttm-movie-box:hover {
  opacity: 0.5;
}
.ttm-listing li .ttm-movie-details {
  width: 65%;
}
.funnel-action-wrapper {
  margin: 8rem 0 0;
}


#RegModal.modal h1 {
  font-size: 5.5rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 5.5rem;
}
#RegModal.modal .modal-dialog {
  max-width: 650px;
}
#RegModal .modal-content {
  border: 2px solid #b0b0b0;
  box-shadow: 0 0 0 15px white;
  border-radius: 0;
  top: 15px;
  padding: 3rem;
}
.modal-backdrop.show {
  opacity: .7;
}
#RegModal .modal-header {
  padding: 0;
  border: 0;
}
#RegModal .modal-header .close {
  position: absolute;
  top: -10px;
  right: -7px;
  background: #7e6f6f;
  opacity: 1;
  color: white;
  font: 300 3.5rem/2.5rem -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  text-shadow: 0 0 0;
}
#RegModal .modal-header .close span {
  position: relative;
  top: -4px;
}
#RegModal .form-control {
  width: 100%;
  font: 500 1.8rem 'Rajdhani', sans-serif;
  padding: 1.5rem 2rem;
  border: 2px solid #868582;
  transition: 0.3s ease;
}
#RegModal .form-control::placeholder {
  text-transform: lowercase;
}
#RegModal .btn {
  color: #fff;
  background-color: #68c644;
  border: 2px solid #55a537;
  text-shadow: 0 2px 1px rgba(0,0,0,0.18);
  padding: 1.6rem 2rem;
  cursor: pointer;
  text-transform: uppercase;
  font: 600 2.5rem 'Rajdhani', sans-serif;
  transition: 0.3s ease;
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
}
#RegModal form {
  padding: 0 5rem;
}
.h-note {
  font: 400 2rem -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  padding-bottom: 2rem;
}
#RegModal .sub-note {
  margin-bottom: -1rem;
}

#ExitModal .modal-header {
  border: 0;
  padding: 0;
}
#ExitModal .modal-body {
  padding: 3rem;
}
#ExitModal .close {
  -webkit-appearance: none;
  padding: 0 8px 5px;
  cursor: pointer;
  font-size: 28px;
  background: black;
  opacity: 1;
  color: #fff;
  top: -10px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  display: inline-block;
  z-index: 150;
  border: 3px solid rgba(109, 109, 109, 0.53);
}
#ExitModal .close:hover {
  opacity: 1;
  background: red;
}
#ExitModal .show-list {
  padding: 0 0 30px 10px;
}
#ExitModal .show-list li {
  font-weight: bold;
  font-family: 'sans-serif', Arial;
  line-height: 1.5em;
  font-size: 1.45rem;
  list-style: disc;
}
#ExitModal h4 {
  font-family: 'sans-serif', Arial;
  font-weight: bold;
  padding: 15px 0 0 0;
}
#ExitModal h1.submain {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  text-align: center;
  color: rgb(54, 54, 54);
  overflow: visible;
  line-height: 1.4em;
  font-size: 32px;
}
.red {
  color: rgb(204,0,0);
}
#submitform {
  color: rgb(255, 255, 255);
  font-size: 22px;
  background-color: #cc0000;
  border-bottom: 3px solid rgba(0,0,0,0.2);
  border-left: none !important;
  border-right: none !important;
  display: block;
  text-align: center;
  width: 100%;
  padding: 13px 10px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}



/*==============================
    #MEDIA QUERIES
==============================*/
@media only screen and (max-width:1600px) {
  html {
	  font-size: 56.3%;
  }
}
@media only screen and (max-width:1440px) {
  html {
	  font-size: 50%;
  }
}
@media only screen and (max-width:1280px) {
  html {
	  font-size: 48%;
  }
}
@media only screen and (max-width:1024px) {

}
@media only screen and (max-width:1023px) {
  html {
    font-size: 46%;
  }

  .dl-title {
    padding: 3rem 0 0;
  }
  .dl-list {
    margin: 0 1rem;
    font-size: 2rem;
  }
  .funnel-presentation .btn-style2 {
    margin: 0 auto;
  }
  .funnel-content {
    font-size: 2rem;
  }
  .ttm-listing {
    padding-left: 0;
    padding-top: 4rem;
  }
  .ttm-listing li .ttm-movie-box {
    padding-top: 0;
  }

}
@media only screen and (max-width:960px) {
  html {
	  font-size: 50%;
  }
  body {
    padding: 0 2rem;
  }

}
@media only screen and (max-width:767px) {
  br {
    content: ' ';
    display: initial;
  }
  br::after {
    content: ' ';
  }
  
  /* HEADER */
  .header .logo {
    padding: 0;
    text-align: center;
  }
  
  
  /* FOOTER */
  .legal-agreements-wrap,
  .influex-logo {
    width: 100%;
    text-align: center;
  }
  .legal-agreements-wrap {
    padding-bottom: 2.5rem;
  }
  .legal-agreements {
    margin-bottom: 2rem;
  }
  
}
@media only screen and (max-width:567px) {
  
  /* FOOTER */
  .footer {
    padding: 3rem 1.5rem 2rem;
  }
  .legal-agreements li {
    display: block;
    padding: 0 0 2.5rem;
  }
  .legal-agreements li:last-child {
    padding: 0;
  }
  .funnel-header h3 {
    font-size: 2.4rem !important;
    margin: 1rem 0 1.5rem;
  }
  .funnel-header h2 {
    font-size: 3.6rem !important;
    line-height: 3.4rem;
  }
  .funnel-header {
    margin: 0 0 4rem;
  }
  .funnel-presentation {
    margin: 7rem 0 0;
  }
  .funnel-content {
    margin: 0 0 4rem;
  }
  .ttm-listing li {
    display: block;
  }
  .ttm-listing li .ttm-movie-box {
    width: 100%;
    padding-bottom: 2rem;
  }
  .ttm-listing li .ttm-movie-details {
    width: 100%;
  }
  #RegModal form {
    padding: 0;
  }

  .popup-wrapper .popup-box {
    padding: 50px 25px 30px;
    width: 94%;
  }
}