/* ==========================================================================
HTML5 display definitions
========================================================================== */

/*
* Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3.
*/

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
    display: block
}

/*
* Corrects `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
*/
audio, canvas, video {
    display: inline-block;
    display: inline;
    zoom: 1;
}

/*
* Prevents modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
    display: none;
    height: 0;
}

/*
* Addresses styling for `hidden` attribute not present in IE 7/8/9, Firefox 3, * and Safari 4.
* Known issue:no IE 6 support.
*/
[hidden] {
    display: none
}

/* ==========================================================================
Base
========================================================================== */
/*
* 1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
*    `em` units.
* 2. Prevents iOS text size adjust after orientation change, without disabling
*    user zoom.
*/

html {
    font-size: 100%; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
* Addresses `font-family` inconsistency between `textarea` and other form
* elements.
*/
html, button, input, select, textarea {
    font-family: sans-serif;
    font-family: 'Muli', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: absolute;
    background-color: white;
    z-index: -2;
}

/*
* Addresses margins handled incorrectly in IE 6/7.
*/
body {
	margin: 0;
	font-family: 'Muli', sans-serif;
  color: #4A4A4A;
}

/*
* Font Smoothing
*/
html, html a {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
Links
========================================================================== */
/*
* Addresses `outline` inconsistency between Chrome and other browsers.
*/
a:focus {
    outline: thin dotted;
    text-decoration: none;
}

/*
* Improves readability when focused and also mouse hovered in all browsers.
*/
a:active, a:hover {
    outline: 0;
    text-decoration: none;
}

/* ==========================================================================
Typography
========================================================================== */
/*
* Addresses font sizes and margins set differently in IE 6/7.
* Addresses font sizes within `section` and `article` in Firefox 4+, Safari 5, * and Chrome.
*/


/* ==========================================================================
Global Styles of <p> and <a> and color of selected text
========================================================================== */
p {
  font-weight: 500; /*Regular*/
}

.dark-shadow {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.light-shadow {
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4);
}

a {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;

    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    
    -webkit-transition-property: color, border-color, background-color;
    transition-property: color, border-color, background-color;
}
a {
    /*color: rgba(29, 29, 29, 0.5);
    font-weight: 600;*/
    color: white;
}
a:hover, a:focus {
    /*color: #4A4A4A;*/
}


/* ==========================================================================
INDEX.HTML;
========================================================================== */
/* ==========================================================================
HERO SECTION
========================================================================== */
.text-center {
  text-align: center;
}

.hero {
  z-index: -1;
  position: relative; 
/*  height: 94vh;*/
  width: 100%;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(90deg, rgba(49, 26, 110, 1), rgba(131, 65, 125, 1), rgba(216, 105, 140, 1), rgba(255, 199, 133, 1));
  background-image: linear-gradient(90deg, rgba(49, 26, 110, 1), rgba(131, 65, 125, 1), rgba(216, 105, 140, 1), rgba(255, 199, 133, 1));
}
/*
* BACKGROUND IMAGE
 */
.background_img_analytics {
  z-index: 0;
  position: absolute;
  top: 120px;
  width: 100%;
}
.background_img_analytics img {
  bottom: 0;
  width: 100%;
}

/*
* TOP NAVIGATION 
 */
.top-nav {
  width: 100%;
  height: 100px;
  padding-top: 50px;
}
.top-nav img {
  width: 130px;
  height: auto;
}
.top-nav a:hover {
  color: rgba(255,255,255, 0.6);
}
.icon-spotter_logo:before {
  content: "\e901";
  font-family: 'icomoon';
  font-size: 36px;
  font-weight: 900;
}
.icon-spotter_logo_dark:before {
  content: "\e901";
  font-family: 'icomoon';
  font-size: 36px;
  font-weight: 900;
  color: #4A4A4A;
}

.top-nav ul {
  float: right;
  display: inline-block;
  margin: 0;
  margin-top: 14px;
  padding: 0;
  transition: all 300ms ease-in-out;
}
.top-nav ul li {
  display: inline;
  list-style: none;
  margin-right: 30px;
  font-size: 16px;
  font-weight: 600;
}
.top-nav ul li a:hover {
  cursor: pointer;
  color: rgba(255,255,255, 0.6);
}
.cta_sign_in {
  background-color: rgba(255,255,255,0.95);
  border: 1px white solid;
  border-radius: 4px;
  text-align: center;
  padding: 10px 30px;
  color: #E79D81;
  text-transform: none;
}
.cta_sign_in:hover {
  background-color: white;
  color: #E79D81;
  cursor: pointer;
}
.icon-arrow-forward:before {
  content: "\e900";
  font-family: 'icomoon';
}
.icon-arrow-forward {
  padding-left: 4px;
  font-size: 12px;
}

/* 
* LEFT SIDE 
*/
.left-side {
  z-index: 10;
  width: 400px;
  margin-top: 130px;
  margin-left: 6%;
  margin-bottom: 300px;
  color: rgba(255,255,255, 0.96);
}
.left-side h1 {
  font-weight: 700;
}
.left-side p {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 30px;
}
.left-side a {
  border: 1px solid white;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}
.left-side a:hover {
  cursor: pointer;
  color: inherit;
}
.cta_try_spotter {
  height: 50px;
}
.cta_read_blog {
  height: 50px;
}

.cta_try_spotter a {
  background-color: rgba(255,255,255, 0.9);
  color: #572B72;
  padding: 10px 20px;
}
.cta_try_spotter a:hover {
  color: #572B72;
}
.cta_read_blog a {
  padding: 10px 20px;
}


/* ==========================================================================
HOW IT WORKS SECTION
========================================================================== */
.how_it_works {
  margin: 60px auto 90px;
}
.how_it_works h2 {
  color: #4A2672;
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 30px;
}
.how_it_works h3 {
  color: #D8698C;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}
.how_it_works p {
  font-weight: 600;
}
.how_it_works object {
  margin: 0 auto;
  display: block;
  height: 120px;
  width: auto;
}


/* ==========================================================================
TRACK YOUR VIDEOS SECTION
========================================================================== */
.track_your_videos {
  background-color: #F6F8FA;
}
.track_your_videos .row {
  margin-left: 6%;
}
.track_your_videos h2 {
  margin: 0 auto;
  color: #D8698C;
  font-size: 28px;
  font-weight: 600;
  padding-top: 60px;
}
.track_your_videos p {
  font-size: 18px;
  margin-top: 14px;
  padding-bottom: 60px;
  font-weight: 600;
}
.track_your_videos object {
  margin: 0 auto;
  display: block;
  height: 220px;
  width: auto;
  bottom: 0;
  margin-top: 40px;
  z-index: 0;
  position: relative;
}

/* ==========================================================================
TRACK YOUR VIDEOS SECTION
========================================================================== */
.cta_try_spotter_dashboard {
  width: 100%;
  z-index: 20;
  background-color: white;
  margin-top: -25px;
  position: relative;
}
.cta_try_spotter_dashboard .row {
  margin: 60px auto;
  margin-left: 6%;
}
.cta_try_spotter_dashboard h2 {
  color: #7D42BF;
  font-weight: 600;
}
.cta_try_spotter_dashboard h3 {
  color: #000;
  font-size: 22px;
}
.btn_cta_try_spotter {
  margin-top: 40px;
}
.btn_cta_try_spotter a {
  padding: 10px 24px;
  background-color: #7D42BF;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, .5);
}
.btn_cta_try_spotter a:hover {
  color: white;
}

/* ==========================================================================
SELFIE
========================================================================== */
.selfie .container {
  border-top: 1px solid #E9E6E6;
}
.text {
  margin: 60px auto;
}
.text h3 {
  color: #D8698C;
  font-size: 20px;
  font-weight: 600;
}
.text h3 span {
  color: #4A2672;
}
.text h3 span:hover {
  cursor: pointer;
}
.selfie_img object {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 1000px;
}

.click_selfie p {
  padding: 20px ; 
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
  color: #9B9B9B;
  font-size: 16px;
  text-align: center;
}
.click_selfie p:hover {
  cursor: pointer;
  color: #000;
}

/**
 * SELFIE MODAL
 */
.selfie_modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
  background-image: -webkit-linear-gradient(90deg, rgba(247, 199, 99, 1), rgba(251, 219, 153, 1));
  background-image: linear-gradient(90deg, rgba(247, 199, 99, 1), rgba(251, 219, 153, 1));
}
.selfie_modal .dismiss {
  margin-top: 60px;
}
.selfie_modal .dismiss img {
  width: 24px;
  height: auto;
  float: right;
}
.selfie_modal .dismiss img:hover {
  cursor: pointer;
}
.selfie_modal .text {
  margin-top: 200px;
  font-size: 24px;
  padding: 120px auto;

}
.selfie_modal .text h3 {
  color: #7C0F3E;
  line-height: 30px;
  font-weight: 600;
}
.selfie_modal .text p {
  border: 3px solid #7C0F3E;
  border-radius: 4px;
  margin: 40px auto;
  text-align: center;
  padding: 10px 20px;
  color: #7C0F3E;
  font-size: 16px;
  font-weight: 600;
  width: 200px;
}

/* ==========================================================================
SELFIE BLOG POST
========================================================================== */
.selfie_blog_post {
  background-color: #F6F8FA;
}
.selfie_blog_post h3 {
  padding-left: 6%;
  margin: 60px auto;
  font-size: 20px;
  color: #4A2672;
  font-weight: 600;
}
.selfie_blog_post h3 span {
  color: #E1809D;
}

.btn_read_blog_selfie {
  margin-top: 78px;
  margin-bottom: 60px;
  float: right;
}
.btn_read_blog_selfie a {
  color: #4A2672;
  border: 1px solid #4A2672;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
}
.btn_read_blog_selfie a:hover {
  cursor: pointer;
  border: 1px solid rgba(74, 38, 114, 0.5);
}


/* ==========================================================================
PSY BLOG POST
========================================================================== */
.psy_image object {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 1000px;
}
.psy_blog_post .text {
  margin-top: 70px;
}
.psy_blog_post h2 {
  text-align: right;
  color: #3CC99E;
  font-weight: 600;
}
.psy_blog_post h3 {
  text-align: right;
  color: #4A4A4A;
  font-weight: 600;
  font-size: 20px;
}
.btn_read_blog_psy {
  float: right;
  margin-top: 40px;
  margin-bottom: 26px;
}
.btn_read_blog_psy a {
  color: #3CC99E;
  border: 1px solid #3CC99E;
  text-align: right;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
}
.btn_read_blog_psy a:hover {
  cursor: pointer;
  border: 1px solid rgba(60,201,158, 0.5);
}

.blue_background {
  background-color: #F6F8FA;
}

/* ==========================================================================
FOOTER
========================================================================== */
footer {
  background-color: #F6F8FA;
}
footer .container {
  border-top: 1px solid #F4F0F0;
}
.copyrights {
  margin: 0 auto;
  text-align: center;
  padding: 80px;
}

.copyrights p {
  font-size: 13px;
  color: #A9A9A9;
}

.copyrights p a {
  font-weight: 400;
  color: #4995E0;
}

.copyrights span.fa-heart {
  color: #FF415C;
  font-size: 15px;
  margin: 0 2px;
}

/* Animate Heart */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); 
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8); 
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); 
  } 
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); 
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8); 
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); 
  } 
}


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

SIGN UP

========================================================================== */
.dashboard_body {
  background-color: #F6F8FA;
}

.container_box {
  margin: 100px auto;
}

.form_box {
  margin: 20px auto;
  border-radius: 6px;
  width: 400px;
  background-color: white;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.5);
}
.form_box h2 {
  padding-top: 30px;
  font-weight: 700;
  font-size: 24px;
  color: #4A4A4A;
}
.form_box p {
  text-align: right;
  padding: 10px;
  padding-right: 40px;
}
.form_box a {
  color: #4995E0;
}

.sign_up_form {
  padding: 20px 40px;
}
.form-control {
  border-color: rgba(216, 105, 140, 0.5);
}
.form-control::-webkit-input-placeholder { color:rgba(216, 105, 140, 0.8); }
.form-control:-moz-placeholder { color:rgba(216, 105, 140, 0.9); } /* firefox 19+ */
.form-control:-ms-placeholder { color:rgba(216, 105, 140, 0.9); } /* ie */

.form-control:focus{
  outline: none;
}
.btn_spotter {
  width: 100%;
  background-color: #D8698C;
  border-color: #D8698C;
  font-weight: 600;
}
.btn_spotter:hover {
  background-color: #D8698C;
  border-color: #D8698C;
}

.if_registered_sign_in h3 {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  color: black;
}
.if_registered_sign_in h3 span {
  text-decoration: underline;
}
/**
 * Sign Up If coming form Dashboard
 */
.text_from_dashboard {
  margin: 30px auto;
  width: 400px;
}
.text_from_dashboard h2 {
  color: #4A2672;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.text_from_dashboard p {
  color: #4A2672;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.text_from_dashboard span {
  color: #D8698C;
}

/**
 * Log In
 */
.remember_password {
  margin-top: 30px;
}
.form-check {
  text-align: left;
}
.forgot_password {
  text-align: right;
  font-size: 13px;
}
.forgot_password a:hover {
  cursor: pointer;
}

/** * ABOUT US
 */
.about_us {
  max-width: 600px; 
  text-align: left; 
  margin: 60px auto;
}
.about_us h1 {
  padding-bottom: 20px;
  text-align: center;
}
.about_us p {
  text-align: left;
  font-size: 16px;
  margin: 20px;
}

.about_us a {
  color: #3B80D8;
}










