html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {

  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: lr;
  text-decoration: none; }

@font-face {
  font-family:lr; 
  src: url(../fonts/lr.ttf); }
@font-face {
  font-family:lb;
  src: url(../fonts/lb.ttf); }

a {
  display: grid;
}
*:focus {
    outline: none;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

html,
body {
  height: 100%; }
body {
  overflow-x: hidden;
}
body {
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #000; }

::-webkit-scrollbar-track {
  background-color: #fff; }

::-webkit-scrollbar {
  width: 6px;
  background-color: #fff; }

::-webkit-scrollbar-thumb {
  background-color: rgb(149, 149, 149);}









  

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important; }

a {
  color: #000; }

a:focus, a:hover, a:focus i, a:hover i {
  text-decoration: none;
  outline: 0 solid;
  color: #000; }

img {
  max-width: 100%;
  height: auto; }
.padding-o {
	padding: 0px;
}
.margin-o {
  margin: 0px;
}

.radio-radious {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  float: left; }

.radio-radious input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid; }

.radio-radious:hover input ~ .checkmark {
  background-color: #ccc; }

.radio-radious input:checked ~ .checkmark {
  background-color: transparent; }

.checkmark:after {
  content: "";
  position: absolute;
  display: none; }

.radio-radious input:checked ~ .checkmark:after {
  display: block; }

.radio-radious .checkmark:after {
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ac1010;
  top: 3px; }

.overflow-fix {
  float: left;
  width: 100%;
  height: auto; }

/* Play button */
.play-btn {
  width: 100px;
  height: 100px;
  
  border-radius: 50%;
  position: relative;
  display: block;
  margin: 30px auto;
  -webkit-box-shadow: 0px 0px 25px 3px maroon;
  box-shadow: 0px 0px 25px 3px maroon;
  cursor: position; }

/* Back to top */
/* #return-to-top {
  position: fixed;
  bottom: 5%;
  width: 40px;
  height: 40px;
  z-index: 9;
  right: 2%;
  background: #007bc9;
  border-radius: 50%;
  line-height: 42px;
  text-align: center;
  color: #fff;
  font-size: 13px; }
  #return-to-top:after {
    display: none; } */

/* triangle */
.play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  -ms-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19); }

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.75);
  top: -26%;
  left: -26%;
  background: rgba(198, 16, 0, 0); }

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
      -webkit-transform-transform: scale(0.6);
      -webkit-transform-opacity: 1;
      -webkit-transform-box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75); }
  100% {
    -webkit-transform: scale(1);
      -webkit-transform-transform: scale(1);
      -webkit-transform-opacity: 0;
      -webkit-transform-box-shadow: none; } }

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    -webkit-box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75); }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    -webkit-box-shadow: none;
    box-shadow: none; } }

/* Play Button End */
/* Full Screen Section */
.full-hight-main-area, .full-hight-area, .full-hight-area div {
  height: 100%; }
.full-hight-table {
    display: table;
    background-size: 100% 90% !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
}

.full-hight-tablecell {
  display: table-cell;
  vertical-align: middle; }

.full-hight-tablecell, .full-hight-tablecell div {
  height: auto; }

/* End Full Screen Section */
.submit-button {
	cursor: pointer;
}
.content_side {
	text-align: center;
	padding: 50px;
	font-size: 25px;
}
