@font-face {
  font-family: AbrahamLincoln;
  src: url('../fonts/abrahamlincoln.eot');
  src: url('../fonts/abrahamlincoln.eot?#iefix') format('embedded-opentype'),
       url('../fonts/abrahamlincoln.woff') format('woff'),
       url('../fonts/abrahamlincoln.ttf') format('truetype'),
       url('../fonts/abrahamlincoln.svg#abraham_lincolnregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: BebasBold;
  src: url('../fonts/bebasneuebold.eot');
  src: url('../fonts/bebasneuebold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/bebasneuebold.woff') format('woff'),
       url('../fonts/bebasneuebold.ttf') format('truetype'),
       url('../fonts/bebasneuebold.svg#bebas_neuebold') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: BebasRegular;
  src: url('../fonts/bebasneueregular.eot');
  src: url('../fonts/bebasneueregular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/bebasneueregular.woff') format('woff'),
       url('../fonts/bebasneueregular.ttf') format('truetype'),
       url('../fonts/bebasneueregular.svg#bebas_neue_regularregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: ProximaLight;
  src: url('../fonts/proximanova-light.eot');
  src: url('../fonts/proximanova-light.eot?#iefix') format('embedded-opentype'),
       url('../fonts/proximanova-light.woff') format('woff'),
       url('../fonts/proximanova-light.ttf') format('truetype'),
       url('../fonts/proximanova-light.svg#proxima_novalight') format('svg');
  font-weight: normal;
  font-style: normal;
}

html{
  width:100%;
  height:100%;
}
body{
  width:100%;
  height:100%;
}
h1{
  font-family:AbrahamLincoln, Georgia, serif;
  font-size: 86px;
  color:#231F20;
  line-height:105%;
  padding-bottom:7px;
  font-weight:100;
}
.shiny{
  background: #231F20 -webkit-linear-gradient(-10deg, #231F20 0%, #888888 50%, #231F20 100%);
  background-position: 0% top;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: shimmer;
  -webkit-animation-duration: 3s;
  -webkit-animation-timing-function:ease-in;
  -webkit-animation-iteration-count: infinite;
  -webkit-background-size: 3.125rem 100%;
}
@-webkit-keyframes shimmer {
	0% {
		background-position: 0% top;
	}
	
	
	100% {
		background-position: 90% top;
	}
}
h2{
  font-family:AbrahamLincoln, Georgia, serif;
  font-size: 44px;
  color:#231F20;
  line-height:120%;
  font-weight:100; 
}
h4{
  font-family:BebasBold, Helvetica, Arial, sans-serif;
  font-size:26px;
  color:#231F20;
  line-height:100%;
  font-weight:100;
}
h5{
  font-family:BebasRegular, Helvetica, Arial, sans-serif;
  font-size:26px;
  color:#231F20;
  line-height:100%;
  font-weight:100;
}
p{
  font-family:BebasRegular, Helvetica, Arial, sans-serif;
  font-size:15px;
  color:#231F20;
  line-height:100%;
  font-weight:100;
  text-align:left;
}
.section{
  width:100%;
}
.share-fixed{
  position:fixed;
  height:100%;
  left:0;
  top:0;
  bottom:0;
  z-index:99;
  padding-left:20px;
}
.share-fixed > ul{
  position:absolute;
  top:0;
  list-style:none;
  padding:0;
  margin:0;
  padding-bottom:20px
}
.share-fixed > ul > li{
  margin-top:20px;
}
.hero-section{
  height:100%;
}
.hero-container{
  height:100%;
  background-image:url(../images/bodoni-img-hero.jpg);
  background-repeat:no-repeat;
  background-position:90% center;
}
.vertical-center-wrapper{
  display:table;
  height:100%;
  width:100%;
  text-align:center;
}
.vertical-center{
  display:table-cell;
  vertical-align:middle;
  text-align:center;
}
#balloonBounce{
    background-image: url("../images/balloon.svg");
    background-repeat: no-repeat;
    background-position:center center;
    background-size:contain;
    margin:0 auto;
    margin-top: 40px;
    width:50px;
    height:50px;
    -moz-animation: baloonBounceAnim 1500ms infinite ease-in-out;
    -webkit-animation: baloonBounceAnim 1500ms infinite ease-in-out;
    -moz-transition: -moz-transform;
    -webkit-transition: -webkit-transform;
}

@-moz-keyframes baloonBounceAnim {
    0% { -moz-transform: translateY(0) }
    50% { -moz-transform: translateY(20px) }
    100%{ -moz-transform: translateY(0) }
}
@-webkit-keyframes baloonBounceAnim{
    0% { -webkit-transform: translateY(0) }
    50% { -webkit-transform: translateY(20px) }
    100%{ -webkit-transform: translateY(0) }
}
.info-section{
  height:100%;
  position:relative;
  overflow:hidden;
}
.image-slider{
  position:absolute;
  width:100%;
  height:100%;
  z-index:-1;
}
.slider-image{
  position:absolute;
  width:110% !important;
  height:110% !important;
  margin-left:-5% !important;
  background-size:cover;
  background-image:url(../images/sliderimages/bodoni1.jpg);
  z-index:-1;
  transition:background-image 500ms ease;
}
#next{
  position:absolute; 
  top:50%; 
  right:20px;
  background-image:url(../images/next.png);
  width:33px;
  height:48px;
  background-repeat:no-repeat;
  background-size:contain;
  cursor:pointer;
  opacity:0.7;
  transition:opacity 200ms ease;
}
#next:hover{
  opacity:1;
}
#prev{
  position:absolute; 
  top:50%; 
  left:20px;
  background-image:url(../images/prev.png);
  width:33px;
  height:48px;
  background-repeat:no-repeat;
  background-size:contain;
  cursor:pointer;
  opacity:0.7;
  transition:opacity 200ms ease;
}
#prev:hover{
  opacity:1;
}
.info-container{
  height:100%;
  position:relative;
  z-index:999;
}
.info-box-wrapper{
  position:absolute;
  width:350px;
  height:468px;
  top:50%;
  right:0%;
  margin-top:-234px;
  background-color:#F7F7F7;
  border:1px solid #000;
  box-shadow: 0px 0px 30px rgba(0,0,0,0.5);
}
.info-box-head{
  padding:5px;
  border-bottom:1px solid #000;
}
.info-box{
  width:100%;
  height:30px;
  padding:5px;
  border-bottom:1px solid #000;
  font-family:BebasRegular, Helvetica, Arial, sans-serif;
  font-size:20px;
  color:#231F20;
  line-height:100%;
  font-weight:100;
  text-transform:uppercase;
}
.info-box-icon{
  display:inline-block;
  width:50%;
  height:73px;
  padding:5px;
  border-bottom:1px solid #000;
  border-right:1px solid #000;
  font-family:BebasRegular, Helvetica, Arial, sans-serif;
  font-size:20px;
  color:#231F20;
  line-height:100%;
  font-weight:100;
  text-transform:uppercase;
  text-align:center;
  vertical-align:top;
}
.info-box:last-of-type{
  border-bottom:none;
}
.info-box-icon#last{
  border-right:none;
}
.dowry-section{
  height:100%;
  background-image:url(../images/bone.svg);
}
.dowry-container{
  height:100%;
  position:relative;
}
.dowry-content-wrapper{
  position: absolute;
  top: 53%;
  left: 72%;
  width: 280px;
  height: 225px;
  background-image: url(../images/bodoni-dowry.jpg);
  border-radius: 5px;
  background-size: contain;
}
.dowry-content-wrapper > h2{
  background-color: white;
  padding: 5px;
  padding-left: 10px;
  position: absolute;
  bottom: 57px;
  left: -122px;
  border-radius: 10px;
}
.horoscope-section{
  padding-top:30px;
  padding-bottom:50px;  
  background-color:#FFE161;
}
.horoscope-image{
  margin-top:30px;
  width:100%;
  height: 430px;
  background-image:url(../images/bodoni-horoscope.svg);
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
}
.reasons-section{
  padding-top:30px;
  height:652px;
  background-image:url(../images/bodoni-reasons.jpg);
  background-position:bottom center;
  background-repeat:no-repeat;
  border-bottom:1px solid #000;
}
.reasons-container{
  position:relative;
  height:100%;
}
.reason{
  position:absolute;
  font-family:ProximaLight, Helvetica, Arial, sans-serif;
  opacity:0;
  transition:opacity 1000ms ease;
}
#reason1{
  bottom: 180px;
  left: 210px;
}
#reason2{
  bottom: 340px;
  left: 130px;
}
#reason3{
  bottom: 420px;
  left: 300px;
}
#reason4{
  bottom: 400px;
  right: 240px;
  text-align: right;
}
#reason5{
  bottom: 260px;
  right: 180px;
  text-align:right;
}
#reason6{
  bottom: 110px;
  right: 240px;
  text-align:right;
}
.match-section{
  padding-top:30px;
  padding-bottom:50px;
}
.match-container{
  height:100%;
}
.match-bodoni{
  width:300px;
  height:300px;
  border:1px solid #000;
  background-image:url(../images/bodoni-match.jpg);
  background-repeat:no-repeat;
  background-size:contain;
  margin:0 auto;
}
.match-upload{
  width:300px;
  height:300px;
  border:1px solid #000;
  background-image:url(../images/upload-match.jpg);
  background-repeat:no-repeat;
  background-size:contain;
  margin:0 auto;
  position:relative;
}
#matchform{
  width:100%;
  height:100%;
  cursor:pointer;
  transition:all 300ms ease;
}
#matchform > div > span {
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 65%;
  left: 50%;
  width: 150px;
  height:52px;
  margin-left: -75px;
  border: 3px solid #FFE161;
  padding: 10px;
  border-radius: 10px;
  font-family:BebasRegular, Helvetica, Arial, sans-serif;
  font-size:26px;
  color:#231F20;
  line-height:100%;
  font-weight:100;
  text-transform:uppercase;
  transition:all 300ms ease;
}
#matchform:hover{
  box-shadow: 0px 0px 30px rgba(0,0,0,0.2) inset;
}
#matchform:hover > div > span{
  background-color:#FFE161;
}
.dz-filename, .dz-size, .dz-progress, .dz-success-mark, .dz-error-mark, .dz-error-message{
  display:none;
}
.dz-details{
  position: relative;
  z-index: 999;
  cursor:default !important;
  width:100%;
  height:100%;
  background-color:white;
}
.dz-image-preview{
  width:100%;
  height:100%;
  background-color:white;
}
.match-button{
  width:120px;
  height:50px;
  margin:0 auto;
  margin-top:20px;
  border: 3px solid #BBB;
  color:#BBB;
  padding: 6px 12px;
  border-radius: 10px;
  font-family:BebasRegular, Helvetica, Arial, sans-serif;
  font-size:26px;
  line-height:1.33;
  font-weight:400;
  text-transform:uppercase;
  text-align:center;
  transition:all 300ms ease;
  display: block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  background-image:none;
  white-space: nowrap;
}
.button-active{
  cursor:pointer;
  color:#231F20; 
  background-color:#FFE161;
  border: 3px solid #FFE161;
  animation: pulse 1s linear infinite;
  -webkit-animation: pulse 1s linear infinite;
  -moz-animation: pulse 1s linear infinite;
  -ms-animation: pulse 1s linear infinite;
  -o-animation: pulse 1s linear infinite;
  transition:all 300ms ease;
}
.button-active:hover{
  background-color:transparent;
  animation: none;
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  -o-animation: none;
}
.reject-overlay{
  width:100%;
  height:100%;
  position:fixed;
  background-color:rgba(0,0,0,0.6);
  top:0;
  bottom:0;
  right:0;
  left:0;
  z-index:999999;
  display:none;
}
.reject-click{
  position:absolute;
  width:100%;
  height:100%;
}
.reject-box{
  width: 600px;
  height: 259px;
  background-color: #f7f7f7;
  border: 1px solid #000;
  position: relative;
  top: 50%;
  left: 50%;
  margin-left: -300px;
  margin-top: -130px;
}
.reject-head{
  height:150px;
  padding:20px;
  border-bottom:1px solid #000;
}
.reject-pic{
  height: 195px;
/*
  margin-top: -10px;
*/
  margin-left: -10px;
/*
  float: left;
*/
  position: absolute;
}
.reject-reason-random{
  display: inline-block;
  margin-left: 20px;
  text-align: left;
/*
  float: left;
*/
  font-size: 39px;
  margin-top: 10px;
  padding-left: 145px;
}
.reject-box > p{
  text-align: left;
  padding: 14px;
  font-size: 30px;
  padding-left: 185px;
  border-bottom:1px solid #000;
}
.overlay-share-text{
  display: inline-block;
  border-bottom: none !important;
  font-size: 16px !important;
  padding-top: 16px !important;
  font-family: ProximaLight, Helvetica, Arial, sans-serif;
}
.overlay-share{
  display:inline-flex;
  list-style:none;
  margin:0;
  padding:0;
}
.overlay-share > li{
  display:inline;
  margin-right:20px;
  position:relative;
  top:1px;
}

.tryagain{
  margin-left: 20px;
  border: 3px solid #FFE161;
  padding: 5px 11px;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 24px;
  top: -2px;
}
.tryagain:hover{
  background:#FFE161;
}
  
.ventures-section{
  padding-top: 60px;
  border-top: 1px solid #000;
}
.ventures ul {
  list-style: none;
  padding-top: 18px;
  padding-left: 0;
}
.ventures ul li {
  display: inline-block;
  margin-right: 4px;
  margin-left: 4px;
  text-align:center;
}
.ventures ul li img {
  width: 85%;
}
.ventures ul li:last-child {
  margin-right: 0;
  padding-left: 0;
}
.footer{
  text-align: center;
  font-family:ProximaLight, Helvetica, Arial, sans-serif;
  font-weight: 100;
  color: #777070;
  font-size: 15px;
  margin: 7px;
  text-transform:none;
}
.footer img{
  vertical-align: middle;
}
footer{
  border-top: 1px solid #000;
  margin-top: 70px;
}
.footer a{
  color: #777070;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .w-container{
    max-width:1170px;
  }
}
@keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

    60% {
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -o-transform: scale(0.95);
        transform: scale(0.95);
    }

    80% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

    60% {
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -o-transform: scale(0.95);
        transform: scale(0.95);
    }

    80% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

    60% {
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -o-transform: scale(0.95);
        transform: scale(0.95);
    }

    80% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@-ms-keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

    60% {
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -o-transform: scale(0.95);
        transform: scale(0.95);
    }

    80% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@-o-keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

    60% {
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -ms-transform: scale(0.95);
        -o-transform: scale(0.95);
        transform: scale(0.95);
    }

    80% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
}  



  
