/*!
 * 
 * generic.css styles
 * 
 *  
 */

 @import "bootstrap.min.css";

/*!
 * IE10 viewport hack for Surface/desktop Windows 8 bug
 */
@-ms-viewport     { width: device-width; }
@-o-viewport      { width: device-width; }
@viewport         { width: device-width; }


/* =============================================================================
  GENERIC STYLES
============================================================================= */
@font-face {
  font-family: 'OpenSans-Regular';
  src: url('../fonts/OpenSans-Regular.eot');
  src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/OpenSans-Regular.otf') format('otf'),
       url('../fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg'),
       url('../fonts/OpenSans-Regular.woff') format('woff'),
       url('../fonts/OpenSans-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.eot');
  src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Lato-Regular.woff2') format('woff2'),
      url('../fonts/Lato-Regular.woff') format('woff'),
      url('../fonts/Lato-Regular.ttf') format('truetype'),
      url('../fonts/Lato-Regular.svg#Lato-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

:root {
  --animate-duration: 800ms;
  --animate-delay: 1s;
  --max: 5;
  --stroke-step: 7%;
  --bg-color: #082330;
  --primary-font: "OpenSans-Regular", Arial, Helvetica, sans-serif;
  --heading-font: "Lato", Arial, Helvetica, sans-serif;
  --heading-colour: #04000B;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1;
}
ul {
  list-style: none;
  line-height: 1.75;
}

ol{
  margin-left: 20px;
  line-height: 1.75;
}

sup{
  font-size: 0.75em;
}



.lists li::before {
    content: '';
    background-color: #999;
    display: inline-block;
    position: relative;
    height: 8px;
    width: 8px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    left: 0px;
    top: -2px;
    margin-right: 10px;
}


blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  text-shadow: none;
  background: #fed136;
}
::selection {
  text-shadow: none;
  background: #fed136;
}
img::selection {
  background: transparent;
}
img::-moz-selection {
  background: transparent;
}

/*
 * A better looking default horizontal rule
 */

hr{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #000000;
    margin: 0em 0;
    padding: 0;
    margin-bottom: 18px;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
    -webkit-appearance: none;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #b8b8b8;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #b8b8b8;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #b8b8b8;
}

/*==========================================================================
       Browser Upgrade Prompt
==========================================================================*/

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.hidden {
    display: none !important;
}

html {
    font-size: 100%;
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
     /*overflow-y: scroll;*/
     overflow-style: none;
    -ms-overflow-style: none;  /*ie scrollbar hidden*/
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

/*chrome, safari scrollbar hidden*/
/*html::-webkit-scrollbar {
    display: none;
}*/

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--primary-font);
  font-size:16px;
  color:#000000;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #fed136;
  background:#ffffff; 
}

.vh-85 {
  height: 85vh !important;
}


body.overflow-hidden{/*fullscreen overlay menu*/
  overflow: hidden;
}

.alignleft{float:left}
.alignright{float:right}
.aligncenter{display:block;margin-left:auto;margin-right:auto}

p {
  font-family: var(--primary-font);
  font-size: 1em;
  line-height: 1.75;
  margin-bottom: 10px;
  color:#000000;
}

a,
a:hover,
a:focus,
a:active,
a.active {
  outline: none;
}
a {
  color: #000000; outline:none;
  font-family:"3MCircularTT-Regular", "OpenSans-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif; 
  font-weight: normal;
}
a:hover,
a:focus,
a:active,
a.active {
  color: #000000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color:#000000;
  font-weight: normal;
  line-height: 1em;
}

h1 {
    font-size: 3.2em;
}
h2 {
    font-size: 2em;
}
h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}
h4 {
    font-size: 1em;
}
h5 {
    font-size: 0.888em;
}
h6 {
    font-size: 0.666em;
}

img{
  max-width: 100%;
  height: auto;
}

.img-responsive-center{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

.heading{
  font-family: var(--heading-font); 
   color:#21201e;
  font-weight: normal;
}

strong{
  font-family: var(--primary-font);
  font-weight: bold;
}

span{
  font-family: var(--primary-font);
  font-weight: normal;
}


.btn{
	outline:none;
}

/*IOS HACK*/
/*input { 
    -webkit-appearance: none;
    -webkit-border-radius:0px;
}*/

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

table th{
  font-family: var(--primary-font);
  font-size: 1em;
  line-height: 1.5;
}

table td{
  font-size: 1em;
  font-family: var(--primary-font);
  line-height: 1.5;
}

.textbox{
border:2px solid #cdbb5e;
padding:10px 20px;
}

.mtop{
  margin-top: 20px;
}

.box { margin:5px; padding:20px 30px; border: 1px solid #191919; 
  border-radius: 8px; box-shadow: 0 1px 10px #191919, inset 0 1px 0 #191919; 
  background: #191919; color:#fff; font-size:52px; 
}


/* Custom iPhone-style toggle switch */

.form-switch, .form-check{
  padding-left: 0px;
  padding-top: 20px;
}

.form-switch .form-check-input{
  width: 3em;
  float: right;
  display: flex;
  margin-top: -10px;
}

.iphone-switch {
  position: relative;
  width: 3em!important;
  height: 26px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ddd;
  outline: none;
  border-radius: 15px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.iphone-switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

/* Toggle when checked */
.iphone-switch:checked {
  background-color: #4caf50;
}

.iphone-switch:checked::before {
  transform: translateX(20px);
}

/* =============================================================================
  PRELOADER
============================================================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 10001;
}




/* =============================================================================
  CONTENT
============================================================================= */
.logo{
  width: 145px;
}

video {
    object-fit: initial;
}
.div-center{
  display: inline-block;
  float: none;
}

#more{
  cursor: pointer;
}

.site-padding{
  padding: 20px 40px;
}

.page-content{
  padding-top: 80px;;
}


.position-center{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#page-content{
  padding: 60px 0px 0px 0px;
}

.cta {
  color: #ff0000;
  background: #ffffff;
  border: 1px solid #ff0000;
  font-weight: bold;
  padding: 18px 50px 16px;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  display: inline-block;
  line-height: 1em;
  align-self: flex-start;
  font-weight: 500;
  overflow: hidden;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.cta:after{
  content: '';
  display: block;
  background: rgb(254,8,1);
  background: -moz-linear-gradient(180deg, rgba(254,8,1,1) 0%, rgba(250,50,11,1) 47%, rgba(246,100,22,1) 97%);
  background: -webkit-linear-gradient(180deg, rgba(254,8,1,1) 0%, rgba(250,50,11,1) 47%, rgba(246,100,22,1) 97%);
  background: linear-gradient(180deg, rgba(254,8,1,1) 0%, rgba(250,50,11,1) 47%, rgba(246,100,22,1) 97%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fe0801",endColorstr="#f66416",GradientType=1);
  position: absolute;
  width: 165%;
  height: 165%;
  top: -5%;
  left: calc(-10% - 2px);
  z-index: -1;
  transform-origin: center;
  transform: scaleX(0) skewX(45deg);
  transition: transform 0.5s ease;
}

.cta:hover:after{
    transform: scaleX(1) skewX(45deg);
}

.cta:not(.white):hover{
    color:white !important;
} 

table.table .cta{
  padding: 9px 15px 10px;
}

.error{
  color: red;
  display: none;
}

#ApprovedpledgeList .approve, #PendingpledgeList .deny{
  display: none!important;
}

#ApprovedintroList .approve, #PendingintroList .deny{
  display: none!important;
}

#ApprovedintroList #data-position, #PendingintroList #data-position, #ApprovedintroList #position, #PendingintroList #position{
  display: none!important;
}

#sortByPAscending, #sortByPDescending{
  display: none;
}

.sortactions{
  text-align: right;
  margin-bottom: 20px;
}

.sortactions .cta{
  padding: 9px 15px 10px;
  margin-right: 10px;
}

#showcasedata{
  position: relative;
}

#data-position .position{
  width: 80px;
  text-align: center;
}

#data-title{
  width: 40%;
}

.pledgebg {
  background: var(--bg-color);
  font-family: var(--primary-font);
  font-size: 140px;
}

.text--line {
  font-size: 1em;
}

tspan.author {
  font-size: 0.5em;
}

svg {
  width: 100%;
  height: auto;
}


/* =============================================================================
FOOTER 
============================================================================= */
footer {
    background: transparent;
    padding: 15px 0;
    color:#ffffff;
    font-size:15px;
    margin-top: 30px;
    width: 100%;
    position: relative;
    bottom: 2px;
    text-align: center;
}

footer .common-btn{
  margin-left: 10px;
}

footer span{
  color:#ffffff;
  font-size: 14px;
  line-height: 1.2;
  text-shadow: 1px 1px #cccccc;
}

footer .copy{
  text-align: center;
  padding-right:20px;
  margin-top: 9px;
  font-size: 0.8em;
  color:#666666;
  text-shadow:none;
}

footer .breadcrumbs li a:hover{
  color:#f18800;
}

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: none;
}


/* =============================================================================
MEDIA QUERIES
============================================================================= */
@media print {
  header,footer,nav,#search,#masthead-section,#footer-grid,#section-breadcrumbs{display: none;}
  a[href]:after { content: none !important; }
}

@media only screen 
and (min-width : 992px) { 
  

}

/* Displays/Screens (e.g. MacBook @ 1280x800) -------------- */
@media only screen 
and (min-width : 1224px) { 

  .desktop{
    display: flex;
  }
  
  .mobile{
    display: none;
  }
  

}


/* Displays/Screens (e.g. 19" WS @ 1440x900) --------------- */
@media only screen 
and (min-width : 1440px) {
 

}


/* Displays/Screens (e.g. 19" WS @ 1440x900) --------------- */
@media only screen 
and (min-width : 1450px) {
  
}

/* Displays/Screens (e.g. 22" WS @ 1680x1050) -------------- */
@media
only screen and (min-width: 1650px) and (max-width: 1889px) {

}


/* Displays/Screens (e.g. 24" WS @ 1920x1080) -------------- */
@media only screen 
and (min-width : 1824px) {
 


}

@media only screen 
and (min-width : 2000px) {
 

}


/*ipad air 4th generations*/
@media only screen   
and (min-device-width : 820px) 
and (max-device-width : 1180px)  
and (orientation: landscape) { 


}

/* iPads/tablets (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {


}


@media(max-width:1024px){
  
  
  
}


@media (max-width: 768px), (max-width: 840px) {/*most of mobiles and portrait of tablets*/


}


/* iPads/tablets (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {


}



/*  (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px){


}


/* iPads pro (portrait) ----------- */
@media only screen 
and (min-device-width : 1024px) 
and (max-device-width : 1366px) 
and (orientation : portrait) {

  

}



/* iPhone 13 Pro max Landscape  -webkit-min-device-pixel-ratio: 3*/
@media only screen 
  and (min-device-width: 428px) 
  and (max-device-width: 926px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) { 

  

}


/* iPhone XR and 11  Landscape  and (-webkit-device-pixel-ratio: 3 -> 11 pro max)*/ 
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 896px) 
  and (-webkit-min-device-pixel-ratio: 2) 
  and (orientation: landscape) { 

   

}

/*Google pixels*/
@media only screen 
  and (min-device-width: 412px) 
  and (max-device-width: 846px) 
  and (-webkit-device-pixel-ratio: 3.5) 
  and (orientation: landscape) { 


}

/* iPhone 12, 13 and iPhone 12,13 Pro  Landscape */
@media only screen 
  and (min-device-width: 390px) 
  and (max-device-width: 844px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 

  

}


/* iPhone 13 mini, iPhone 12 mini, iPhone 11 Pro, iPhone Xs, and iPhone X Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
    
}



@media (max-width: 767px) { /*Landscape of most mobiles*/
html {
    padding: env(safe-area-inset);
}

body {
  position: relative;
}

p{  
  font-size: 0.9em;
}

::-moz-selection {
  text-shadow: none;
  background: transparent;
}
::selection {
  text-shadow: none;
  background: transparent;
}

img::selection {
  background: transparent;
}
img::-moz-selection {
  background: transparent;
}

.site-padding {
    padding: 20px 0px;
}

h2 {
  font-size: 1.8em;
}

}


@media(max-width:480px){ /*Landscape of iphone 5 portrait of iphone 6 plus etc 414,412*/
  .mobile{
    display: flex;
  }
  
  .desktop{
    display: none;
  }

  .cta{
    padding: 10px 15px 10px;
  }

  div#divSmoothingFactor{
    display: inline-block;
  }

}


@media(max-width:380px){/*portrait of iphone 6,  etc*/

}

@media(max-width:320px){/*portrait of iphone 5 etc*/
 
}


/*only android mobile devices*/
@media only screen and (min-resolution: 192dpi) and  (max-width: 767px),
       only screen and (min-resolution: 2dppx) and  (max-width: 767px){
}

@media only screen and (min-resolution: 192dpi) and  (max-width: 320px),
       only screen and (min-resolution: 2dppx) and  (max-width: 320px){
}