.font-modern * {
    font-family: 'Poppins', sans-serif;
}

.font-modern .heading-lrg,
.font-modern .heading,
.font-modern .heading-sml {
    font-weight: 300;
    font-family: 'Roboto Slab', serif;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.header {
    padding-top: 40px;
}

.logo {
    display: flex;
    font-size: calc(120% + 1vw);
    line-height: 44px;
    font-weight: bold;
}

.nav-link {
    font-size: 19px;
    line-height: 44px;
    text-decoration: none;
    color: inherit;
    display: inline-block;
    margin: 0 15px;
}

.logo img {
    margin-right: 10px;
    height: 44px;
    display: inherit;
}

/*Text*/
.heading {
    font-size: 42px;
    line-height: 1.5;
}

.heading-sml {
    font-size: 36px;
    line-height: 1.38;
    font-weight: bold;
}

.heading-lrg {
    font-size: 56px;
    line-height: 1.38
}

.subheading {
    font-size: 22px;
    line-height: 1.8;
    font-weight: 400;
}

.paragraph {
    font-size: 19px;
    line-height: 1.8;
    font-weight: normal;
}

a {
    color: inherit;
    text-decoration: none;
}

.span {
    font-size: 15px;
    line-height: 1.5;
}

.bold {
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

img {
    max-width: 100%;
}

/*grid*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    padding: 0 20px;
}

.col-1 {
    flex-basis: 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex-basis: 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex-basis: 25%;
    max-width: 25%;
}

.col-4 {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex-basis: 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex-basis: 50%;
    max-width: 50%;
}

.col-7 {
    flex-basis: 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex-basis: 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex-basis: 75%;
    max-width: 75%;
}

.col-10 {
    flex-basis: 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex-basis: 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex-basis: 100%;
    max-width: 100%;
}

/*flexbox styles*/
.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.spread {
    justify-content: space-between;
}

.center-horizontal {
    align-items: center;
}

.center-vertical {
    justify-content: center;
}

.start {
    justify-content: flex-start;
}

.end {
    justify-content: flex-end;
}

.noshrink {
    flex-shrink: 0;
}

.wrap {
    flex-flow: wrap;
}

/*containers*/
.container-lrg,
.container,
.container-sml {
    margin: auto;
    position: relative;
    width: 100%;
}

.container-lrg {
    max-width: 1020px;
}

.container {
    max-width: 780px;
}

.container-sml {
    max-width: 470px;
}

.section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/*button*/
.button {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 3px;
    font-size: 15px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    text-decoration: none;
    background: white;
    color: black;
    white-space: nowrap;
    border: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.button__full {
    width: 100%;
    margin: 0;
    text-align: center;
}

.no-max-width {
    max-width: initial !important;
}

.white-color,
.button.accent-bg span {
    color: #fff !important;
}

.button svg,
.button span {
    display: inline-block;
    vertical-align: middle;
}

.button svg {
    height: 18px;
    max-width: 21px;
    margin-right: 5px;
}

.mask {
    overflow: hidden;
    position: relative;
    background: white;
}

.mailchimp {
    border: 15px solid white;
    border-radius: 3px;
    position: relative;
    background: white;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    margin: auto;
}

.mailchimp-input {
    font-size: 15px;
    outline: none;
    border: none;
    width: 100%;
    padding: 15px;
}

.fill-white {
    fill: white;
}

.user-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-block;
    background-position: center;
    background-size: cover;
}

/*Team and footer social icons*/
.socialicons {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.socialicons:not(:last-of-type) {
    margin-right: 10px
}

/*padding & margins*/
.mb10:not(:last-of-type), .mb10:first-of-type {
    margin-bottom: 10px;
}

.mb20:not(:last-of-type), .mb20:first-of-type {
    margin-bottom: 20px;
}

.mb35:not(:last-of-type), .mb35:first-of-type {
    margin-bottom: 35px;
}

.mb40:not(:last-of-type), .mb40:first-of-type {
    margin-bottom: 40px;
}

.mb50:not(:last-of-type), .mb50:first-of-type {
    margin-bottom: 50px;
}

.mb75:not(:last-of-type), .mb75:first-of-type {
    margin-bottom: 75px;
}

.m0 {
    margin: 0
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt75 {
    margin-top: 75px;
}

.mr0 {
    margin-right: 0px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.pl0 {
    padding-left: 0;
}

.pr0 {
    padding-right: 0;
}

.pad10 {
    padding: 10px;
}

.pad20 {
    padding: 20px;
}

.pad30 {
    padding: 30px;
}

@media screen and (max-width: 820px) {
    .container-lrg.flex,
    .container.flex,
    .container-sml.flex,
    .mobile-flex-wrap {
        flex-flow: wrap;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11 {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
  .col-4{
      max-width: 100%;
      margin-bottom: 20px;
  }
    .mobile-col-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .heading-sml {
        font-size: calc(110% + 2vw);
    }

    .heading {
        font-size: calc(107.5% + 3.7vw);
    }

    .heading-lrg {
        font-size: calc(105% + 5.3vw);
    }

    .section {
        padding: 60px 0;
    }

    .mobile-text-center {
        text-align: center;
    }

    .mobile-center-icon {
        margin: 0 auto 20px;
    }

    .card > div:not(:first-of-type) {
        border-top: 1px solid rgba(0, 0, 0, .1);
        border-left: none;
    }

    .mailchimp .button {
        width: 100%;
    }

}

@media screen and (max-width: 460px) {
    .button {
        max-width: 280px;
        width: 100%;
        margin-right: 0 !important;
    }
}

.logo__white {
    color: white !important;
}

.logo__black {
    color: black !important;
}

.button__black,
.button__black.accent-bg span {
    color: black !important;
}

.button__black svg {
    fill: black !important;
}

.button__white,
.button__white.accent-bg span {
    color: white !important;
}

.button__white {
    fill: white !important;
}

.icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 126, 247, .07);
    margin-bottom: 20px;
}

.icon svg {
    width: 100%;
    max-width: 30px;
    max-height: 30px;
}

.linebreak {
    word-spacing: 300px;
}

.team-card {
    width: 300px;
    padding: 30px;
    /*height: 460px;*/
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 3px;
}

.twitter, .medium, .facebook, .github, .instagram, .youtube, .linkedin, .email {
    position: relative;
}

.twitter:after,
.medium:after,
.facebook:after,
.github:after,
.instagram:after,
.youtube:after,
.linkedin:after,
.email:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background-position: center;
    background-size: 16px auto;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}

.twitter:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmIiB3aWR0aD0iMTIyIiBoZWlnaHQ9Ijk5IiB2aWV3Qm94PSIwIDAgMTIyIDk5IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0xMjEuNTY4IDExLjY5NWE0OS44NjkgNDkuODY5IDAgMCAxLTE0LjMyNSAzLjkyOGM1LjE1LTMuMDg3IDkuMTA0LTcuOTc1IDEwLjk2Ny0xMy43OTlhNDkuOTQ5IDQ5Ljk0OSAwIDAgMS0xNS44MzggNi4wNTJBMjQuOTEgMjQuOTEgMCAwIDAgODQuMTY3IDBDNzAuMzkyIDAgNTkuMjI1IDExLjE2NyA1OS4yMjUgMjQuOTRjMCAxLjk1NS4yMiAzLjg1OS42NDYgNS42ODQtMjAuNzI5LTEuMDQtMzkuMTA3LTEwLjk3LTUxLjQwOC0yNi4wNTlhMjQuODI0IDI0LjgyNCAwIDAgMC0zLjM3NyAxMi41NGMwIDguNjUyIDQuNDA0IDE2LjI4NiAxMS4wOTYgMjAuNzU5YTI0Ljg0MSAyNC44NDEgMCAwIDEtMTEuMjk3LTMuMTJjLS4wMDIuMTA0LS4wMDIuMjA5LS4wMDIuMzE0IDAgMTIuMDg0IDguNTk3IDIyLjE2NSAyMC4wMDcgMjQuNDU2YTI0Ljk3NSAyNC45NzUgMCAwIDEtMTEuMjY0LjQyN2MzLjE3NCA5LjkwOSAxMi4zODUgMTcuMTIgMjMuMjk5IDE3LjMyMUE1MC4wNDQgNTAuMDQ0IDAgMCAxIDUuOTUgODcuOTRjLTIuMDEzIDAtMy45OTktLjExOC01Ljk1LS4zNDggMTEuMDM4IDcuMDc2IDI0LjE0OCAxMS4yMDUgMzguMjMzIDExLjIwNSA0NS44NzUgMCA3MC45NjItMzguMDA1IDcwLjk2Mi03MC45NjNhNzEuOTIgNzEuOTIgMCAwIDAtLjA3Mi0zLjIyNyA1MC42OTIgNTAuNjkyIDAgMCAwIDEyLjQ0NS0xMi45MSIvPjwvc3ZnPg==);
}

.medium:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAyMCAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTguMTA1IDE0LjM1N2wxLjQ4MiAxLjQxNXYuMDQ3SDEyLjA3di0uMDQ3bDEuNTA4LTEuNDE1YS41NjguNTY4IDAgMCAwIC4yMDEtLjU0M1Y0Ljc2N2MwLS4zODIgMC0uODk4LjA2Ny0xLjM0TDguNzc3IDE2aC0uMDZMMy40NjcgNC40MzJjLS4xMTQtLjI4OC0uMTQ3LS4zMDgtLjIyMi0uNTAzdjcuNTg1YTIuNjM2IDIuNjM2IDAgMCAwIC4yNDggMS40ODJsMi4xMTMgMi43NzV2LjA0OEgwdi0uMDQ3bDIuMTEyLTIuNzgzYy4yMjMtLjQ1OC4zMS0uOTcuMjQ5LTEuNDc1VjMuMTMyYTEuNjIzIDEuNjIzIDAgMCAwLS4zNS0xLjE0N0wuNTE2LjA0N1YwaDUuMzY1bDQuNDkzIDkuNzk3TDE0LjMzIDBoNS4yNTF2LjA0N0wxOC4xMDUgMS42OWEuNTc4LjU3OCAwIDAgMC0uMjI4LjU2M3YxMS41NmEuNTQxLjU0MSAwIDAgMCAuMjI4LjU0NHoiIGZpbGwtcnVsZT0ibm9uemVybyIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==);
}

.facebook:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmIiB3aWR0aD0iNTIiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgNTIgMTAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0zMy42NjcgOTkuNDlWNTQuMTA4SDQ4Ljk2bDIuMjktMTcuNjg2SDMzLjY2NlYyNS4xM2MwLTUuMTIgMS40MjgtOC42MSA4LjgtOC42MWw5LjQwMi0uMDA1Vi42OTdDNTAuMjQyLjQ4MiA0NC42NiAwIDM4LjE2OSAwIDI0LjYxMSAwIDE1LjMzMSA4LjI0MiAxNS4zMzEgMjMuMzc5djEzLjA0M0gwdjE3LjY4NmgxNS4zMzJWOTkuNDloMTguMzM1Ii8+PC9zdmc+);
    background-size: auto 16px;
}

.github:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmIiB3aWR0aD0iMTA1IiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwNSAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTYzLjg3OSA5Ni42MzZWODIuNjhjMC0zLjQ5LS45OTctNi40OC0zLjQ4OS04Ljk3Mi45OTcgMCAzLjQ4OS0uNDk4IDYuNDgtLjk5NyA2Ljk3Ny0xLjQ5NSAxMS45Ni00Ljk4NCAxNC40NTMtMTAuNDY2IDIuOTktNS45OCAzLjQ4OS0xMi40NiAxLjk5NC0xOC45NGExNi42MzMgMTYuNjMzIDAgMCAwLTIuNDkzLTUuOThjLTEuNDk1LTEuNDk1LTEuOTkzLTIuNDkyLTEuNDk1LTIuOTkuOTk3LTMuNDkuOTk3LTcuNDc3LS40OTgtMTEuOTYyLS40OTktLjk5Ny0uOTk3LS45OTctMS40OTUtLjk5Ny0yLjk5IDAtNy40NzYgMS40OTUtMTIuNDYgNC40ODYtLjk5Ny40OTgtMS40OTYuNDk4LTEuNDk2LjQ5OGE1MC42MDkgNTAuNjA5IDAgMCAwLTI0LjQyMSAwYy0uNDk5IDAtLjk5NyAwLTEuNDk2LS40OTgtNC40ODUtMi40OTItNy45NzQtNC40ODYtMTAuOTY0LTQuNDg2LTEuNDk2LS40OTgtMS45OTQtLjQ5OC0yLjQ5MiAwLS40OTkuNDk4LS40OTkuOTk3LS45OTcgMS45OTQtLjk5NyAzLjk4Ny0uOTk3IDcuNDc2IDAgMTAuOTY0IDAgLjQ5OSAwIC45OTctLjQ5OS45OTctMy45ODcgNC45ODQtNS40ODIgMTAuOTY1LTQuNDg1IDE4LjQ0MSAxLjQ5NSA5Ljk2OCA2Ljk3NyAxNi40NDcgMTYuOTQ1IDE4Ljk0LjQ5OSAwIDIuNDkyLjQ5OCA2LjQ4IDEuNDk1LTEuNDk2IDEuNDk1LTIuNDkyIDMuNDg4LTIuOTkgNS45OCAwIC40OTktLjUuOTk3LS41Ljk5Ny02LjQ3OCAyLjQ5Mi0xMC45NjQuOTk3LTE0LjQ1My0zLjk4Ny0xLjk5My0yLjk5LTQuNDg1LTQuOTg0LTYuOTc3LTUuNDgyaC0yLjQ5MmMtLjk5NyAwLS45OTcuNDk4LS40OTkgMS40OTUuNDk5LjQ5OC45OTcuOTk3IDEuNDk1Ljk5NyAyLjQ5MiAxLjQ5NSA0LjQ4NiAzLjk4NyA1Ljk4MSA2Ljk3NyAxLjk5NCA0LjQ4NiA1LjQ4MyA2Ljk3OCAxMC45NjUgNy40NzYuNDk4IDAgMi45OSAwIDYuOTc4LS40OTh2OS40N2MwIC45OTYtLjQ5OSAxLjQ5NS0uOTk3IDEuOTkzLS45OTcuNDk5LTEuNDk1LjQ5OS0yLjQ5MiAwLTQuOTg0LTEuNDk1LTguOTcxLTMuNDg5LTEyLjQ2LTUuOThDNy4wNiA4Mi42OC0uOTE0IDY3LjcyNy4wODMgNDguNzg4Yy40OTktMTEuOTYyIDQuNDg2LTIxLjkzIDEyLjQ2LTMwLjlDMjAuNTE4IDguOTE2IDMwLjQ4NiAzLjQzMyA0My40NDQuOTQxYzEyLjk1OS0yLjQ5MiAyNC45MiAwIDM2LjM4NCA2Ljk3OCAxMS40NjMgNi45NzggMTkuNDM3IDE3LjQ0NCAyMi45MjYgMzAuNDAzIDMuNDg5IDEyLjk1OCAxLjk5NCAyNS40MTgtNC40ODUgMzcuMzgtNi40OCAxMS45NjItMTYuNDQ4IDE5LjkzNi0yOC45MDggMjMuOTIzLTMuOTg3LjQ5OS01LjQ4Mi0uNDk4LTUuNDgyLTIuOTl6Ii8+PC9zdmc+);
}

.instagram:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUwIDBDMzYuNDIgMCAzNC43MTguMDU3IDI5LjM4NS4zYy01LjMyMi4yNDQtOC45NTcgMS4wOS0xMi4xMzcgMi4zMjUtMy4yODggMS4yNzgtNi4wNzYgMi45ODctOC44NTYgNS43NjctMi43OCAyLjc4LTQuNDkgNS41NjgtNS43NjcgOC44NTZDMS4zOSAyMC40MjguNTQ0IDI0LjA2My4zMDEgMjkuMzg1LjA1NyAzNC43MTggMCAzNi40MjEgMCA1MGMwIDEzLjU4LjA1NyAxNS4yODIuMyAyMC42MTUuMjQ0IDUuMzIyIDEuMDg5IDguOTU2IDIuMzI1IDEyLjEzNyAxLjI3OCAzLjI4OCAyLjk4NyA2LjA3NiA1Ljc2NyA4Ljg1NiAyLjc4IDIuNzggNS41NjggNC40OSA4Ljg1NiA1Ljc2NyAzLjE4IDEuMjM2IDYuODE1IDIuMDgxIDEyLjEzNyAyLjMyNCA1LjMzMy4yNDMgNy4wMzYuMzAxIDIwLjYxNS4zMDEgMTMuNTggMCAxNS4yODItLjA1OCAyMC42MTUtLjMgNS4zMjItLjI0NCA4Ljk1Ny0xLjA5IDEyLjEzNy0yLjMyNSAzLjI4OC0xLjI3OCA2LjA3Ni0yLjk4NyA4Ljg1Ni01Ljc2NyAyLjc4LTIuNzggNC40OS01LjU2OCA1Ljc2Ny04Ljg1NiAxLjIzNi0zLjE4IDIuMDgxLTYuODE1IDIuMzI0LTEyLjEzNy4yNDQtNS4zMzMuMzAxLTcuMDM2LjMwMS0yMC42MTUgMC0xMy41OC0uMDU3LTE1LjI4Mi0uMy0yMC42MTUtLjI0NC01LjMyMi0xLjA4OS04Ljk1Ni0yLjMyNS0xMi4xMzctMS4yNzgtMy4yODgtMi45ODctNi4wNzYtNS43NjctOC44NTYtMi43OC0yLjc4LTUuNTY4LTQuNDktOC44NTYtNS43NjdDNzkuNTcyIDEuMzg5IDc1LjkzNy41NDQgNzAuNjE1LjMgNjUuMjgyLjA1NyA2My41OCAwIDUwIDB6bTAgOS4wMDljMTMuMzUgMCAxNC45MzIuMDUgMjAuMjA0LjI5MSA0Ljg3NS4yMjMgNy41MjMgMS4wMzggOS4yODUgMS43MjIgMi4zMzQuOTA3IDQgMS45OSA1Ljc0OSAzLjc0IDEuNzUgMS43NSAyLjgzMyAzLjQxNSAzLjc0IDUuNzUuNjg0IDEuNzYxIDEuNSA0LjQwOSAxLjcyMiA5LjI4NC4yNCA1LjI3Mi4yOTEgNi44NTMuMjkxIDIwLjIwNCAwIDEzLjM1LS4wNSAxNC45MzItLjI5MSAyMC4yMDQtLjIyMyA0Ljg3NS0xLjAzOCA3LjUyMy0xLjcyMiA5LjI4NS0uOTA3IDIuMzMzLTEuOTkgMy45OTktMy43NCA1Ljc0OS0xLjc1IDEuNzUtMy40MTUgMi44MzMtNS43NSAzLjc0LTEuNzYxLjY4NC00LjQwOSAxLjUtOS4yODQgMS43MjEtNS4yNzEuMjQxLTYuODUyLjI5Mi0yMC4yMDQuMjkycy0xNC45MzMtLjA1LTIwLjIwNC0uMjkyYy00Ljg3NS0uMjIyLTcuNTIzLTEuMDM3LTkuMjg1LTEuNzIxLTIuMzMzLS45MDctNC0xLjk5LTUuNzQ5LTMuNzQtMS43NS0xLjc1LTIuODMzLTMuNDE2LTMuNzQtNS43NS0uNjg0LTEuNzYxLTEuNS00LjQwOS0xLjcyMi05LjI4NEM5LjA2IDY0LjkzMiA5LjAxIDYzLjM1MSA5LjAxIDUwYzAtMTMuMzUuMDUxLTE0LjkzMi4yOTEtMjAuMjA0LjIyMy00Ljg3NSAxLjAzOC03LjUyMyAxLjcyMi05LjI4NS45MDctMi4zMzQgMS45OS0zLjk5OSAzLjc0LTUuNzQ5IDEuNzUtMS43NSAzLjQxNi0yLjgzMyA1Ljc1LTMuNzQgMS43NjEtLjY4NCA0LjQwOS0xLjUgOS4yODQtMS43MjJDMzUuMDY4IDkuMDYgMzYuNjQ5IDkuMDEgNTAgOS4wMXptMCAxNS4zMTVDMzUuODIgMjQuMzI0IDI0LjMyNCAzNS44MiAyNC4zMjQgNTBjMCAxNC4xOCAxMS40OTYgMjUuNjc1IDI1LjY3NiAyNS42NzUgMTQuMTggMCAyNS42NzYtMTEuNDk1IDI1LjY3Ni0yNS42NzUgMC0xNC4xOC0xMS40OTYtMjUuNjc2LTI1LjY3Ni0yNS42NzZ6bTAgNDIuMzQzYy05LjIwNSAwLTE2LjY2Ny03LjQ2Mi0xNi42NjctMTYuNjY3IDAtOS4yMDUgNy40NjItMTYuNjY3IDE2LjY2Ny0xNi42NjcgOS4yMDUgMCAxNi42NjcgNy40NjIgMTYuNjY3IDE2LjY2NyAwIDkuMjA1LTcuNDYyIDE2LjY2Ny0xNi42NjcgMTYuNjY3ek04Mi42OSAyMy4zMWE2IDYgMCAxIDAtMTIgMCA2IDYgMCAwIDAgMTIgMHoiLz48L3N2Zz4=);
}

.linkedin:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmIiB3aWR0aD0iOTkiIGhlaWdodD0iOTkiIHZpZXdCb3g9IjAgMCA5OSA5OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjIuNjE3IDk4LjkxNkgyLjIyNVYzMy4zOGgyMC4zOTJ2NjUuNTUtLjAxNHpNMTIuNDI0IDI0LjQwM0ExMS44MTMgMTEuODEzIDAgMSAxIDI0LjIzMSAxMi41OWExMS44MDYgMTEuODA2IDAgMCAxLTExLjgwNyAxMS44MTN6bTg2LjQ4NCA3NC41MTNINzguNTUxVjY3LjAzNGMwLTcuNjAzLS4xNTEtMTcuMzgzLTEwLjU5LTE3LjM4My0xMC41OTggMC0xMi4yMiA4LjI3Ni0xMi4yMiAxNi44MzNWOTguOTFIMzUuMzk5di02NS41M2gxOS41MjZ2OC45M2guMjgyYTIxLjQwOCAyMS40MDggMCAwIDEgMTkuMjc5LTEwLjU5MWMyMC42MDQgMCAyNC40MjMgMTMuNTcxIDI0LjQyMyAzMS4yM3YzNS45Njh6Ii8+PC9zdmc+);
}

.youtube:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjU2IiBoZWlnaHQ9IjE4MCIgdmlld0JveD0iMCAwIDI1NiAxODAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI1My4zMDEgMzguOHMtMi40OTktMTcuNi0xMC4xOTYtMjUuNGMtOS42OTYtMTAuMi0yMC41OTItMTAuMi0yNS42OS0xMC44QzE4MS43MyAwIDEyOC4wNSAwIDEyOC4wNSAwaC0uMVM3NC4yNzEgMCAzOC4zODUgMi42Yy00Ljk5OC42LTE1Ljg5NC42LTI1LjY5IDEwLjhDNS4wOTggMjEuMiAyLjU5OSAzOC44IDIuNTk5IDM4LjhTMCA1OS42IDAgODAuM3YxOS40YzAgMjAuNyAyLjU5OSA0MS40IDIuNTk5IDQxLjRzMi40OTkgMTcuNiAxMC4xOTYgMjUuNGM5LjY5NiAxMC4yIDIyLjQ5MSA5LjkgMjguMTg5IDEwLjkgMjAuNDkyIDIgODYuOTY2IDIuNiA4Ni45NjYgMi42czUzLjc3OS0uMSA4OS41NjUtMi43YzQuOTk4LS42IDE1Ljg5NC0uNiAyNS42OS0xMC44IDcuNjk3LTcuOCAxMC4xOTYtMjUuNCAxMC4xOTYtMjUuNFMyNTYgMTIwLjQgMjU2IDk5LjdWODAuM2MtLjEtMjAuNy0yLjY5OS00MS41LTIuNjk5LTQxLjV6bS0xNTEuNzQgODQuNFY1MS4zbDY5LjE3MiAzNi4xLTY5LjE3MyAzNS44aC4wMDF6IiBmaWxsLXJ1bGU9Im5vbnplcm8iIGZpbGw9IiNGRkYiLz48L3N2Zz4=);
}

.email:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmIiB3aWR0aD0iMTI0IiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEyNCAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExMC43ODQuOThIMTIuNzQ1QzYuMDA1Ljk4LjU1MSA2LjQ5NS41NTEgMTMuMjM1bC0uMDYgNzMuNTNjMCA2Ljc0IDUuNTE0IDEyLjI1NSAxMi4yNTQgMTIuMjU1aDk4LjA0YzYuNzQgMCAxMi4yNTQtNS41MTUgMTIuMjU0LTEyLjI1NXYtNzMuNTNjMC02Ljc0LTUuNTE0LTEyLjI1NS0xMi4yNTUtMTIuMjU1em0wIDI0LjUxbC00OS4wMiAzMC42MzdMMTIuNzQ2IDI1LjQ5VjEzLjIzNWw0OS4wMiAzMC42MzggNDkuMDItMzAuNjM4VjI1LjQ5eiIvPjwvc3ZnPg==);
}

@media screen and (max-width: 820px) {
    .header-email {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        text-indent: 100px;
        margin: 6px 0;
    }
}

@media screen and (min-width: 820px) {
    .header-email {
        position: relative;
        overflow: hidden;
        background: transparent !important;
    }

    .header-email:after {
        background: transparent !important;
    }
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    filter: grayscale(100%) contrast(1);
}

.bg-author {
    position: absolute;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 2;
}

.background,
.background-white {
    position: relative;
}

.background-white .bg-image {
    filter: initial;
}

.custom-img-single {
    width: 300px;
    height: 500px;
}

.custom-img-single-of-two {
    width: 400px;
    height: auto;
}
.custom-img-single-of-two-iphone{
    height: auto;
    width: 400px;

}

.compare-images {
    display: flex;
}

.background-white .secondary-color,
.background-white .primary-color {
    color: white;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .1)
}

.iphoneandroid-iphone .mask {
    box-shadow: 0 0 4px rgba(107, 124, 147, .3);
    width: 210px;
    min-height: 350px;
    max-height: 560px;
}

.iphoneandroid-iphone {
    background: linear-gradient(#f4f4f4, #f2f2f2);
    box-shadow: inset 0 0 1px 1px #dbdcdd, inset 0 0 1px 4px #efefef, inset 0 0 0 5px #fff, inset 0 0 0 6.5px #edf1f2, inset 5px 0 7px 5px #fff, inset -5px 0 7px 5px #fff;
    border-radius: 36px;
    padding: 50px 16px 60px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-block;
    z-index: 2;
}

.iphoneandroid-iphone:before {
    content: "";
    width: 48px;
    height: 5px;
    border-radius: 27px;
    position: absolute;
    box-shadow: inset 0 4px 3px 0 #e6e6e6, inset 0 0 0 2px #ececec;
    top: 26px;
    left: calc(50% - 24px);
}

.iphoneandroid-iphone:after {
    content: "";
    width: 38px;
    height: 38px;
    border-radius: 50%;
    position: absolute;
    box-shadow: inset 0px -2px 0.2px 0px #d5d5d5, inset 0 0px 0 2.5px #e8e8e8;
    bottom: 14px;
    left: calc(50% - 19px);
}

.iphoneandroid-android .mask {
    border: 2px solid black;
    height: 440px;
    min-width: 250px;
    max-width: 270px;
    border-radius: 10px;
}

.iphoneandroid {
    position: relative;
    max-width: 470px;
    width: 100%;
}

.iphoneandroid-android {
    position: relative;
    display: inline-block;
    border-radius: 27px;
    padding: 45px 12px;
    background: linear-gradient(#0E0E0E, #111111);
    box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, .19), inset 0 0 2px 1px #4f4f4f, inset 0 0 1px 3px #1e1e1e, inset 0 0 1px 5px #333, inset 0 3px 0 6px #000, inset 0 -3px 3px 4px #000, inset -4px 0 4px 6px rgba(255, 255, 255, .3), inset 4px 0 4px 6px rgba(255, 255, 255, .3), inset 0 -14px 7px 5px #171717, 2px 2px 4px 0 rgba(0, 0, 0, .1), 12px 12px 24px 0 rgba(0, 0, 0, .1);
}

.iphoneandroid-android:before {
    content: "";
    position: absolute;
    left: 39px;
    top: 22px;
    background: radial-gradient(farthest-corner at 4px 7px, #292843 13%, #0F0D14 27%);
    box-shadow: 0 0 0 3px #1b1b1c;
    width: 10px;
    border-radius: 50%;
    height: 10px;
}

.iphoneandroid-android:after {
    content: "";
    height: 5px;
    width: 100px;
    left: calc(50% - 50px);
    top: 15px;
    border-radius: 8px;
    position: absolute;
    background: #2e2a2a;
    box-shadow: inset 0 2px 1px 1px #1b1b1b;
}

@media screen and (max-width: 820px) {
    .iphoneandroid {
        margin-top: 50px;
    }
}

.android2 .mask {
    border-radius: 10px;
    border: 1px solid black;
    width: 250px;
    min-height: 420px;
    max-height: 540px;
}

.android2 {
    position: relative;
    display: inline-block;
    background: linear-gradient(#111112, #0e0e0e);
    z-index: 2;
    padding: 55px 13px 45px 13px;
    border-radius: 30px;
    transform: rotate(6deg);
    box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, .19), inset 0 0 2px 1px #4f4f4f, inset 0 0 1px 3px #1e1e1e, inset 0 0 1px 5px #333, inset 0 3px 0 6px #000, inset 0 -3px 3px 4px #000, inset -4px 0 4px 6px rgba(255, 255, 255, .3), inset 4px 0 4px 6px rgba(255, 255, 255, .3), inset 0 -14px 7px 5px #171717, 2px 2px 4px 0 rgba(0, 0, 0, .1), 12px 12px 24px 0 rgba(0, 0, 0, .1);
}

.android2:before {
    content: "";
    position: absolute;
    left: 39px;
    top: 22px;
    background: radial-gradient(farthest-corner at 4px 7px, #292843 13%, #0F0D14 27%);
    box-shadow: 0 0 0 3px #1b1b1c;
    width: 10px;
    border-radius: 50%;
    height: 10px;
}

.android2:after {
    content: "";
    height: 5px;
    width: 100px;
    left: calc(50% - 50px);
    top: 15px;
    border-radius: 8px;
    position: absolute;
    background: #2e2a2a;
    box-shadow: inset 0 2px 1px 1px #1b1b1b;
}

@media screen and (max-width: 820px) {
    .android2 {
        position: relative;
        bottom: initial;
        right: initial;
        transform: none;
        border-radius: 30px;
        margin: 50px auto 0;
        box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.19), inset 0 0 2px 1px #4F4F4F, inset 0 0 1px 3px #1E1E1E, inset 0 0 1px 5px #333333, inset 0 3px 0 6px black, inset 0 -3px 3px 4px #000000, inset 0 5px 3px 5px rgba(255, 255, 255, 0.2), inset 0 -14px 7px 5px #171717;
        padding: 52px 10px 50px 10px;
    }
}

.iphoneandroid2-iphone .mask {
    box-shadow: 0 0 4px rgba(107, 124, 147, .3);
    width: 220px;
    min-height: 350px;
    max-height: 420px;
}

.iphoneandroid2-iphone {
    background: linear-gradient(#f4f4f4, #f2f2f2);
    box-shadow: inset -7px 0 0.4px -7px #e5e5e5, inset 7px 0 0.4px -7px #eaeaea, inset 0 4px 1px -3px #ddd, inset 0 -5px 1px -4px #8a8a8a, inset 0 0 0 2px #fff, inset 0 0 0 3px rgba(0, 0, 0, .08), inset 1px 0 0 4px #fff, inset -1px 0 0 4px #fff, inset 2px 0 0.2px 5px rgba(0, 0, 0, .05), inset -2px 0 0.2px 5px rgba(0, 0, 0, .05), inset 12px 0 0.2px -1px #fff, inset -12px 0 0.2px -1px #fff;
    border-radius: 35px;
    padding: 60px 12px 70px;
    display: inline-block;
    position: absolute;
    right: -30px;
    bottom: -100px;
    z-index: 2;
}

.iphoneandroid2-iphone:before {
    content: "";
    width: 48px;
    height: 5px;
    border-radius: 27px;
    position: absolute;
    box-shadow: inset 0 4px 3px 0 #d5d5d5, inset 0 0 0 2px #e8e8e8;
    top: 31px;
    left: calc(50% - 24px);
}

.iphoneandroid2-iphone:after {
    content: "";
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    box-shadow: inset 0 -2px 0.2px 0 #d5d5d5, inset 0 0 0 2.5px #e8e8e8;
    bottom: 15px;
    left: calc(50% - 22px);
}

.iphoneandroid2 {
    position: relative;
    transform: rotate(13deg);
    max-width: 470px;
    width: 100%;
}

.iphoneandroid2-android .mask {
    border-radius: 10px;
    border: 1px solid black;
    width: 220px;
    min-height: 350px;
    max-height: 420px;
}

.iphoneandroid2-android {
    position: relative;
    display: inline-block;
    z-index: 1;
    border-radius: 27px;
    padding: 45px 10px;
    background: linear-gradient(#0E0E0E, #111111);
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.19), inset 0 0 2px 1px #4F4F4F, inset 0 0 1px 3px #1E1E1E, inset 0 0 1px 5px #333333, inset 0 3px 0 6px black, inset 0 -3px 3px 4px #000000, inset 0 5px 3px 5px rgba(255, 255, 255, 0.2), inset 0 -14px 7px 5px #171717;
}

.iphoneandroid2-android:before {
    content: "";
    position: absolute;
    left: 39px;
    top: 22px;
    background: radial-gradient(farthest-corner at 4px 7px, #292843 13%, #0F0D14 27%);
    box-shadow: 0 0 0 3px #1b1b1c;
    width: 10px;
    border-radius: 50%;
    height: 10px;
}

.iphoneandroid2-android:after {
    content: "";
    height: 5px;
    width: 100px;
    left: calc(50% - 50px);
    top: 15px;
    border-radius: 8px;
    position: absolute;
    background: #2e2a2a;
    box-shadow: inset 0 2px 1px 1px #1b1b1b;
}

@media screen and (max-width: 820px) {
    .iphoneandroid2 {
        margin-bottom: -200px;
        transform: rotate(0);
    }

    .iphoneandroid2-iphone {
        top: initial;
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 50px 16px 60px;
    }

    .iphoneandroid2-iphone:before {
        top: 26px;
    }

    .iphoneandroid2-iphone:after {
        width: 38px;
        height: 38px;
        bottom: 16px;
    }

    .iphoneandroid2-android .mask {
        max-height: initial;
        height: 440px;
        min-width: 250px;
        max-width: 270px;
    }
}

.iphone2 .mask {
    width: 250px;
    min-height: 420px;
    max-height: 540px;
}

.iphone2 {
    background: linear-gradient(#f4f4f4, #f2f2f2);
    display: inline-block;
    position: relative;
    padding: 60px 16px 70px 16px;
    border-radius: 37px;
    transform: rotate(6deg);
    box-shadow: inset 0 0 2px 2px #dbdcdd, inset 0 0 1px 6px #efefef, inset 0 0 0 7px #fff, inset 0 0 0 8.5px #edf1f2, inset 7px 0 8px 5px #ffffff, inset -7px 0 8px 5px #fff, 2px 2px 4px 0 rgba(0, 0, 0, .1), 12px 12px 24px 0 rgba(0, 0, 0, .1);
}

.iphone2:before {
    content: "";
    width: 58px;
    height: 7px;
    border-radius: 10px;
    position: absolute;
    box-shadow: inset 0 4px 3px 0 #d5d5d5, inset 0 0 0 2px #e8e8e8;
    top: 31px;
    left: calc(50% - 29px);
}

.iphone2:after {
    content: "";
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    box-shadow: inset 0 -2px 0.2px 0 #d5d5d5, inset 0 0 0 2.5px #e8e8e8;
    bottom: 16px;
    left: calc(50% - 22px);
}

@media screen and (max-width: 820px) {
    .iphone2 {
        position: relative;
        bottom: initial;
        right: initial;
        transform: none;
        border-radius: 34px;
        margin: 50px auto 0;
        box-shadow: inset 0 0 1px 1px #dbdcdd, inset 0 0 1px 4px #efefef, inset 0 0 0 5px #fff, inset 0 0 0 6.5px #edf1f2, inset 5px 0 7px 5px #fff, inset -5px 0 7px 5px #fff;
        padding: 55px 14px 60px;
    }

    .iphone2:before {
        box-shadow: inset 0 4px 3px 0 #e6e6e6, inset 0 0 0 2px #ececec;
    }

    .iphone2:after {
        width: 40px;
        height: 40px;
        bottom: 14px;
        left: calc(50% - 20px);
    }
}

.video {
    position: relative;
}

.youtube-responsive {
    width: 100%;
    padding-top: 56.25%;
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}