@import url('https://fonts.googleapis.com/css?family=Comfortaa:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

/* -------------------------------- 

Primary style

-------------------------------- */

@font-face {
    font-family: 'Britannic Bold';
    src: url('../font/Britannic Bold Regular.ttf');
}

@font-face {
    font-family: 'Omnes';
    src: url('../font/omnes-592ff93642377.ttf');
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*::after,
*::before {
    /*content: '';*/
}

body {
    font-size: 100%;
    font-family: 'Comfortaa', cursive;
    color: #091d23;
    /* background-color: #ffb441;*/
}

a {
    color: #1e6074;
    text-decoration: none;
}


/* -------------------------------- 

Main components 

-------------------------------- */


/*html, body {
  height: 100%;
}*/

header {
    z-index: 3;
}

a:focus {
    outline: none;
}

.cd-logo,
.cd-nav-trigger {
    position: fixed;
    display: inline-block;
}

.cd-logo {
    top: 28px;
    left: 5%;
}

.cd-logo img {
    display: block;
}

.cd-nav-trigger {
    top: 50px;
    right: 3%;
    height: 44px;
    width: 44px;
    z-index: 5;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.cd-nav-trigger .cd-icon {
    /* icon created in CSS */
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    width: 18px;
    height: 3px;
    background-color: #ffffff;
    z-index: 10;
}

.cd-nav-trigger .cd-icon::before,
.cd-nav-trigger .cd-icon:after {
    /* upper and lower lines of the menu icon */
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* apply transition to transform property */
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s;
}

.cd-nav-trigger .cd-icon::before {
    -webkit-transform: translateY(-6px) rotate(0deg);
    -moz-transform: translateY(-6px) rotate(0deg);
    -ms-transform: translateY(-6px) rotate(0deg);
    -o-transform: translateY(-6px) rotate(0deg);
    transform: translateY(-6px) rotate(0deg);
}

.cd-nav-trigger .cd-icon::after {
    -webkit-transform: translateY(6px) rotate(0deg);
    -moz-transform: translateY(6px) rotate(0deg);
    -ms-transform: translateY(6px) rotate(0deg);
    -o-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg);
}

.cd-nav-trigger::before,
.cd-nav-trigger::after {
    /* 2 rounded colored backgrounds for the menu icon */
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
}

.cd-nav-trigger::before {
    background-color: #091d23;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.cd-nav-trigger::after {
    background-color: #ffb441;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}

.cd-nav-trigger.close-nav::before {
    /* user clicks on the .cd-nav-trigger element - 1st rounded background disappears */
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.cd-nav-trigger.close-nav::after {
    /* user clicks on the .cd-nav-trigger element - 2nd rounded background appears */
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.cd-nav-trigger.close-nav .cd-icon {
    /* user clicks on the .cd-nav-trigger element - transform the icon */
    background-color: rgba(255, 255, 255, 0);
}

.cd-nav-trigger.close-nav .cd-icon::before,
.cd-nav-trigger.close-nav .cd-icon::after {
    background-color: white;
    position: absolute;
    content: '';
}

.cd-nav-trigger.close-nav .cd-icon::before {
    -webkit-transform: translateY(0) rotate(45deg);
    -moz-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    -o-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}

.cd-nav-trigger.close-nav .cd-icon::after {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}

.cd-primary-nav {
    /* by default it's hidden */
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 30px 5%;
    z-index: 3;
    background-color: #091d23;
    overflow: auto;
    /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s, opacity 0.3s;
    -moz-transition: visibility 0s, opacity 0.3s;
    transition: visibility 0s, opacity 0.3s;
}

.cd-primary-nav li {
    margin: 1.6em 0;
    text-align: center;
    text-transform: capitalize;
}

.cd-primary-nav a {
    font-size: 20px;
    font-size: 1.25rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    color: #fff;
}

.no-touch .cd-primary-nav a:hover {
    color: #ffc802;
    text-decoration: none;
}

.cd-primary-nav.fade-in {
    /* navigation visible at the end of the circle animation */
    visibility: visible;
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .cd-primary-nav li {
        margin: 2em 0;
    }
    .cd-primary-nav a {
        font-size: 28px;
        font-size: 1.75rem;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-primary-nav li {
        margin: 1.6em 0;
    }
    .cd-primary-nav a {
        font-size: 32px;
        font-size: 2rem;
    }
}

.cd-overlay-nav,
.cd-overlay-content {
    /* containers of the 2 main rounded backgrounds - these containers are used to position the rounded bgs behind the menu icon */
    position: fixed;
    top: 18px;
    right: 5%;
    height: 4px;
    width: 4px;
    -webkit-transform: translateX(-20px) translateY(20px);
    -moz-transform: translateX(-20px) translateY(20px);
    -ms-transform: translateX(-20px) translateY(20px);
    -o-transform: translateX(-20px) translateY(20px);
    transform: translateX(-20px) translateY(20px);
}

.cd-overlay-nav span,
.cd-overlay-content span {
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.cd-overlay-nav.is-hidden,
.cd-overlay-content.is-hidden {
    /* background fades out at the end of the animation */
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-overlay-nav {
    /* main rounded colored bg 1 */
    z-index: 2;
}

.cd-overlay-nav span {
    background-color: #091d23;
}

.cd-overlay-content {
    /* main rounded colored bg 2 */
    z-index: 4;
}

.cd-overlay-content span {
    background-color: #ffb441;
}

.cd-content {
    /* just some dummy content */
    padding: 80px 0;
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
    z-index: 1;
}

.cd-content .cd-intro {
    height: 200px;
    padding-top: 4.6em;
}

.cd-content h1 {
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem;
}

.cd-content p {
    line-height: 1.5;
    /*color: #a76500;*/
}

@media only screen and (min-width: 768px) {
    .cd-content .cd-intro {
        height: 250px;
        padding-top: 6em;
    }
    .cd-content h1 {
        font-size: 28px;
        font-size: 1.75rem;
    }
    .cd-content p {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.8;
    }
}


/* Custom */

.social-links {
    margin: 50px 0 0;
}

.social a {
    display: inline-block;
}

.social h4:after {
    font-family: FontAwesome;
    content: "\f111";
    /*border-bottom-style: solid;
  border-bottom-width:2px;*/
    display: block;
    width: 100px;
    margin: 10px auto;
    font-size: 10px;
}

.social-icon .fb {
    color: #3b5998;
}

.social-icon .tw {
    color: #00aced;
}

.social-icon .ig {
    color: #6e85eb;
}

.social-icon .db {
    color: #ff0084;
}

.social-icon .pt {
    color: #cb2027;
}

.intro-text {
    width: 500px;
    margin: 0 auto;
    text-align: left;
    max-width: 100%;
}

.get-in-touch {
    background: #008fd1;
}

.clients {
    background: #ff6558;
}

.clients-logo {
    padding: 15vh;
    padding-bottom: 10px;
    width: 70%
}

.client-list {
    margin: 15px 0;
}

.contact-map {
    width: 100%;
    height: 100%;
    padding: 68px 0 0 0;
}

#fade-quote-carousel.carousel {
    padding-bottom: 60px;
}

#fade-quote-carousel.carousel .carousel-indicators {
    bottom: 10px;
}

#fade-quote-carousel.carousel .carousel-indicators > li {
    background-color: #fff;
    border: none;
}

#fade-quote-carousel blockquote {
    text-align: center;
    border: none;
}

.testimonial {
    margin-top: 25px;
}

.testimonial h2 {
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    font-weight: bold;
}

.testimonial h2 > img {
    display: inline-block;
    margin: 0 10px;
}

.testimonial .cd-author {
    text-align: center;
    font-family: 'Maven Pro', sans-serif;
}

.testimonial .cd-author img,
.testimonial .cd-author .cd-author-info {
    display: inline-block;
    vertical-align: middle;
}

.testimonial .cd-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.testimonial .cd-author .cd-author-info {
    text-align: left;
    line-height: 1.2;
}

.testimonial .cd-author .cd-author-info li {
    list-style-type: none;
}

.testimonial .cd-author .cd-author-info li:first-child {
    font-size: 14px;
    text-transform: uppercase;
}


/*.cd-author .cd-author-info li:last-child {
  font-size: 12px;
  font-size: 0.75rem;
  color: #6b6b70;
}*/

@media only screen and (min-width: 768px) {
    .testimonial .cd-author img {
        width: 50px;
        height: 50px;
    }
    .testimonial .cd-author .cd-author-info {
        line-height: 1.4;
    }
    .testimonial .cd-author .cd-author-info li:first-child {
        font-size: 16px;
    }
    .testimonial .cd-author .cd-author-info li:last-child {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.carousel-inner {
    color: #fff;
}

.social-content img {
    display: inline-block;
    width: auto;
    margin-right: 15px;
}

.index-bg {
    background: #ffc802;
}

.index-intro {
    padding-top: 130px;
}

.social-right {
    padding: 0;
}

.social-content {
    color: #696969;
    line-height: 25px;
    margin-top: 15px;
}

.btn {
    text-transform: uppercase;
    border-radius: 0;
}

.btn-know {
    z-index: 2;
    position: absolute;
    bottom: 50px;
    left: 45%;
}

.btn-know-1 {
    z-index: 2;
    position: absolute;
    bottom: 50px;
    left: 45%;
}

.btn-know-2 {
    z-index: 2;
    position: absolute;
    bottom: 50px;
    left: 45%;
}

.btn-know-3 {
    z-index: 2;
    position: absolute;
    bottom: 50px;
    left: 45%;
}

.btn-primary {
    background: transparent;
    border-radius: 0;
    border-color: #fff;
}

.carousel-indicators {
    z-index: 1;
}

#menu {
    position: absolute;
    top: 36px;
    left: 68px;
    width: auto;
    padding-top: 2em;
    z-index: 9999;
}

.address-book {
    line-height: 30px;
    margin-top: 50px;
}

@media only screen and (max-width:600px) {
    .cd-nav-trigger {
        top: 10px;
    }
    .clients-logo {
        padding: 4vw;
        margin-top: 25px;
    }
    .clients-logo-cm {
        padding: 15px;
        margin-top: 25px;
    }
    .main-img {
        padding: 0;
    }
    .h-text-desc-txt-wrap {
        position: relative;
        width: auto;
        left: 0
    }
}

.icon-button {
    background-color: white;
    border-radius: 3.6rem;
    cursor: pointer;
    display: inline-block;
    font-size: 2.0rem;
    height: 3.6rem;
    line-height: 3.6rem;
    margin: 0 5px;
    position: relative;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 3.6rem;
    z-index: 1;
}


/* Circle */

.icon-button span {
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 0;
}

.icon-button:hover span {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 3.6rem;
    margin: -1.8rem;
}

.twitter span {
    background-color: #4099ff;
}

.facebook span {
    background-color: #3B5998;
}

.google-plus span {
    background-color: #db5a3c;
}


/* Icons */

.icon-button i {
    background: none;
    color: white;
    height: 3.6rem;
    left: 0;
    line-height: 3.6rem;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 3.6rem;
    z-index: 10;
}

.icon-button .icon-twitter {
    color: #4099ff;
}

.icon-button .icon-facebook {
    color: #3B5998;
}

.icon-button .icon-google-plus {
    color: #db5a3c;
}

.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-google-plus {
    color: white;
}

.clients-logo-cm {
    padding: 150px;
    padding-bottom: 0;
    padding-top: 90px;
}


/* Social Media Strategy */

.layout {
    /*border : 2px solid #000; */
    overflow: hidden;
    display: flex;
}

.layout div {
    min-height: 200px;
    padding: 10px;
}

#one {
    background-color: gray;
    float: left;
    margin-right: 20px;
    width: 50%;
    /*border-right:2px solid #000;*/
}

#two {
    background-color: white;
    overflow: hidden;
    margin: 10px;
    /* border:2px dashed #ccc;*/
    min-height: 170px;
}

@media screen and (max-width: 400px) {
    #one {
        float: none;
        margin-right: 0;
        width: auto;
        border: 0;
        /*border-bottom:2px solid #000;    */
    }
}

.social-campain {
    background-color: #F1F1F1;
    background: url(../img/social-media/services-social.png) no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.social-strategy {
    background-color: #fa6072;
    padding: 100px 0;
    color: #fff;
}

.influencers {
    padding: 100px 0;
    color: #535353;
}

.influencers h1 {
    color: #0098d5;
}

.influencers p {
    color: #535353;
    line-height: 30px;
}

.analytics {
    padding: 100px 0 300px;
    background: #0084e7;
    color: #fff
}

.img-container .margin-img {
    margin-top: -250px;
}

.card {
    position: relative;
    background-color: #f6f6f6;
    /*background-image: url("../img/social-strategy/card.png");*/
    background-repeat: no-repeat;
    background-position: bottom;
    overflow: hidden;
    transition: all 300ms ease-out;
    margin: 50px 0;
    padding: 100px 0 0 0;
}

.card .card-inner {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
}

.affiliate {
    padding: 100px 0;
    background: #0e2f3e;
}

.affiliate-content p {
    color: #838383;
}

.affiliate-content h2 {
    color: #fff;
}

.profile-development {
    padding: 100px 0;
}

.profile-development h1 {
    color: #fcb002;
}

.social-top {
    margin: 100px 0 0 0;
}

.social-header-common {
    margin-bottom: 50px;
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 0;
}

.profile-development p {
    margin: 20px 0;
    color: #535353;
}

.sponsored .margin-div {
    padding: 100px 0;
}

.sponsored h1 {
    color: #36bcb0;
}

.sponsored p {
    color: #838383;
}

.public-management h1 {
    color: #7b73c6;
}

.public-management p {
    color: #838383;
}

.border-div {
    border: 1px solid #b7b7b7;
    border-top: none;
}

.border-div-2 {
    border: 1px solid #b7b7b7;
    border-bottom: none;
}

.btn-purple {
    background: #6e2e56;
    border-color: #6e2e56;
    color: #fff;
}

.btn-apps {
    background: #36bcb0;
    border-color: #36bcb0;
    color: #fff;
}

.btn-social-media {
    background: transparent;
    border-color: #ff0693;
    color: #555;
    padding: 10px 35px;
}

.btn-clients {
    background: transparent;
    border-color: #ff0693;
    color: #555;
    padding: 10px 35px;
}

.btn-social-media:hover {
    background: linear-gradient( to right, #ff0693 30%, #52A7FF 100%);
    border-color: none;
    color: #fff;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.btn-clients:hover {
    background: #fff;
    border-color: none;
    color: #000;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.social-strategy-elemnts p {
    line-height: 30px;
}

.btn-primary:hover {
    background: white;
    color: #008FD1;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary.focus:active,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
    color: #008FD1;
    background-color: #fff;
    border-color: #204d74;
}

.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
    background: white;
    color: #008FD1;
}

.section {
    position: relative;
}

.h-text-desc-txt-wrap-logo {
    position: absolute;
    top: 4.2vw;
    left: 4.2vw;
    width: 33.33vw;
}

.email-campain {
    background-color: #F1F1F1;
    background: url(../img/email/email-bg.png) no-repeat center center;
    background-size: cover;
    height: auto;
}

.email-strategy {
    background-color: #1fb9b1;
    /*padding: 100px 0 0 0;*/
    color: #fff;
}

.email-strategy-margin {
    margin: 100px 0;
    padding: 15px;
}

.email-margin-1 {
    margin: 200px 0;
}

.affiliate-email {
    padding: 50px 0;
    background: #0084e7;
    color: #ffffff;
}

.affiliate-email .social-content {
    color: #fff;
}

.email-devlopment h1 {
    color: #2d669a;
}

.seo-campain {
    background-color: #F1F1F1;
    background: url(../img/seo/bg.jpg) no-repeat center center;
    background-size: cover;
    height: auto;
}

.seo-strategy {
    background: #5cac46;
    color: #fff;
}

.seo-help {
    padding: 50px 0 0 0;
    width: 100%;
    min-height: 80vh;
    /* background-image: url(../img/seo/bottom.png);*/
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -100;
    background-color: #ff6c3f;
}

.seo-help .seo-help-content {
    padding: 50px 100px;
    color: #fff;
}

.seo-card {
    background-color: #69c9d1;
    color: #fff;
}

.cro-campain {
    background-color: #F1F1F1;
    background: url(../img/rate-optimisation/bg.png) no-repeat center center;
    background-size: cover;
    height: auto;
}

.cro-strategy {
    background-color: #00384f;
    color: #fff;
}

.row-no-gutter {
    /*margin-right: 0;
  margin-left: 0;*/
}

.row-no-gutter [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.text-email-affiliate {
    padding-top: 25px;
    line-height: 2;
}

.div-wrapper {
    position: relative;
    height: 300px;
    width: 300px;
}

.div-wrapper img {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media only screen and (max-width: 801px) {
    .fp-section,
    .fp-slide,
    .fp-tableCell {
        height: auto !important;
    }
    .btn-know {
        z-index: 2;
        position: absolute;
        bottom: 10px;
        left: 30%;
    }
    .intro-text {
        font-size: 13px;
    }
}

.intro-1 {
    height: 100%
}

.left-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3d231b;
    height: 100%;
    color: #FFF;
}

.right-1 {
    /*display : flex;*/
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    height: 100%;
    color: #3d231b;
    padding: 50px;
}

@media (max-width: 1200px) {
    .left-1 {
        height: 50%;
    }
    .right-1 {
        height: 50%;
    }
}

.about-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #FFF;
    height: 100%;
}

.c2c_btn {
    background-color: #998877;
    padding: 0px 20px;
    position: fixed;
    top: 220px;
    width: 20px;
    height: 193px;
    margin: 0 !important;
    text-align: center;
    background-color: #ea4381;
    -webkit-box-shadow: 2px 0 3px rgba(0, 0, 0, .25);
    -moz-box-shadow: 2px 0 3px rgba(0, 0, 0, .25);
    box-shadow: 2px 0 3px rgba(0, 0, 0, .25);
    cursor: pointer;
    z-index: 11;
    right: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.c2c_btn .c2c {
    display: block;
    position: absolute;
    left: -75px;
    width: 190px;
    top: 75px;
    color: #fff;
    font-size: 19px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    text-shadow: -1px 0px 0px rgba(198, 132, 40, 1);
    letter-spacing: 1px;
}

.seo-border {
    height: 4px;
    margin: 25px 0;
    margin-bottom: 50px;
    width: 135px;
    border-top: 0;
    background: #ff669f;
    border-radius: 5px;
}

.about-campain {
    background-color: #F1F1F1;
    background: url(../img/about/about-bg.jpg) no-repeat center center;
    background-size: cover;
}

.mission-strategy {
    background-color: #fff;
    padding: 100px 0;
    color: #545454;
    -moz-box-shadow: 0 10px 25px -10px #999;
    -webkit-box-shadow: 0 10px 25px -10px #999;
    box-shadow: 0 0px 25px -10px #999;
}

.our-services {
    padding: 75px 0;
    color: #;
}

.our-services h2 {
    font-weight: bold;
    color: #545454;
    margin-bottom: 75px;
}

.our-services h3 {
    margin: 25px 0;
    color: #545454;
}

.our-services p {
    line-height: 1.8;
    color: #535353;
}

#eighth .intro {
    padding-top: 16vh;
}

#secondpage .intro {
    padding-top: 4.5vh;
}

#secondpage .clients-logo {
    /* width: 88%;*/
}

#thirdpage .clients-logo {
    width: 60%;
}

#thirdpage .intro {
    padding-top: 8.5vh;
}

#fourthpage .clients-logo {
    /*width: 85%;*/
}

#fifthpage .intro,
#sixth .intro {
    padding-top: 6vh;
}

#sixth .clients-logo {
    width: 55%;
}

#seventh .intro {
    padding-top: 10vh;
}

#seventh .clients-logo,
#eighth .clients-logo {
    width: 55%;
}

.our-services .btn-primary {
    color: #008FD1;
    border-color: #204d74;
}

.our-services .btn-primary.focus,
.our-services .btn-primary:focus {
    color: #008FD1;
    border-color: #204d74;
    background-color: #fff;
}

.right-section.clients {
    background: url(../img/clients/bg.jpg) no-repeat center center;
    background-size: cover;
}

.ppc-services {
    padding: 50px 0;
}

.ppc-campain {
    background-color: #F1F1F1;
    background: url(../img/ppc/ppc-bg.jpg) no-repeat center center;
    background-size: cover;
}

.ppc-race {
    background-color: #242833;
    padding: 75px 0;
}

.ppc-race h2 {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 75px;
}

.ppc-race p {
    color: #fff;
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}


/*.we-will .media-left{
  vertical-align: initial;
  padding-top: 5px;
  padding-right: 20px;
}

*/

.content-marketing-campain {
    background-color: #F1F1F1;
    background: url(../img/content-marketing/content-marketing-cover.jpg) no-repeat center center;
    background-size: cover;
}

.content-strategy {
    padding: 50px 0
}

.content-strategy h2 {
    margin: 50px 0;
}

.content-strategy p.about {
    margin-bottom: 50px;
}

.content-strategy .strategy-card .generating {
    color: #fbc718;
}

.content-strategy .strategy-card .developing {
    color: #1fadde;
}

.content-strategy .strategy-card .distributing {
    color: #d5337d;
}

.content-strategy .strategy-card .measuring {
    color: #b9cf32;
}

.content-strategy .strategy-card .tweaking {
    color: #c2996c;
}

.intro-text h3.quotes {
    margin-bottom: 30px;
}

.intro-text .media {
    margin-top: 0;
}

.we-will h3 {
    margin: 50px 0;
    text-transform: capitalize;
}

.content-marketing-footer {
    background-color: #F1F1F1;
    background: url(../img/content-marketing/content-marketing-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 100px;
    color: #fff;
}

.content-marketing-footer h1 {
    font-weight: bold;
    margin-bottom: 50px;
    color: #000;
}

.content-marketing-footer .media-body p {
    font-size: 18px;
}

.intro-text .quotes {
    color: #6d6d6d;
    font-size: 24px;
    font-weight: bold;
    margin: 35px 0;
    text-align: center;
    text-transform: capitalize;
}

.intro-text .media-left,
.we-will .media-left,
.content-marketing-footer .media-left {
    vertical-align: initial;
    padding-top: 5px;
    padding-right: 20px;
}

.content-marketing-footer .media-left {}

.content-marketing-footer p.description {
    line-height: 2;
    margin-bottom: 50px;
}

.content-marketing-footer .media {
    margin-top: 0;
}

.mission-strategy.ppc-strategy {
    background-color: #ec9d41;
    color: #fff;
}

.content-marketing-page .right-1 {
    padding: 0;
}

.content-marketing-page .intro-text img.title {
    max-width: 60%;
}

.content-marketing-page .social-top {
    margin: 10px;
}

.content-strategy .steps {
    margin: 30px auto;
    max-width: 75%;
}

.ppc-bullets img {
    width: 41%;
    margin: 0 25px 0;
}

h4 {
    font-weight: bold;
}

.seo-help .media-body {
    color: #fff;
    text-align: left;
}

.social-communities {
    padding: 100px 0;
}

.social-communities h2 {
    margin-bottom: 50px;
    font-weight: bold;
    color: #545454;
}

.social-campaign-strategy {
    background: #341844;
    color: #fff;
}

.social-communities p {
    color: #535353;
    padding: 75px 0 50px;
}

.being-social {
    padding: 0 0 50px;
    text-align: center;
}

.being-social .being-holder {
    margin-bottom: 50px;
}

.being-social h3 {
    color: #545454;
    font-weight: bold;
    margin: 0 0 50px;
}

.being-social .being-holder h4 {
    color: #545454;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.social-campaign-inner-bg {
    background-color: #F1F1F1;
    background: url(../img/social-media/services-social.png) no-repeat center center;
    background-size: cover;
}

.social-campaign-inner-right .intro-text {
    color: #5c5c5c;
}

h1,
h2 {
    font-size: 35px;
}

.no-padding {
    padding: 0;
}

.snip1577 {
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
    /*display: inline-block;*/
    /*overflow: hidden;*/
    /*margin: 8px;*/
    min-width: 230px;
    text-align: center;
    /*max-width: 315px;*/
    width: 100%;
    color: #fff;
    /*text-align: left;*/
    font-size: 16px;
    background: #f7ca17;
    /*height:370px;*/
}

.snip1577 *,
.snip1577:before,
.snip1577:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.snip1577 img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
}

.grid .grid-item .snip1577 img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
    height: 370px;
}

.snip1577 figcaption {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    transform: translateX(-50%);
    left: 50%;
    /*padding: 15px 20px;*/
}

.snip1577 h3,
.snip1577 h4 {
    margin: 0;
    font-size: 1.3em;
    font-weight: normal;
    opacity: 0;
}

.snip1577 h4 {
    font-size: .8em;
    text-transform: uppercase;
    margin-top: 20px;
}

.snip1577 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.snip1577:hover img,
.snip1577.hover img {
    zoom: 1;
    filter: alpha(opacity=10);
    -webkit-opacity: 0.1;
    opacity: 0.1;
}

.snip1577:hover:before,
.snip1577.hover:before,
.snip1577:hover:after,
.snip1577.hover:after {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.snip1577:hover:before,
.snip1577.hover:before {
    width: 40px;
}

.snip1577:hover:after,
.snip1577.hover:after {
    height: 40px;
}

.snip1577:hover h3,
.snip1577.hover h3,
.snip1577:hover h4,
.snip1577.hover h4 {
    opacity: 1;
}

.snip1577:hover h3,
.snip1577.hover h3 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.snip1577:hover h4,
.snip1577.hover h4 {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.portfolio-page ul {
    margin: 50px 0;
}

.portfolio-page ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #34383a;
    text-transform: uppercase;
    text-decoration: none;
}

.portfolio-page ul li a.active:after {
    background-color: #f7ca17;
    position: absolute;
    margin: 35px 0 0 0;
    height: 3px;
    width: 70px;
    content: "";
    left: 30px;
}

.portfolio-page ul li:first-child a {
    padding-left: 0;
}

.portfolio-page ul li {
    vertical-align: middle;
    padding: 15px 20px;
}

.portfolio-page ul li:after {
    content: "";
    width: 2px;
    height: 50px;
    top: 60px;
    position: absolute;
    background-color: #c7c7c7;
    margin: 5px 20px;
}

.portfolio-page ul li:last-child:after {
    background-color: transparent;
}

.portfolio-campaign {
    background-color: #F1F1F1;
    /*background: url(../img/portfolio/portfolio-cover.jpg) no-repeat center center;*/
    background-size: cover;
    background-image: none;
    background-color: #ffb441;
}

.portfolio-change {
    background-color: #F1F1F1;
    background: url(../img/portfolio/portfolio-cover.jpg) no-repeat center center;
    background-size: cover;
    background-image: none;
}

@media only screen and (max-width: 580px) {
    /*.portfolio-intro {
        min-height: 100% !important;
        height: auto !important;
    }*/
    .portfolio-intro .right-1 {
        padding-bottom: 0;
    }
    .portfolio-page ul li {
        padding: 5px !important;
        vertical-align: top;
    }
    .portfolio-intro-top {
        margin-top: 0;
    }
    .portfolio-page ul li:after {
        visibility: hidden;
        content: "";
        /*width: 2px ;
    height: 50px;
    top: 60px;
    position: absolute;
    background-color: #c7c7c7;
    margin: 5px 20px;*/
    }
    .portfolio-page ul li a {
        font-size: 13px;
    }
    .portfolio-page ul li a.active::after {
        background-color: #f7ca17;
        position: absolute;
        margin: 25px 0 0 0;
        height: 3px;
        width: 70px;
        content: "";
        left: 20px;
    }
}

.button {
    display: inline-block;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 7px;
    /*background-image: linear-gradient( to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2));*/
    color: #222;
    font-family: sans-serif;
    font-size: 16px;
    text-shadow: 0 1px white;
    cursor: pointer;
}

.button:after {
    content: "";
    width: 2px;
    height: 50px;
    top: 50px;
    position: absolute;
    background-color: #c7c7c7;
    margin: 5px 0px;
}

.button:last-child:after {
    content: "";
    width: 0;
    height: 50px;
    top: 50px;
    position: absolute;
    display: none;
    background-color: #c7c7c7;
    margin: 5px 0px;
}


/*.button:hover {
    background-color: #8CF;
    text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
    color: #222;
}*/

.button:active,
.button.is-checked {
    /*background-color: #28F;*/
    color: #f7ca17 !important;
}

.button.is-checked {
    color: #f7ca17;
    /*text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);*/
}

.button:active {
    /*box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);*/
}


/* ---- button-group ---- */

.button-group {
    margin: 40px 0;
}

.button-group:after {
    content: '';
    display: block;
    clear: both;
}

.button-group .button span {
    vertical-align: middle;
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    /*color: #34383a;*/
    text-transform: uppercase;
    text-decoration: none;
    float: left;
    text-align: left;
}

.button-group .button {
    float: left;
    color: #34383a;
    border-radius: 0;
    margin-left: 0;
    margin-right: 1px;
    vertical-align: middle;
    width: 16.3333337%;
    /*padding: 15px 20px;*/
}

.button-group .button:first-child {
    /*border-radius: 0.5em 0 0 0.5em;*/
}

.button-group .button:last-child {
    /*border-radius: 0 0.5em 0.5em 0;*/
}


/* ---- grid ---- */

.grid {
    /*background: #DDD;*/
    max-width: 1200px;
}


/* clear fix */

.grid:after {
    content: '';
    display: block;
    clear: both;
}


/* ---- .grid-item ---- */

.grid-item {
    float: left;
    width: 370px;
    /*height: 370px;*/
    /*height: auto;*/
    /*background: #0D8;*/
    /*   border: 1px solid #333; */
    border-color: hsla(0, 0%, 0%, 0.7);
    max-width: 100%;
}

.grid-item--red {
    background: #D00;
}

.grid-item--blue {
    background: #19F;
}

@media only screen and (max-width: 580px) {
    .button-group .button {
        width: 49.3333337%;
        margin: 5px 0;
    }
    .mission-strategy {
        background-color: #fff;
        padding: 5px 0;
    }
    .our-services {
        padding: 7px 0;
    }
    .our-services .btn-primary {
        margin-bottom: 20px;
    }
    .button-group .button span {
        padding: 0;
        font-size: 14px;
    }
    .button:after {
        content: "";
        width: 2px;
        height: 50px;
        top: 50px;
        position: absolute;
        display: none;
        background-color: #c7c7c7;
        margin: 5px 0px;
    }
}

.portfolio-page {
    min-height: 500px;
}

.portfolio-fixed-header {
    position: fixed;
    top: 27px;
    height: 131px;
    width: 265px;
    z-index: 2;
    right: 154px;
}

.portfolio-change {
    background-color: #ffb441;
    height: 120px;
    position: fixed;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 4px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 4px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 4px -1px rgba(0, 0, 0, 0.75);
}

.button-group .button:active,
.button-group .button:focus,
.button-group .button:visited {
    outline: none;
}

.portfolio-change-right {
    background: #fff;
    right: 0px;
    position: fixed;
    z-index: 1;
    height: 120px;
    -webkit-box-shadow: 0px 0px 4px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 4px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 4px -1px rgba(0, 0, 0, 0.75);
}

.portfolio-intro-c {
    height: 120px;
}

.portfolio-campaign-case {
    background-color: #F1F1F1;
    background: url(../img/case-study/2.jpg) no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.portfolio-campaign-case2 {
    background-color: #F1F1F1;
    display: table-cell;
    vertical-align: center;
}

.left-case-1 {
    background-color: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #FFF;
}

.intro-case-top {
    display: table-cell;
    vertical-align: middle;
    justify-content: center;
    text-align: center;
    left: 0px;
    right: 0px;
    height: 70vh;
}

.intro-2 {
    height: 70vh;
}

.intro-text-case h2 {
    text-align: center;
    width: auto;
    margin: 0 auto;
    text-align: left;
    max-width: 100%;
    text-align: center;
    padding: 0px 50px;
    font-family: 'Britannic Bold';
    color: #545454;
    letter-spacing: 1px;
    font-size: 28px;
    margin-bottom: 23px;
}

.left-case-img {
    height: 70vh;
    vertical-align: middle;
    justify-content: center;
    text-align: center;
}

.intro-text-case-p .intro-text-p p {
    font-family: 'Omnes';
    font-size: 14px;
    line-height: 167%;
    color: #626262;
}

.cd-nav-portfolio {
    top: 38px;
    right: 3%;
    height: 44px;
    width: 44px;
    z-index: 5;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.grid {
    height: auto;
}

.cd-nav-trigger .cd-icon::before {
    -webkit-transform: translateY(-6px) rotate(0);
    -moz-transform: translateY(-6px) rotate(0);
    -ms-transform: translateY(-6px) rotate(0);
    -o-transform: translateY(-6px) rotate(0);
    /* transform: translateY(-6px) rotate(0); */
    content: "";
}

.cd-nav-trigger .cd-icon::after {
    -webkit-transform: translateY(6px) rotate(0);
    -moz-transform: translateY(6px) rotate(0);
    -ms-transform: translateY(6px) rotate(0);
    -o-transform: translateY(6px) rotate(0);
    transform: translateY(6px) rotate(0);
    content: "";
}

.cd-logo,
.cd-nav-trigger {
    position: fixed;
    display: inline-block;
}

.cd-logo {
    top: 28px;
    left: 5%;
}

.cd-logo img {
    display: block;
}

.cd-nav-trigger {
    top: 50px;
    right: 3%;
    height: 44px;
    width: 44px;
    z-index: 5;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.cd-nav-trigger .cd-icon {
    /* icon created in CSS */
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    width: 18px;
    height: 3px;
    background-color: #ffffff;
    z-index: 10;
}

.cd-nav-trigger .cd-icon::before,
.cd-nav-trigger .cd-icon:after {
    /* upper and lower lines of the menu icon */
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* apply transition to transform property */
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s;
    content: "";
}

.cd-nav-trigger .cd-icon::before {
    -webkit-transform: translateY(-6px) rotate(0deg);
    -moz-transform: translateY(-6px) rotate(0deg);
    -ms-transform: translateY(-6px) rotate(0deg);
    -o-transform: translateY(-6px) rotate(0deg);
    transform: translateY(-6px) rotate(0deg);
    content: "";
}

.cd-nav-trigger .cd-icon::after {
    -webkit-transform: translateY(6px) rotate(0deg);
    -moz-transform: translateY(6px) rotate(0deg);
    -ms-transform: translateY(6px) rotate(0deg);
    -o-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg);
    content: "";
}

.cd-nav-trigger::before,
.cd-nav-trigger::after {
    /* 2 rounded colored backgrounds for the menu icon */
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    content: "";
}

.cd-nav-trigger::before {
    background-color: #091d23;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
    content: "";
}

.cd-nav-trigger::after {
    background-color: #ffb441;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    content: "";
}

.cd-nav-trigger.close-nav::before {
    /* user clicks on the .cd-nav-trigger element - 1st rounded background disappears */
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    content: "";
}

.cd-nav-trigger.close-nav::after {
    /* user clicks on the .cd-nav-trigger element - 2nd rounded background appears */
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
    content: "";
}

.cd-nav-trigger.close-nav .cd-icon {
    /* user clicks on the .cd-nav-trigger element - transform the icon */
    background-color: rgba(255, 255, 255, 0);
}

.cd-nav-trigger.close-nav .cd-icon::before,
.cd-nav-trigger.close-nav .cd-icon::after {
    background-color: white;
}

.cd-nav-trigger.close-nav .cd-icon::before {
    -webkit-transform: translateY(0) rotate(45deg);
    -moz-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    -o-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
    content: "";
}

.cd-nav-trigger.close-nav .cd-icon::after {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    content: "";
}

.cd-primary-nav {
    /* by default it's hidden */
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 80px 5%;
    z-index: 3;
    background-color: #091d23;
    overflow: auto;
    /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s, opacity 0.3s;
    -moz-transition: visibility 0s, opacity 0.3s;
    transition: visibility 0s, opacity 0.3s;
}

.cd-primary-nav li {
    margin: 1.6em 0;
    text-align: center;
    text-transform: capitalize;
}

.cd-primary-nav a {
    font-size: 20px;
    font-size: 1.25rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    color: #fff;
}

.no-touch .cd-primary-nav a:hover {
    color: #ffc802;
    text-decoration: none;
}

.cd-primary-nav.fade-in {
    /* navigation visible at the end of the circle animation */
    visibility: visible;
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .cd-primary-nav li {
        margin: 2em 0;
    }
    .cd-primary-nav a {
        font-size: 28px;
        font-size: 1.75rem;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-primary-nav li {
        margin: 2.6em 0;
    }
    .cd-primary-nav a {
        font-size: 32px;
        font-size: 2rem;
    }
}

.cd-overlay-nav,
.cd-overlay-content {
    /* containers of the 2 main rounded backgrounds - these containers are used to position the rounded bgs behind the menu icon */
    position: fixed;
    top: 18px;
    right: 5%;
    height: 4px;
    width: 4px;
    -webkit-transform: translateX(-20px) translateY(20px);
    -moz-transform: translateX(-20px) translateY(20px);
    -ms-transform: translateX(-20px) translateY(20px);
    -o-transform: translateX(-20px) translateY(20px);
    transform: translateX(-20px) translateY(20px);
}

.cd-overlay-nav span,
.cd-overlay-content span {
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.cd-overlay-nav.is-hidden,
.cd-overlay-content.is-hidden {
    /* background fades out at the end of the animation */
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-overlay-nav {
    /* main rounded colored bg 1 */
    z-index: 2;
}

.cd-overlay-nav span {
    background-color: #091d23;
}

.cd-overlay-content {
    /* main rounded colored bg 2 */
    z-index: 4;
}

.cd-overlay-content span {
    background-color: #ffb441;
}

.cd-content {
    /* just some dummy content */
    padding: 80px 0;
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
    z-index: 1;
}

.cd-content .cd-intro {
    height: 200px;
    padding-top: 4.6em;
}

.cd-content h1 {
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem;
}

.cd-content p {
    line-height: 1.5;
    /*color: #a76500;*/
}

@media only screen and (min-width: 768px) {
    .cd-content .cd-intro {
        height: 250px;
        padding-top: 6em;
    }
    .cd-content h1 {
        font-size: 28px;
        font-size: 1.75rem;
    }
    .cd-content p {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.8;
    }
}
