@charset "UTF-8";
/*------------------------------------*    #Main
\*------------------------------------*/
/*------------------------------------*    #Mixins
\*------------------------------------*/
/*------------------------------------*    #Colors
\*------------------------------------*/
/*------------------------------------*    #Z-index levels
\*------------------------------------*/


/*************************************************/
/* Page-wide config */
[class^="pg-"], [class*=" pg-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


body {
    /* Original color was #EFF9FA. Slight variation here to match the background of the GIFs after compression. */
    background-color: #F2FAFD;
    font-family: 'Din';
}

/* Replicate the default CSS of an h2 for titles that can't be an h2 for SEO purposes (and were turned into <span>) */
.pseudo-h2 span{
    display: block;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.1;
}

/* Replicate the default CSS of an h3 for titles that can't be an h3 for SEO purposes (and were turned into <span>) */
.pseudo-h3 span{
    display: block;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.1;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    /*max-width: 1200px; /* or 950px */
}

.navbar {
    margin-right: auto;
    margin-left: auto;
    /*max-width: 1200px;*/
}


/*************************************************/
/* Hero on top of the page */
.pg-hero-wrapper {
    /* Need this in the background to cover the parallax layers, otherwise the peek
       out behind the rounded borders of the primary hero background. */
    background-color: #EFF9FA;
    height: 600px;
    width: 100%;
} @media (min-width: 1200px) {
    .pg-hero-wrapper {
        height: 800px;
    }
}

.pg-hero-container {
    background-image: -webkit-radial-gradient(49% 38%, circle, #FFE161, #FFCE00);
    background-image: radial-gradient(circle at 49% 38%, #FFE161, #FFCE00);
    border-bottom-left-radius: 1000px;
    border-bottom-right-radius: 1000px;
    position: relative;
    overflow: hidden;
    z-index: auto;
    height: 600px;
} @media (min-width: 1200px) {
    .pg-hero-container {
        height: 800px;
    }
}

/* Title (and subtitle) */
.pg-landing-title-subtitle {

} @media (min-width: 768px) {
    .pg-landing-title-subtitle {
        padding-left: 5%;
    }
}

.pg-hero-title {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 60px;
    font-family: 'Adelle';
    font-size: 32px;
    color: #464C55;
    font-weight: medium;
} @media (min-width: 450px) {
    .pg-hero-title {
        font-size: 40px;
        /*padding-left: 30px;
        padding-right: 30px;*/
    }
} @media (min-width: 576px) {
    .pg-hero-title {
        font-size: 44px;
        /*padding-left: 75px;
        padding-right: 75px;*/
    }
} @media (min-width: 768px) {
    .pg-hero-title {
        padding-left: 20px;
        text-align: left;
        font-size: 44px;
        margin-top: 50px;
        margin-bottom: 0px;
    }
} @media (min-width: 868px) {
    .pg-hero-title {
        padding-left: 40px;
        font-size: 48px;
    }
} @media (min-width: 992px) {
    .pg-hero-title {
        font-size: 58px;
    }
}

.pg-hero-subtitle {
    margin: 0;
    padding: 0;
    display: none;
} @media (min-width: 768px) {
    .pg-hero-subtitle {
        padding-left: 20px;
        margin-top: 15px;
        font-size: 16px;
        display: block;
    }
} @media (min-width: 868px) {
    .pg-hero-subtitle {
        padding-left: 40px;
    }
} @media (min-width: 992px) {
    .pg-hero-subtitle {
        font-size: 20px;
    }
}

/* Static image of Charlie */
.pg-hero-penguin-static {
    padding-left: -webkit-calc((50%) - 100px);
    padding-left: calc((50%) - 100px);
    padding-top: 65px;
} @media (min-width: 768px) {
    .pg-hero-penguin-static {
        padding-top: 200px;
        padding-left: -webkit-calc(10%);
        padding-left: calc(10%);
    }
}

/* Chat bubbles near Charlie */
.pg-hero-chat-bubble-1 {
    position: absolute;
    top: -40px;
    left: -webkit-calc(50% - 40px);
    left: calc(50% - 40px);
    height: 40px;
    width: 120px;
    z-index: 998;
} @media (min-width: 768px) {
    .pg-hero-chat-bubble-1 {
        top: 40px;
        left: 0px;
        height: 60px;
        width: 180px;
    }
}

.pg-hero-chat-bubble-2 {
    position: absolute;
    top: 0px;
    left: -webkit-calc(50% - 25x);
    left: calc(50% - 25px);
    height: 70px;
    width: 170px;
    z-index: 998;
} @media (min-width: 768px) {
    .pg-hero-chat-bubble-2 {
        top: 95px;
        left: 15px;
        height: 110px;
        width: 280px;
    }
}

/* Hero CTA button */
/*
    Ok, so this gets a little weird. We want a smooth animation from a button
    to a form. But <button> can't take children. So we're gonna put a hidden div
    *right* behind the button. We'll then expand that div (it'll look like the button
    is expanding), and we'll slide the button up to the top of the div and disable
    it (it will look like a form title).
*/
.pg-hidden-get-started-form {
    position: absolute;
    top: auto;
    margin: auto;
    bottom: 10px;
    width: 200px;
    height: 60px;
    color: #fff;
    background-color: #464C55;
    border-radius: 40px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    z-index: 500;
    left: -webkit-calc((100% - 200px) / 2);
    left: calc((100% - 200px) / 2);
    transition:all .5s ease;
}

.pg-hidden-get-started-form-expanded {
    width: 300px;
    height: 280px;
    bottom: 80px;
    border-radius: 40px;
    left: -webkit-calc((100% - 300px) / 2);
    left: calc((100% - 300px) / 2);
}

.pg-get-started-close-button {
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
}

.pg-get-started-close-button-expanded {
    width: 50px;
    height: 50px;
    left: -webkit-calc((100% - 50px) / 2);
    left: calc((100% - 50px) / 2);
    bottom: -60px;
}

.pg-get-started-button-container {
    position: absolute;
    top: auto;
    display: none;  /* Will be displayed in javascript */
    bottom: 0;  /* Will be set in javascript */
    margin-bottom: -30px;
    width: 100%;
    height: 1px;
    /*background-color: red;*/
    z-index: 500;
    transition:all .5s ease;
}

.pg-get-started-button-container-fixed {
    position: fixed;
    bottom: 40px;
}

.pg-get-started-button {
    position: absolute;
    top: 0;
    bottom: 0px;
    width: 200px;
    height: 60px;
    color: #fff;
    background-color: Transparent;
    border-radius: 40px;
    border: 0;
    font-size: 22px;
    left: -webkit-calc((100% - 200px) / 2);
    left: calc((100% - 200px) / 2);
    transition:all .5s ease;
}

.pg-get-started-button:focus {
    outline: None;
}

.pg-get-started-button-expanded {
    bottom: 220px;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.3);
}

.pg-hidden-get-started-form-content {
    opacity: 0;
    display: none;
    background-color: Transparent;
    margin: auto;
    height: 0%;
    width: 100%;
    overflow: hidden;
}

.pg-hidden-get-started-form-content-expanded {
    opacity: 1;
    display: block;
    margin-top: 60px;
    height: 65%;
    width: 100%;
}


/* Charlie in the News */
.pg-pr-logos {
    margin-bottom: 10px;
    margin-top: 30px;
}

.pg-pr-header {
    text-align: center;
    font-family: 'Adelle';
    font-size: 30px;
} @media (min-width: 768px) {
    .pg-pr-header {
        font-size: 40px;
    }
} @media (min-width: 992px) {
    .pg-pr-header {
        font-size: 60px;
    }
}

.pg-pr-logo-img {
    width: 125px;
} @media (min-width: 768px) {
    .pg-pr-logo-img {
        width: 175px;
    }
} @media (min-width: 992px) {
    .pg-pr-logo-img {
        width: 250px;
    }
}

.pg-pr-logo {
    margin-top: 50px;
} @media (min-width: 768px) {
    .pg-pr-logo {
        margin-top: 70px;
    }
} @media (min-width: 992px) {
    .pg-pr-logo {
        margin-top: 90px;
    }
}

/* Hero Bouncing Arrow */
.pg-hero-bouncing-arrow-container {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.pg-hero-bouncing-arrow {
    display: block;
    margin: auto;
}

/* Clouds on hero background */
.pg-hero-cloud-left {
  position: absolute;
  left: 0;
  top: -webkit-calc(100% / 3);
  top: calc(100% / 3);
  height: 30%;
  z-index: 0;
}  @media (min-width: 768px) {
    .pg-hero-cloud-left {
      -webkit-transform: scale(1.5);
          -ms-transform: scale(1.5);
              transform: scale(1.5);
    }
} @media (min-width: 992px) {
    .pg-hero-cloud-left {
      -webkit-transform: scale(2);
          -ms-transform: scale(2);
              transform: scale(2);
    }
}

.pg-hero-cloud-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 30%;
} @media (min-width: 768px) {
    .pg-hero-cloud-right {
      -webkit-transform: scale(1.5);
          -ms-transform: scale(1.5);
              transform: scale(1.5);
    }
} @media (min-width: 992px) {
    .pg-hero-cloud-right {
      -webkit-transform: scale(2);
          -ms-transform: scale(2);
              transform: scale(2);
    }
}


/*************************************************/
/* Get Started Form */
.pg-get-started-messenger-btn {
    font-family: 'Din';
    border: none;
    background-color: #0084ff;
    border-radius: 100px;
    padding: 12px 60px 10px 20px;
    padding-right: 60px;
    position: relative;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
    width: 260px;
}  .pg-get-started-messenger-btn:hover {
    color: #eff9fa;
    text-decoration: none;
}

.pg-get-started-messenger-icon {
  position: absolute;
  font-size: 24px;
  top: -webkit-calc((50% / 2) - 2px);
  top: calc((50% / 2) - 2px);
  right: 10px;
}

.pg-msg-icon {
  font-family: 'hicharlie';
} .pg-msg-icon:before {
  content: "";
}

.pg-get-started-send-btn {
  font-family: "Adelle";
  display: none;
  position: absolute;
  top: 0;
  right: 20px;
  height: 100%;
  width: 75px;
  border: none;
  font-size: 18px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  color: #464C55;
  background-color: #FDD941;
  padding: 0;
  padding-top: 2px;
  outline: none;
}

.pg-get-started-error-message {
  padding: 4px 10px;
  font-size: 12px;
  color: #fff;
  display: none;
}

.pg-get-started-form-container {
    margin-top: 15px;

}

/* Privacy Optin classes */
.pg-get-started-privacy-container {
  display: none;
  width: 300px;
  height: 300px;
  color: #fff;
  background-color: #464C55;
  border: 0;
  box-shadow: none;
  border-radius: 20px;
  margin-top: -40px;
}

.pg-get-started-privacy-link {
  color: #75d4d6;
}

/*************************************************/
/* Value Props */
.pg-value-prop-quote {
    position: absolute;
    padding: 10px;
    background-color: #fff;
    width: 60%;
    top: 30%;
    left: 5%;
    border-radius: 20px;
    box-shadow: 2px 2px 0 0;
    /* Starts out transparent */
    /*opacity: 0;*/
    z-index: 3;
}


/*************************************************/
/* Social Proof Section */
.pg-social-proof {
    background-color: #75d4d6;
    padding: 50px 35px 10px 35px;
    color: #fff;
    font-family: 'Din';
    overflow: hidden;
} @media (min-width: 768px) {
    .pg-social-proof {
        padding: 80px 40px 85px 40px;
    }
}

.pg-social-proof-title span {
    font-family: 'Adelle';
    font-size: 30px;
} @media (min-width: 768px) {
    .pg-social-proof-title span {
        font-size: 40px;
    }
} @media (min-width: 992px) {
    .pg-social-proof-title span {
        font-size: 60px;
    }
}

.pg-social-proof-point {
    padding-top: 30px;
    font-size: 16px;
    line-height: 1.25;
} @media (min-width: 768px) {
    .pg-social-proof-point {
        font-size: 22px;
    }
} @media (min-width: 992px) {
    .pg-social-proof-point {
        font-size: 26px;
    }
}

.pg-social-proof-point span {
    font-family: 'Adelle';
    font-size: 30px;
} @media (min-width: 768px) {
    .pg-social-proof-point span {
        font-size: 40px;
    }
} @media (min-width: 992px) {
    .pg-social-proof-point span {
        font-size: 60px;
    }
}

.pg-testimonial {
    margin-top: 30px;
    height: 200px;
} @media (min-width: 768px) {
    .pg-testimonial {
        margin-top: 60px;
        height: 330px;
    }
}

.pg-testimonial-spacer {
    border: solid 2px white;
    position: absolute;
    width: 40px;
    left: -webkit-calc((50%) - 20px);
    left: calc((50%) - 20px);
} @media (min-width: 768px) {
    .pg-testimonial-spacer {
        width: 60px;
        left: -webkit-calc((50%) - 30px);
        left: calc((50%) - 30px);
    }
}

.pg-testimonial-profile-img {
    position: absolute;
    width: 72px;
    top: 28px;
    left: -webkit-calc((100% - 72px)/2);
    left: calc((100% - 72px)/2);
    border: solid 2px black;
} @media (min-width: 768px) {
    .pg-testimonial-profile-img {
        width: 144px;
        top: 48px;
        left: -webkit-calc((100% - 144px)/2);
        left: calc((100% - 144px)/2);
    }
}

.pg-testimonial-cloud-bg {
    position: absolute;
    width: 150px;
    top: 30px;
    left: -webkit-calc((100% - 150px)/2);
    left: calc((100% - 150px)/2);
} @media (min-width: 768px) {
    .pg-testimonial-cloud-bg {
        width: 300px;
        top: 50px;
        left: -webkit-calc((100% - 300px)/2);
        left: calc((100% - 300px)/2);
    }
}

.pg-testimonial-text {
    position: absolute;
    width: 250px;
    top: 105px;
    left: -webkit-calc((100% - 250px)/2);
    left: calc((100% - 250px)/2);
} @media (min-width: 768px) {
    .pg-testimonial-text {
        width: 500px;
        top: 200px;
        left: -webkit-calc((100% - 500px)/2);
        left: calc((100% - 500px)/2);
    }
}


/*************************************************/
/* Charlie is... section */
.pg-charlie-is {
    background-color: #464C55;
    color: #fff;
    padding: 50px 40px 50px 40px;
} @media (min-width: 768px) {
    .pg-charlie-is {
        padding: 120px 100px 120px 100px;
    }
}

.pg-charlie-is-title span {
    font-family: 'Adelle';
} @media (min-width: 768px) {
    .pg-charlie-is-title span {
        font-size: 56px;
    }
}

.pg-charlie-is-example {
    padding-top: 60px;
}

.pg-charlie-is-example span {
    font-family: 'Adelle';
} @media (min-width: 768px) {
    .pg-charlie-is-example span {
        padding-top: 40px;
        font-size: 40px;
        padding-bottom: 20px;
    }
}

.pg-charlie-is-example p {
    font-size: 16px;
    line-height: 1.25;
    font-family: 'Din-Light';
} @media (min-width: 768px) {
    .pg-charlie-is-example p {
        font-size: 26px;
        line-height: 1.1;
    }
}


/*************************************************/
/* Get Started section */
.pg-get-started-trynow-btn {
    /* For some reason this has a border on large screens but not on mobile. Gotta fix. */
    border: none;
    padding: 0;
    background: none;
}

.trustpilot-box {
    margin: auto;
    padding-top: 50px;
    margin-bottom: -10px;
    width: 90%;
}

.fb-carousel {
    width: 300px;
    height: 200px;
    margin: auto;
}

.fb-review-container {
    width: 300px;
    height: 200px;
}

.fb-review {
    /* margin-top: 20px; */
    /* margin: auto; */
    margin: 30px 25px 0 25px;
    width: 250px;
    height: 145px;
    background-color: #EFF9FA;
    color: #000;
    text-align: left;

}

.fb-review-header {
    height: 30px;
}

.fb-review-stars {
    margin-top: 10px;
    margin-left: 10px;
    float: left;
}

.fb-review-date {
    margin-right: 8px;
    margin-top: 20px;
    float: right;
    font-family: 'Din-Light';
}

.fb-review-content {
    text-align: left;
    padding: 20px 10px 10px 20px;
    height: 100px;
    font-family: 'Din';
}

.fb-reviews-label {
    float: right;
    margin-right: 10px;
    margin-top: -12px;
    margin-bottom: 12px;
    font-size: 12px;
    font-family: 'Din-Light';
}

/* $.notify Custom Styling */
[data-notify="container"] {
    min-width: 75%;
}
