/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.eot');
    src: url('fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Roboto-Regular.woff2') format('woff2'),
        url('fonts/Roboto-Regular.woff') format('woff'),
        url('fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
body {
  font-family: 'Poppins', sans-serif;
  color: #444;
}
#main {
    background: #f8f8f8;
}
a {
  color: #050609;
}

a:hover {
  color: #0056b3;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #efefef;
  padding: 3px 0;
  font-size: 16px;
  text-transform: uppercase;
  color: #474747;
  font-weight: 400;
}
#topbar .contact-info a {
  color: #474747;
  padding: 0px 4px;
  display: inline-block;
  line-height: 25px;
  transition: 0.3s;
  font-weight: 300;
  font-size: 15px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 85px;
  transition: all 0.5s;
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
#header .logo img {
  padding: 0;
  margin: 0 27px 0px 0px;
  /*max-height: 85px;*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 5px 2px 2px 0px;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding: 10px 16px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #429ed8;
  padding: 12px 15px;
  /*transition: 0.3s;*/
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 300;
}
.nav-menu ul li a{
  padding: 3px 0px;
}
.nav-menu ul li:hover > a{
  border-bottom: 2px solid #429ed8;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #429ed8;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 90%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0px 0px;
  background: #fff;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.21));
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 90%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
  margin: 0px 0px;
}
.nav-menu .drop-down li:hover{
  background: #ebebeb;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #103453;
  margin: 0px 0px;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #428bca;
  border:none;
}
.nav-menu .drop-down ul li:hover a{
  border:none;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
}
/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #1f3548;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #e3f0fc;
  padding: 10px 20px;
  font-weight: 300;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #429ed8;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}
.mobile-nav .drop-down ul li a{
  padding: 2px 20px;
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-toggle {
  position: absolute;
  right: 5px;
  top: 31px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #5c768d;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(31, 53, 72, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/* contact button */
.contact-section{
  margin: 16px 23px;
}
.btn-contact-us {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 6px;
  line-height: 1;
  margin: 8px 20px;
  color: #fff;
  background: #2a2b2f;
}
.icofont-search {
    color: #2a2b2f;
    font-weight: bold;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
section.\34 -way-sky-section, section.way-4-sky-section {
    background-color: #f6f6f6;
}

.section-bg {
  background-color: #0774e4;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #0274e4;
}

.section-title p {
  margin-bottom: 0;
}
.emptp-space{
  height: 200px;
}
.white-space{
  height: 72px;
}
/*--------------------------------------------------------------
# Audit Top
--------------------------------------------------------------*/
.audit-top {
  padding-bottom: 0px;
  background-image: url(../img/Audit-Top.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
.section-title h3 {
    font-size: 45px;
    font-weight: 500;
    color: #26272a;
    letter-spacing: -1px;
    text-align: right;
    margin-right: 25px;
}
.section-title h1 {
    font-size: 88px;
    line-height: 75px;
    text-align: right;
    color: #26272a;
}
.audit-top .icon-box + .icon-box {
  margin-top: 40px;
}
.audit-top .icon-box .icon {
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -11px;
}
.audit-top .icon-box .title {
    position: relative;
    line-height: 84px;
    font-size: 20px;
    text-align: right;
    font-weight: 600;
    color: #26272a;
}
/*--------------------------------------------------------------
# About 
--------------------------------------------------------------*/
.about-lists {
  padding: 40px;
}

.about-lists .row {
  overflow: hidden;
  height: 1253px;
}

.about-lists .content-item {
  padding: 32px 32px 8px 32px;;
  border-left: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4;
  margin: 0px;
}
.about-lists .content-item h4 {
  font-size: 50px;
  letter-spacing: -1px;
  line-height: 64px;
  color: #1d1e1e;
  font-weight: 700;
  padding: 0;
  margin: 20px 0;
  text-transform: capitalize;
}

.about-lists .content-item p {
  color: #050609;
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 26px;
  font-weight: 300;
}
.bg-color-business{background: whitesmoke;}
.business {
    margin: 24px 0px;
}
.custom-height{
  height: 541px;
}
.mobile-only{display: none;}
.business .icon-box .icon{
  float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -11px;
}
.business .icon-box .title {
    position: relative;
    line-height: 84px;
    font-size: 20px;
    text-align: right;
    font-weight: 600;
    color: #26272a;
    display: inline-block;
}
.report-btn{
  font-weight: 600;
    font-size: 19px;
    letter-spacing: 1px;
    padding: 16px 20px;
    border-radius: 6px;
    line-height: 1;
    margin: 0px 30px 0px 1px;
    color: #fff;
    background: #f55d3e;
    text-transform: uppercase;
}
.set-to-top{
  top: -114px;
  background: #dadada;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.analysis-seo {
  margin-top: -408px;
  padding-bottom: 110px;
  padding-top: 330px;
}
.analysis-seo h2 {
  color: #fff;
  font-size: 50px;
  line-height: 62px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}
.count-box img {
    width: 100%;
}
.analysis-seo .count-box span {
 font-size: 20px;
 display: block;
  font-weight: 500;
  color: #fff;
  margin-top: 30px;
  text-transform: uppercase;
}
.analysis-seo .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 200;
  color: #fff;
  line-height: 27px;
}
/*--------------------------------------------------------------
# Sky Method
--------------------------------------------------------------*/
.sky-method {
  padding-bottom: 45px;
  background-image: url(../img/shape_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  margin-top: -240px;
}

.sky-method .icon-box {
  margin-bottom: 20px;
  text-align: center;
  padding-top: 69px;
}
.sky-method .description {
  font-size: 25px;
  line-height: 48px;
  color: #1d1e1e;
  font-weight: 500;
}
.sky-method button{
  background: #ffb026;
  padding: 5px 60px;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: 0px;
  line-height: 44px;
  color: #242733;
  font-weight: 600;
  border: none;
  border-radius: 4px;
}
.white-space-sky{
  height: 300px;
}
/*-----------------------------------------------------------
# We Design Section
*/
#we-design {
    position: relative;
    background: url(../img/orange.png) #fff;
    background-position: 41% 99%;
    background-repeat: no-repeat;
    z-index: 1;
    background-size: 45%;
    padding-bottom: 190px;
}
#we-design .section-title {
    padding: 50px 0px;
}
.design-content {
    background-image: url(../img/img1.jpg);
    background-repeat: no-repeat; 
    background-position: right;
}
.img-left {
  position: absolute;
  left: 0px;
  top: -1px;
  height: 273px;
  width: 16px;
  background-color: #439ed7;
}
.design-content .left-side{
  padding: 40px 22px 9px 56px;
  background: #f9f9f9;
  margin-bottom: 37px;
}
.design-section h2{
font-size: 50px;
line-height: 48px;
color: #26272a;
font-weight: 500;
text-align: center;
}
.design-section .section-title p {
    color: #419ed7;
    font-size: 20px;
}
.design-content h3{
font-size: 30px;
line-height: 44px;
color: #050609;
font-weight: 500;
padding-right: 53px;
}
.design-content p{
font-size: 16px;
line-height: 28px;
color: #050609;
font-weight: 300;
}
.design-1, .design-2, .design-3{
font-size: 18px;
line-height: 60px;
color: #050609;
font-weight: 600;
background: linear-gradient(to left, #f5f5f505 56%, #40f99b 50%);
padding-left: 15px;
}
.design-2{
background: linear-gradient(to left, #f5f5f505 60%, #40f99b 50%);  
}
.design-3{
background: linear-gradient(to left, #f5f5f505 46%, #40f99b 30%);  
}
.design-blog .title {
    justify-content: center;
    display: flex;
    align-items: center;
    float: left;
    font-size: 20px;
    line-height: 60px;
    color: #050609;
    font-weight: 600;
    padding-top: 6px;
    position: relative;
}
.design-blog {
    margin: 29px 0px 0px 0px;
}
.design-blog img {
    margin-left: -11px;
}
.design-space{
  width: 450px;

}
/* ------------------------------------------------------------
Phone Device Section 
------------------------------------------------------------- */
.phone-section {
    margin-top: -75px;
    background-image: url(../img/device-bg-icon.png);
    padding-top: 0px;
    background-repeat: no-repeat;
    background-size: 9%;
    background-position: 5% 100%;
    padding-bottom: 0px;
    background-color: #fff;
}
.phone-left-img img{
  position: relative;
    z-index: 9;
}
#phone-device h2{
font-size: 50px;
line-height: 62px;
color: #26272a;
font-weight: 500;
margin-top: 100px;
}
.phone-span{
font-size: 18px;
line-height: 32px;
color: #439ed8;
font-weight: 500;
}
#phone-device p{
font-size: 17px;
line-height: 28px;
color: #26272a;
font-weight: 400;
}
#phone-device .btn{
border-radius: 6px;
background-color: #e7583a;
font-size: 20px;
line-height: 32px;
color: #ffffff;
font-weight: 500;
text-transform: uppercase;
padding: 10px 24px;

}
/*--------------------------------------------------------------
Traffic Section
---------------------------------------------------------------*/
.traffic-section {
    background: #e4dfdb;
}
.traffic-section h2{
  font-size: 50px;
line-height: 62px;
color: #26272a;
font-weight: 500;
}
.traffic-section .traffic-disc{
font-size: 18px;
line-height: 32px;
color: #26272a;
font-weight: 500;
}
.traffic-disc-log{
font-size: 16px;
font-weight: 400;

}
.video-box {
    position: relative;
    /*background-image: url(../img/video-bg-cloud.png);*/
    background-repeat: no-repeat;
    background-size: 100%;
}
.video-box img {
    padding: 114px 46px 14px 53px;
}
.video-box .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#f8f8f882 50%, rgb(247 247 247 / 52%) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 46px);
    top: calc(55% - 51px);
    overflow: hidden;
}
.play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(66, 139, 202, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
.video-box .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 28px solid #2824219e;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/*--------------------------------------------------------------
/* Branding  Section 
---------------------------------------------------------------*/
.branding-section{

}
.branding-topbotm {
    position: absolute;
    margin-top: -118px;
}
.branding-section .section-title h2{
  font-size: 48px;
line-height: 62px;
color: #439ed8;
font-weight: 500;
text-align: center;
padding-top: 40px;
}
.branding-section p{
font-size: 16px;
letter-spacing: 0px;
line-height: 28px;
color: #343233;
font-weight: 400;
padding: 0 36px 4px 0px;
}
.branding-section p span {
    font-weight: 500;
}
.branding-will h4{
font-size: 20px;
letter-spacing: 0px;
line-height: 28px;
color: #343233;
font-weight: 600;
}
.branding-will ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.branding-will ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.branding-will ul i {
    color: #fff;
    font-size: 20px;
    line-height: 1;
    background: red;
    border-radius: 50%;
    margin-right: 11px;
}
.branding-will ul a {
    transition: 0.3s;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 27px;
    color: #343233;
    font-weight: 300;
}
.branding-left-top {
    position: absolute;
    right: -126px;
    top: 71px;
}
/*--------------------------------------------------------------
# Strategy Section
--------------------------------------------------------------*/
.strategy-section{
background-image: url(../img/strategy-bg.png);
    background-repeat: no-repeat;
    margin-top: -150px;
    background-size: 100% 100%;
    padding-bottom: 184px;
}
.strategy-left-img {
    position: absolute;
    top: -145px;
    filter: drop-shadow(2.5px 4.33px 36.5px rgba(0,0,0,0.21));    
}
.check-icon{
  margin-right: 10px;
}
.strategy-section h1{
font-size: 112px;
letter-spacing: -5px;
line-height: 118px;
color: #ffffff;
font-weight: 500;
margin-top: 99px;
margin-left: 50px;
}
.branding-blog {
    display: flex;
    margin-top: 200px;
    float: inherit;
    margin-right: 100px;
}
.branding-blog p.title {
    color: #fff;
    font-weight: 400;
}
.strategy-left-logo {
    position: absolute;
    float: right;
    top: 109px;
    right: -33px;
}
.logo-text-div {
    position: relative;
    color: #fff;
}
.branding-logo {
    padding: 98px 72px 2px 77px;
}
.branding-logo p.title{
font-size: 50px;
letter-spacing: -1px;
line-height: 58px;
color: #ffffff;
font-weight: 400;
}
.branding-logo p.normal-text{
font-size: 16px;
line-height: 28px;
color: #ffffff;
font-weight: 300;
width: 80%;
}
.branding-logo p.think-text{
color: #40f99b;
font-size: 30px;
font-weight: 500px;
}
.branding-logo .btn{
background: #f65d3e;
color: #fff;
padding: 14px 60px;
font-size: 20px;
text-transform: uppercase;
font-weight: 300;
border-radius: 0px;
margin-top: 8px;
}
.strategy-text-right{
  padding: 64px 72px 2px 77px;
}
.strategy-left-slogan {
    position: absolute;
    float: left;
    top: 77px;
    left: 0px;
}
.slogan-tag h4, .slogan-tag ul a{
  color: #40f99b;
}
.slogan-tag ul i{
  background: none;
  color: #40f99b;
  font-size: 28px;
} 
.slogan-tag ul a{
color: #fff;
}
.slogan-tag ul li{
  padding: 4px 0;
}
.messaging-logo{
  bottom: 73px;
  top: unset;
}
.messaging-text{
  padding: 152px 72px 2px 77px
}
.messaging-text p.title{
  font-size: 41px;
}
.logo-title{
  font-size: 41px !important;
}
.title.slog-title {
  margin-left: 76px;
  font-size: 41px !important;
}
.branding-will.slogan-tag {
  margin-left: 81px;
}
.normal-text.slog-text {
  margin-left: 79px;
}
/*--------------------------------------------------------------
marketing section
---------------------------------------------------------------*/
.marketing-section {
    padding: 0px 0px 134px 0px;
    margin-top: -108px;
    position: relative;
    margin-right: 20px;
    background-image: url(../img/marketing-bg.png);
    background-repeat: no-repeat;
    background-position: 50% 100%;
}
.yelw-btn {
  background: #f7cb15 !important;
color: black !important;
font-weight: 600;
}
.good-market-bg{
  background-image: url(../img/quote.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 233px;
}
.good-market-bg p{
font-size: 40px;
line-height: 34px;
color: #666666;
font-weight: 300;
text-align: center;
margin-top: 100px;
}
/*--------------------------------------------------------------
# 4 ways SKY Section
--------------------------------------------------------------*/

.4-way-sky-section .section-title h2{
font-size: 50px;
line-height: 62px;
color: #0274e4;
font-weight: 500;
text-align: center;
}
p.second-title{
font-size: 25px;
line-height: 36px;
color: #242527;
font-weight: 400;
text-align: center;
padding: 0 138px;
}
.line-sky {
    color: #f45d3e;
    text-align: center;
    width: 350px;
    height: 3px;
    background: red;
    position: relative;
    left: 34%;
    top: 30px;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.website-service h3{
font-size: 30px;
letter-spacing: 0px;
line-height: 26px;
color: #1d1e1e;
font-weight: 500;
}
.website-service {
    background: #ffffff;
    padding: 73px 49px 60px 62px;
    filter: drop-shadow(0 0 35px rgba(0,0,0,0.17));
}
.website-service p {
    margin-top: 23px;
    font-size: 18px;
    font-weight: 300;
}
.website-img {
    position: absolute;
    top: -57px;
    left: -45px;
}
.btn-more{
  padding: 12px 25px;
  background: #0774e4;
  text-transform: uppercase;
  font-size: 19px;
  color: #fff;
  border-radius: 5px;
  margin-right: 16px;
  font-weight: 600;
}
.btn-free{
  padding: 12px 25px;
  background: #f65d3e;
  text-transform: uppercase;
  font-size: 19px;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}
.right-website {
    bottom: 0px;
    position: absolute;
    left: 0px;
}
.cloud-secn{
  position: relative;
    z-index: 1;
}
.center-website-img {
    position: absolute;
    left: -39px;
    top: 117px;
}
a.website-blog{
float: right;
font-size: 20px;
line-height: 60px;
color: #010607;
font-weight: 600;
}
.left-website{
top: 0px;
position: absolute;
right: 0px;
}
.top-set{
  right: -45px;
  left: unset;
}
.margin-top-set{
  margin-top: -35px;
}
a.cloud-blog{
float: right;
font-size: 20px;
line-height: 60px;
color: #010607;
font-weight: 600;
bottom: 72px;
position: absolute;
right: 48px;
}
.center-cloud-img {
    position: absolute;
    float: right;
    bottom: 25px;
    right: 0px;
}
.marketing-blog{
  position: absolute;
    bottom: 122px;
    right: 68px;
}
.marketing-secn{
  margin-top: -42px;
}
.sale-list h4{
  font-size: 16px;
  font-weight: 500;
}
.sale-list ul li {
    padding: 5px 0;
  }
.sale-list ul i {
    color: #f65d3e;
    font-size: 26px;
    line-height: 1;
    background: none;
}
.left-sales{
    top: 0px;
    position: absolute;
    left: 81px;
}
.sales-blog{
  top: 55%;
    position: absolute;
    right: 78px;
}
.center-sales-img {
    position: absolute;
    float: right;
    top: 39%;
    right: 0px;
}
/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

#footer {
  background: #272727;
  /*padding: 0 0 30px 0;*/
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #161616;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0;
  font-family: 'Roboto';
  color: #777777;
  margin-top: 30px;
  padding-right: 43px;
  font-weight: 300;
}

#footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  background: #3e9edc;
  color: #fff;
  line-height: 1;
  padding: 9px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #428bca;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 500;
  color: #a0a0a0;
  position: relative;
  padding-bottom: 10px;
}
.footer_info{
  position: relative;
  top: 44px;
}
.footer-newsletter img {
    float: right;
}
.line{
  width: 42%;
  background-color: #777;
  border: 1px solid;
  margin-bottom: 13px;
}
.social-links.mt-3 {
    float: right;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
  padding-right: 0px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9eccf4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Roboto';
}
.footer_news{
  position: relative;
  top: 40px;
}

#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}

/*#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    position: relative;
    width: 75%;
    height: 45px;
    border-radius: 11px;
    float: right;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  border-radius: 11px;
  width: 58%;
  padding: 11px;
  color: #000;
}
.news-letter label {
    margin-bottom: 0rem;
    float: right;
    top: -3px;
    position: relative;
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #5295ce;
}*/
/*.container.footer-bottom {
  margin-bottom: -29px;
}*/
#footer .copyright {
  padding-top: 30px;
  font-size: 14px;
  color: #777777;
  
}

#footer .credits a {
  color: #777777;
  font-size: 14px;
  font-weight: 300;
  line-height: 32px;
}
.client-logo-mobile{
  display: none;
}
.papers-decision p {
    color: #fff;
}
.foot_site img {
  max-width: 600px;
  float: right;
  height: 86px;
  max-height: inherit;
  margin: 0px;
  margin-bottom: -5px;
}
.foot_site {
    padding: 0px;
    margin-bottom: 0px;
}
.foot_site li {
    display: inline-block;
    padding: 0px 3px;
}
.show-mobile-branding{display: none;}
.from-subcriber {
    background: url(../img/footer-form.png);
    background-size: 100%;
    width: 320px;
    padding: 5px 0 0;
    background-repeat: no-repeat;
    float: right;
    margin-top: 12px;
}
.from-subcriber .inline {
  background: transparent;
  border: none;
  padding: 20px 12px;
  min-width: 113px;
  max-width: 182px;
  min-height: 56px;
  line-height: 1px;
  vertical-align: top;
  color: #212529;
}
.from-subcriber input.inline:focus{
border:none;
outline: none !important; 

}
/* Mobile CSS */
@media (max-width: 768px) {
  p{font-size: 17px;line-height: 28px;}
  .lists-v2 li{font-size: 17px;}
  #footer .footer-top .footer-newsletter form {display: block;float: unset;width: 90%;}
  .social-links.mt-3{float: unset;}
  .audit-top {padding-bottom: 0px;background-image: url(../img/mobile-banner.png);background-repeat: no-repeat;background-size: 100% 100%;}
  .contact-section{display: none;}
  .section-title{padding-bottom: 10px;}
  .section-title h3 {font-size: 24px;margin-right: 32px;}
  .section-title h1{font-size: 43px;line-height: 41px;}
  .audit-top .icon-box .title{font-size: 15px;line-height: 54px;}
  .audit-top .icon-box .icon {float: right;margin-left: -9px;margin-right: 70px;}
  .audit-top .icon-box .icon img {width: 50px;height: 50px;}
  .emptp-space {height: 260px;}
  .white-space {height: 0px;}
  .about-lists {padding: 22px 3px;background: #e5e6e8;}
  .section-title h2{font-size: 28px}
  .about-lists .content-item {padding: 17px 34px;}
  .about-lists .content-item h4{font-size: 30px;line-height: 32px;}
  .business .icon-box .icon {margin-right: -38px;width: 100%;margin-top: 26px;}
  .business .icon-box .title {line-height: 5px;font-size: 15px;text-align: left;font-weight: 600;top: -51px;}
  .custom-height {height: auto;}  
  .custom-height img {width: 100%;}
  .dasktop-only{display: none;}
  .mobile-only{display: block;}
  .set-to-top {top: 0px;}
  .mobile-only img {width: 100%;}
  .analysis-seo{margin-top: -154px;padding-top: 161px;padding-left: 20px;padding-right: 20px;}
  .analysis-seo h2{line-height: 42px;}
  .col-sm-2.text-center {width: 50%;}
  .analysis-seo .count-box span{font-size: 19px;line-height: 28px;}
  .analysis-seo .count-box p{font-size: 16px;font-weight: 400;line-height: 27px;}
  .analysis-seo .count-box {margin-bottom: 25px;}
  .sky-method .description{font-size: 18px;line-height: 36px;padding: 0 30px;}
  .sky-method{background-image: url(../img/sky-mobile-bg.png);margin-top: -94px;padding-bottom: 20px;}
  .sky-method .icon-box{padding-top: 29px;}
  .white-space-sky {height: 0px;}
  .report-btn{font-size: 15px;padding: 14px 83px;margin: 0px 0px 0px 1px;}
  .business {
    margin: 28px 0px 0px 0px;
  }
  #footer{padding: 0px 21px 30px 21px;font-size: 16px;
    /*background: url(../img/skyfam.png);*/
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    background-color: #1b1b1b;}
  #footer .footer-top{background: #1b1b1b;}
  #footer .footer-top .footer-info p{padding-right: 6px;font-size: 17px;}
  .footer-newsletter img{margin: auto;display: block;float: none;}
  #footer .footer-top .social-links a{width: 52px;height: 52px;padding: 15px 0;}
  /*#footer .footer-top .footer-newsletter form input[type="email"] { padding: 9px;}*/
  .from-subcriber{width: 290px;height: 65px;}
  .from-subcriber .inline {min-width: 101px;padding: 13px 12px;}
  .contact-info.credits {text-align: center;}
  .client-logo-mobile{display: block;width: 100%;}
  .client-logo{display: none;}
  /* Home page */
  #we-design{
    background-position: 100% 100%;
    background-size: 100% 10%;
    padding-bottom: 112px;
  }
  .design-content{
    background-repeat: no-repeat;
    background-position: bottom;
    height: auto;
    margin-right: -15px;
    margin-left: -15px;
    background-size: 100%;
    background-image: url(../img/design-home.png);
  }
  .row.flex-box {display: flex;flex-direction: column-reverse; }
  .visibility-container .col-md-6.md-margin-bottom-30 {
    padding-top: 33px;
    margin-bottom: 0px;
  }
  #we-design .section-title {
    padding: 0px 0px;}
  .design-section .section-title p{font-size: 17px;}
  .design-content .left-side{padding: 10px 10px 7px 24px;margin-bottom: 233px;
    margin-left: 15px;
    margin-right: 15px;}
    .traffic-disc-log {font-size: 17px;line-height: 28px;}
    .branding-section p {font-size: 17px;}
  .design-content h3{font-size: 20px;line-height: 28px;}
  .design-content p{font-size: 17px;line-height: 28px;}  
  .design-1, .design-2, .design-3{line-height: 28px;font-size: 15px;padding-left: 9px;}
  .design-3 {background: linear-gradient(to left, #f5f5f505 57%, #40f99b 55%);}
  .design-2 {background: linear-gradient(to left, #f5f5f505 44%, #40f99b 38%);}
  .phone-section{margin-top: 0px;padding-top: 18px;padding-bottom: 32px;background-image: none;}
  #phone-device h2{font-size: 28px;margin-top: 72px;line-height: 40px;}
  .traffic-section{padding-bottom: 85px;}
  .traffic-section h2{font-size: 29px;line-height: 40px;}
  .video-box img {padding: 21px 14px 0px 7px;}
  .video-box .play-btn{left: calc(48% - 46px);top: calc(53% - 51px);}
  .branding-topbotm{left: 37%;}
  .branding-section .section-title h2{font-size: 28px;line-height: 40px;}
  .branding-section p{padding: 0 9px 4px 0px;}
  .branding-will ul a{font-size: 17px;width: 100%;float: left;}
  .branding-will ul li{display: flex;flex-direction: row;}
  .brand-mobile-img{width: 79%;z-index: 9999;position: relative;}
  .branding-left-top {position: absolute;right: 33px;top: 63px;z-index: 9999999;}
  .branding-left-top img {width: 48%;float: right;}
  .strategy-section h1{font-size: 50px;letter-spacing: -2px;line-height: 58px;margin-left: 0px;margin-top: 70px;}
  .branding-blog{margin-top: 27px;margin-right: 75px;}
  .strategy-left-img img {display: none;}
  .strategy-left-logo{position: relative;top: 30px;right: 0px;width: 100%;}
  .strategy-left-logo img {width: 100%;}
  .branding-logo {padding: 64px 0px 0px 0px;}
  .branding-logo p.title{font-size: 30px !important;}
  .branding-logo p.normal-text{font-size: 17px;}
  .branding-logo p.think-text{font-size: 20px;}
  .branding-logo .btn{width: 100%;}
  .hide-mobile-branding{display: none;}
  .show-mobile-branding{display: block;}
  .strategy-left-slogan{position: relative;top: 33px;left: 0px;width: 100%;}
  .strategy-left-slogan img {width: 100%;}
  .marketing-section{padding: 70px 0px 93px 0px;margin-right: 0px;background-position: 55% 87%;margin-top: -99px;background-size: 72%;}
  .good-market-bg{height: 155px;background-size: 100% 100%;}
  .good-market-bg p{margin: 45px 12px 0px 12px;font-size: 20px;}
  .way-4-sky-section {padding-top: 0px;}
  p.second-title{font-size: 18px;padding: 0 0px;line-height: 30px;}
  .line-sky{display: none;}
  .website-img{left: 35%;}
  .website-service h3{font-size: 25px;text-align: center;}
  .website-service{padding: 70px 22px 43px 25px;width: 92%;margin-left: auto;margin-right: auto;}
  .design-space {width: 0px;}
  .right-website{position: relative;}
  .center-website-img{display: none;}
  .service-blog-mb{20px 47px 99px 2px;}
  .left-website{position: relative;}
  a.cloud-blog{bottom: -19px;position: relative;right: 48px;}
  .marketing-secn {margin-top: 96px;}
  .center-cloud-img{display: none;}
  .marketing-blog{position: relative;bottom: -15px;right: 60px;margin-bottom: 32px;}
  .left-sales {top: 0px;position: relative;left: 0px;}
  .margin-top-set {margin-top: 55px;}
  .center-sales-img{display: none;}
  .sales-blog{top: 6%;}
  .ctn-title h2{font-size: 31px !important;line-height: 47px !important;}
  .ctn-section{background-image: url(../img/ctn-bg-mobile.png) !important;background-repeat: no-repeat !important;margin-top: -90px !important;height: auto !important;background-size: cover;}
  .btn-more{padding: 9px 20px;font-size: 16px;margin-right: 14px;}
  .btn-free{padding: 10px 17px;font-size: 16px;}
  .design-agency-mb{margin-right: -15px;}
  .agent-rightcolor{background: linear-gradient(to bottom, #f5f5f505 41%, #f6c917 30%);}
  .main_sec_m{
    padding-top: 20px;
  }
  .key_seo_sec{
    margin-top: -1px;
  }
  .relate_arrow img{
    width: auto !important;
    margin-top: -3px !important;
  }
  .only_key_sec{
    margin-top: 14px;
  }
  .keyword-seo-section .row.no-gutters{
    padding-top: 0 !important;
  }
  .blog_exmp_btn{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin: 0px !important;
    line-height: 32px !important;
    padding: 10px 0px !important;
  }
  .keyword-dot6{
    display: none;
  }
  .less_top{
    padding-top: 20px !important;
  }
  .relevant-blog-two{
    padding-bottom: 40px !important;
  }
  .about-lists .content-item p{
  	font-size: 17px;
  	line-height: 28px;
  }
}
/* Large Device CSS  @media only screen and (min-width: 1200px) */
@media only screen and (min-width:1200px) and (max-width:1380px){
  .section-title h1{font-size: 87px;}
  .emptp-space {
      height: 140px;
  }
  .white-space {
      height: 0px;
  }
  .section-title{
      padding-bottom: 18px;
  }
  .about-lists .content-item{
      padding: 32px;
  }
  .business {
      margin: -1px 0px;
  }
  .stategy-section{
    height: 382px;
  }
}
@media only screen and (min-width:1381px) and (max-width:1500px){
  .emptp-space {
      height: 140px;
  }
  .stategy-section{
    height: 382px;
  }
}
@media only screen and (min-width:1700px) and (max-width:1990px){
  .audit-top {
      background-size: cover;
  }
}
@media only screen and (min-width:411px) and (max-width:450px){
  .top-bar p {
    padding: 4px 0px 0px 52px !important;
    width: 100%;
  }
  .about-lists .row{
    height: auto;
  }
  .design-content .left-side{
    margin-bottom: 264px;
  }
  #bulding {
    padding-top: 228px;
  }
  #marking-service h2{
  	margin-left: 92px !important;
  }
}
@media only screen and (min-width:350px) and (max-width:767px){
  
  .section-title h3 {
      font-size: 23px;
      margin-right: 20px;
  }
  .about-lists .row{
    height: auto;
  }
  .client-logo-mobile {
   height: 20px;
  }
  #footer .footer-top .social-links a{
    width: 53px;
    height: 53px;
  }
  .phone-left-img img {
    margin-left: 27px;
  }
  .foot_site{
      margin: 17px 0px 0px 0px !important;
      padding-left: 30px;
  }
  .foot_site li:nth-child(1) {
      position: absolute;
      left: -24px;
      top: 40px;
      width: inherit;
  }
  .foot_site img {
    max-width: 100%;
    height: auto;
    max-height: inherit;
    margin: 0px;
    float: none;
  }
  .foot_site li {
      margin: 0;
      line-height: 1;
      width: 48%;
      text-align: center;
  }
  .phone-span {
    line-height: 24px;
    font-size: 19px;
  }
  .traffic-section h2 {
    font-size: 31px;
  }
  .traffic-section .traffic-disc {
    line-height: 27px;
  }
  .branding-section .section-title h2 {
    font-size: 34px;
    line-height: 40px;
    color: black;
  }
  .branding-will ul a {
    line-height: 28px;
  }
  .strategy-section h1 {
    font-size: 54px;
  }
  .strategy-section {
    background-size: cover !important;
    padding-bottom: 40px;
  }
  .branding-logo p.normal-text {
     width: 100%; 
  }
  .title.slog-title {
    margin-left: 0px;
    font-size: 30px !important;
  }
  .normal-text.slog-text {
    margin-left: 0px;
  }
  .branding-will.slogan-tag {
    margin-left: 0px;
  }
  .design-blog .first-blog{
    width: 20% !important;
  }
  .branding-blog {
    float: inherit;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .no-gutters1 {
     display: block !important; 
  }
  a.website-blog {
    margin-left: 10px;
    margin-top: 20px;
    float: inherit;
  }
  .margin-top-set {
    margin-top: 65px;
  }
  .marketing-secn {
    margin-top: 141px;
  }
  .website-blog.marketing-blog {
    margin-left: 102px;
  }
  .cloud-blog.sales-blog {
    margin-top: -14px !important;
  }
  .sales-blog {
    top: -20%;
  }
  .ctn-title h2 {
    margin-left: 23px;
  }
  .ctn-title {
    padding-top: 34px !important;
  }
  .ctn-btn {
    margin-left: 63px;
  }
  .ctn-img-right img {
     height: auto !important; 
  }
}
@media only screen and (min-width:300px) and (max-width:370px){
  #footer .footer-top .social-links a {
      width: 42px;
      height: 42px;
  }
  .about-lists .row{
    height: auto;
  }
  .header-inner-right ul{
    padding: 0px;
  }
  .design-blog .first-blog {
    width: 20% !important;
  }
  .top-bar p{
    font-size: 9.5px !important;
  }
  #we-design{
    padding-bottom: 0px;
  }
  .design-content .left-side{
    margin-bottom: 105px;
  }
  .strategy-section{
    background-size: cover !important;
  }
  .marketing-section{
    padding: 0px 0px 147px 0px;
  }
  .no-gutters1 {
    display: block !important;
  }
  .from-subcriber {
    width: 250px;
    margin-left: -15px;
    float: left;
    padding: 0px 0px 0px 0px;
  }
  .from-subcriber .inline{
    padding: 8px 0px;
    margin-top: -5px;
    margin-left: -18px;
  }
  section{
    padding: 30px 0;
  }
  .black-btn.black_btn_btn{
    padding: 12px 70px !important;
  }
  .branding-will.slogan-tag{
    margin-left: 0;
  }
  .red-btn{
    padding: 20px 82px !important;
  }
  .blue-btn{
    padding: 0px 27px !important;
    margin-bottom: 18px;
  }
  .latest-work{
    margin-top: -65px;
  }
  .character-work{
    padding-top: 0px;
  }
  .mob-other{
    font-size: 77px !important;
  }
  .design-service-other h1{
      font-size: 90px !important;
  }
  .design-service-other h6{
    padding-right: 12px !important;
  }
  .other-btn-radius{
    margin-right: 44px !important;
  }
  .green-btn-radius{
    margin-right: 40px !important;
  }
}
/*|----------------------------------------------------------------|*/
/* marketing */
.marking-top{
padding: 0px 0;
}
.marking-first-img{
  width: 200px;
    height: 88px;
    margin-bottom: 25px;
}
.marking-top h3{
  font-size: 69px;
  color: #26272a;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: -3px;
}
.marking-top p{
 font-size: 16px;
letter-spacing: 0px;
line-height: 28px;
color: #343233;
font-weight: 400;
padding: 15px 39px 2px 0px;
}
.live-btn{
  background: #ffcd42;
  font-size: 20px;
letter-spacing: -1px;
line-height: 70px;
color: #26272a;
font-weight: 500;
text-transform: uppercase;
padding: 16px 35px;
margin-right: 17px;
}
.live-btn:hover{
color: #26272a;
}
.quete-btn{
font-size: 20px;
letter-spacing: -1px;
line-height: 70px;
color: #ffffff;
font-weight: 500;
text-transform: uppercase;
padding: 16px 30px;
background: #0774e4;
}
/*---------------------------------------------------------------
Marketing Design Service
---------------------------------------------------------------*/
#marking-service{
  background-image: url(../img/marketing-service/topHeader.jpg);
  background-repeat: no-repeat;
  height: 607px;
}
#marking-service h2{
  font-size: 56px;
letter-spacing: -1px;
line-height: 144px;
color: #ffffff;
font-weight: 500;
margin-top: 41px;
}
.mobile{
  display: none;
}


.marking-service-img {
    width: 86%;
    height: auto;
    margin-bottom: 25px;
    margin-top: -193px;
    position: absolute;
}
.animation-3d{
  background-color: #f9f9f9;
  filter: drop-shadow(33.5px 58.024px 19px rgba(0,0,0,0.07));
  padding: 26px 34px;
  position: relative;
    z-index: 1;
}
.animation-3d h3{
font-size: 50px;
letter-spacing: -1px;
line-height: 64px;
color: #1d1e1e;
font-weight: 700;
}
.animation-3d p{
font-size: 16px;
line-height: 28px;
color: #050609;
font-weight: 300;
}
.service-video{
  margin-left: -38px;
  margin-top: 135px;
}
.service-video img{
  width: 700px;
  height: 577px;
  float: left;
  margin-left: -121px;
}
.marketing-service-space{
  height: 275px;
  background-color: #fff;
}
.latest-work .section-title h2{
font-size: 50px;
line-height: 62px;
color: #353432;
font-weight: 500;
}
.latest-work-box .play-work-btn {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 46px);
    top: calc(34% - 51px);
    overflow: hidden;
}
.latest-work-box .play-work-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 47px solid #ffffffa8;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.latest-work-box h3{
font-size: 25px;
line-height: 30px;
color: #353432;
font-weight: 600;
margin-top: 30px;
}
.latest-work-box p{
font-size: 17px;
line-height: 30px;
color: #353432;
font-weight: 300;
}
.line-work {
    width: 60px;
    height: 5px;
    background: red;
    position: relative;
    left: 0%;
    top: 5px;
    border-radius: 25px;
}
.work-secter{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 59px;
}
.latest-work {
    background: linear-gradient(to top, #f3f3f3 60%, #ffffff 60%);
}
.work-secter .blue-btn{
  margin-top: 170px;
}
.errow-character{top: 133px;}
.errow-left-set {
    position: absolute;
    left: -58px;
    top: -48px;
}
.errow-right-set {
    position: absolute;
    right: 18px;
    top: 23px;
}
.story-borad {
    top: 84px;
}
.objact-section{
  margin-top: 60px;
}
.errow-second-left{
  position: absolute;
    left: -30px;
    top: -47px;
}
.script-char{
  top: 82px;
}
.voice-over{
  top: 52px;
}
.errow-second-right{
  position: absolute;  
  right: 48px;
  top: 48px;
}
.production-section{
    margin-top: 132px;
}
.production-left{
    position: absolute;
    left: -78px;
    top: 7px;
}
/*|---------------------------------------------------------------|*/
/* Character Section  */
/*|---------------------------------------------------------------|*/
.character-work{
  background-color: #353432;
  background-image: url(../img/marketing-service/intel.png);
    background-repeat: no-repeat;
    background-position: 82% 110%;
}
.des-other {
  font-size: 109px;
  line-height: 124px;
  color: #1c1c1c;
  font-weight: 700;
  font-family: "Montserrat";
  position: relative;
  text-align: center;
  top: 128px;
  background: -webkit-linear-gradient(#eee, #1c1c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.character-creation span{
  font-size: 30px;
line-height: 62px;
color: #f47321;
font-weight: 500;
}
.character-creation h2{
font-size: 50px;
line-height: 60px;
color: #ffffff;
font-weight: 700;
}
.character-creation p{
font-size: 18px;
line-height: 28px;
color: #ffffff;
font-weight: 300;

}
/*|---------------------------------------------------------------|*/
/* design service other Section  */
/*|---------------------------------------------------------------|*/
.design-service-other{
  background-color: #e5e6e8;
}
.design-service-other h1{
font-size: 114px;
line-height: 116px;
color: #353432;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 3rem;
}
.design-service-other h6 {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
line-height: 20px;
color: #1c1c1c;
font-weight: 700;
margin-left: -22px;
}
.businesscard-title{
font-size: 60px;
line-height: 66px;
color: #353432;
font-weight: 700;
padding: 35px 0px 9px 0px;
}
.ui_xi_set{
	margin-top: -190px;
}
.design-service-other p{
font-size: 16px;
line-height: 26px;
color: #353432;
font-weight: 400;
}
.businesscard-img {
    margin-top: 60px;
}
/*|---------------------------------------------------------------|*/
/* Logo Website design Section  */
/*|---------------------------------------------------------------|*/
.logo-website-design{
  background-image: url(../img/marketing-service/logo-design-bg.png);
    background-repeat: no-repeat;
}
.logo-website-design h2{
font-size: 69px;
line-height: 78px;
color: #ffffff;
font-weight: 700;
}
.logo-design {
    position: absolute;
    float: right;
    right: -78px;
    top: -161px;
}
.website-design{
  position: absolute;
  bottom: 0px;
  top: 97px;
  left: -11px;
}
.website-title, .businesscard-errow{
  margin-left: 320px;
}
/*|---------------------------------------------------------------|*/
/* Client Testimonial design Section  */
/*|---------------------------------------------------------------|*/
.client-testimonial {
    padding: 160px 0 80px 0px;
    background: #fff;
}
.client-testimonial h2{
font-size: 50px;
line-height: 60px;
color: #1d1e1e;
font-weight: 500;
text-align: center;
}
.testimonial-bg{
  background-image: url(../img/marketing-service/testimony.jpg);
    background-repeat: no-repeat;
    height: 351px;
    position: relative;
}
.testimonial-bg h3{
font-size: 30px;
line-height: 36px;
color: #1c1c1c;
font-weight: 400;
}
.testimonial-bg h5{
  color: #3e9edc;
  font-size: 20px;
}
.testimial-stev{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 91%;
    padding-right: 76px;
}
.testimial-stev p {
    padding-top: 18px;
}
/*|---------------------------------------------------------------|*/
/* Content Writing design Section  */
/*|---------------------------------------------------------------|*/
.content-writing h2{
font-size: 45px;
line-height: 74px;
color: #26272a;
font-weight: 500;
}
.content-disc{
  font-size: 20px;
line-height: 34px;
color: #26272a;
font-weight: 300;
}
.content-disc-log{
  font-size: 21px;
line-height: 35px;
color: #26272a;
font-weight: 400;
}
.writing-video{
    background-size: contain;
    background-position: -11px 28%;
    background-image: none;
}
.writing-video img {
    width: 100%;
    padding: 45px 0px 13px 0px;
}
.content-writing h2 span {
    font-size: 30px;
    font-weight: 200;
}
.keyword-seo-section{
  background-image: url(../img/contenwriting/keyword-seo.png);
  background-repeat: no-repeat;
  padding-top: 0px;
}
.keyword-center{
  background-color: #f6f6f6;
}
.keyword-center h1{
font-size: 125px;
letter-spacing: -5px;
line-height: 134px;
color: #37393d;
font-weight: 500;
margin-left: 50px;
margin-top: 60px;
}
h2.keyword-dot1 {
    width: 40px;
    height: 40px;
    background: #439ed7;
    top: 60%;
    position: absolute;
}
.audience-sec{
  margin-left: -244px;
    padding-right: 262px;
    margin-top: 40px;
}
.audience-sec h4, .audience-keyword h4, .audience-decision h4{
  font-size: 50px;
letter-spacing: -1px;
line-height: 58px;
color: #242527;
font-weight: 400;
}
.audience-sec p, .audience-keyword p, .audience-decision p{
  font-size: 16px;
line-height: 26px;
color: #242527;
font-weight: 300;
}
h2.audi-numb {
height: 204px;
width: 204px;
background: #fff;
font-size: 140px;
letter-spacing: -3px;
line-height: 58px;
color: #242527;
font-weight: 400;
padding-top: 66px;
padding-left: 43px;
}
.audience-blog{
  position: absolute;
  top: 30px;
  width: 400px;
  right: -161px;
}
.keyword-errow {
    margin-left: 107px;
}
.audi-nubtwo{
  float: left;
  margin-left: -100px;
  margin-top: 14px;
}
.audience-keyword {
    position: absolute;
    left: 48px;
    top: 50px;
    padding-right: 78px;
}
.keyword-space {
    height: 111px;
    width: 100%;
    float: left;
}
.keyword-down-sec{
    position: absolute;
    top: 152px;
    background: #f6f6f6;
    padding: 74px 131px 58px 67px;
    left: 199px;
    height: 259px;
}
.keyword-down-errow {
    position: absolute;
}
.keyword-nopadding{
  margin-left: 18px;
    margin-right: 0px;
}
h2.keyword-dot3 {
    width: 125px;
    height: 125px;
    background: #40f99b;
    position: absolute;
    right: -69px;
    top: -76px;
    z-index: 9;
}
.audience-decision {
    padding: 100px 75px 80px 52px;
}
h2.keyword-dot4 {
    width: 82px;
    height: 82px;
    background: #f65d3e;
    top: 40%;
    position: absolute;
    right: -150px;
}
/* Content wringting section */
.content-writing-blog {
    background-image: url(../img/contenwriting/conten-writing-bg.png);
    background-repeat: no-repeat;
    margin-top: -60px;
    background-size: cover;
    padding-bottom: 0px;
    padding-top: 0px;
}
.content-left-img {
    position: absolute;
top: -53px;
left: -75px;
}
.content-left-img img{
  height: 100px !important;

}
.content-writing-blog h1{
  font-size: 125px;
letter-spacing: -5px;
line-height: 118px;
color: #ffffff;
font-weight: 500;
text-align: right;
margin-right: -74px;
float: right;
padding-top: 119px;
}
.writing-blog-bg{
  background-color: #075071;
}
.content-dot4 {
    width: 90px;
    height: 90px;
    background: #f65d3e;
    position: absolute;
    left: 0px;
    top: 119px;
    z-index: 9;
}
.writing-decision {
    padding: 0px 151px 38px 84px;
}
.writing-decision h4, .writing-social h4{
font-size: 50px;
letter-spacing: -1px;
line-height: 58px;
color: #ffffff;
font-weight: 400;
}
.writing-decision p, .writing-social p{
font-size: 16px;
line-height: 26px;
color: #ffffff;
font-weight: 300;
}
.articles-right{
  position: absolute;
bottom: -60px;
    width: 280px;
    height: 280px;
    right: -162px;
    z-index: 1;
}
.writing-space{
  height: 200px;
}
.keyword-dot5 {
    width: 90px;
    height: 90px;
    position: absolute;
    background: #075071;
    right: -90px;
    bottom: 41px;
}
.wrintingmargin-top{
  padding-bottom: 146px;
}
.articles-left {
    position: absolute;
    width: 280px;
    height: 280px;
    right: -118px;
    z-index: 1;
    top: -66px;
}
.writing-social{
  padding: 0px 31px 36px 155px;
}
.keyword-dot6 {
    width: 90px;
    height: 90px;
    background: #075071;
    z-index: 1;
    position: absolute;
    right: 40px;
    bottom: 72px;
}
.benefits{
  padding: 0px 42px 40px 65px;
  margin-top: -48px;
}
.benefits-list h4{
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 28px;
    font-weight: 600;
}
.benefits-btn{
    border-radius: 0px;
    background-color: #439ed7;
    font-size: 19px;
    letter-spacing: -1px;
    line-height: 93px;
    color: #242527;
    font-weight: 400;
    text-transform: uppercase;
    padding: 13px 112px;
    margin-right: 17px;
}
.keyword-dot7 {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #075071;
    right: -70px;
    top: 17px;
}
.newsletters{
  padding: 0 159px 0px 83px;
}
.newsletter-img{
  bottom: -5px;
}
.campaing-bold{
font-size: 30px !important;
line-height: 26px !important;
color: #40f99b !important;
}
.newsletter-btn {
    background: #f7ca15;
    padding: 15px 94px;
    font-size: 19px;
    line-height: 32px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;

}
.campaing-decision{
  padding: 0px 151px 106px 84px
}
.papers-decision {
    color: #fff;
    padding: 0px 23px 71px 196px;
    font-size: 16px;
    font-weight: 300;
}
.papers-decision h3{
  font-size: 50px;
letter-spacing: -1px;
line-height: 58px;
color: #ffffff;
font-weight: 400;
}
.keyword-dot8 {
    width: 90px;
    height: 90px;
    background: #075071;
    left: 36%;
    position: absolute;
    top: 30px;
    z-index: 1;
}
.stategy-section{
  background-image: url(../img/contenwriting/branding-bg-all.png);
  /*background-image: url(../img/contenwriting/branding-bg-right.png), url(../img/contenwriting/CTA-img.jpg);*/
  background-position: right center, left center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
  padding: 0px 0px;
  height: 387px;
  background-color: #f7cc0e;
}
.branding-play {
    padding: 50px 44px 0px 17px;
}
.stategy-section h3{
font-size: 69px;
line-height: 50px;
color: #ffffff;
font-weight: 700;
}
.stategy-section h2{
font-size: 99px;
color: #000;
font-weight: bold;
}
.stategy-section p{
font-size: 35px;
line-height: 54px;
color: #26272a;
font-weight: 500;
}
.play-left-icon {
    font-size: 68px;
    background: #075071;
    color: #f7cc0e;
    position: absolute;
    right: -13px;
    top: 27%;
    padding: 14px 30px;
    border-radius: 50%;
}
@media (max-width: 768px) {
  .keyword-center h1 {
    font-size: 50px;
    line-height: 58px;
    letter-spacing: -2px;
  }
  .about-lists .row{
    height: auto;
  }
  .stategy-section h2{
    font-size: 57px;
  }
  .writing-video img{
    padding: 49px 23px 28px 15px;
  }
  .content-writing h2{
    font-size: 27px;
  letter-spacing: -1px;
  line-height: 41px;
  font-weight: 500;
  }
  .content-disc {
    font-size: 17px;
    line-height: 28px;
  }
  .content-disc-log {
    font-size: 17px;
    line-height: 28px;
  }
  .design-blog .title{
    font-size: 17px;
  }
  .design-blog img{
    width: 84%;
    margin-top: 6px;
    margin-left: -8px;
  }
  h2.audi-numb{
    height: 92px;
    width: 92px;
    font-size: 45px;
    padding-top: 19px;
    padding-left: 37px;
    position: absolute;
    z-index: 1;
    margin-left: 14px;
  }
  .audience-sec {
    margin-left: 81px;
    padding-right: 27px;
    margin-top: 25px;
    z-index: 2;
    position: relative;
  }
  .audience-sec h4, .audience-keyword h4, .audience-decision h4 {
    font-size: 30px;
  }
  .audience-sec p, .audience-keyword p, .audience-decision p {
    font-size: 17px;
    line-height: 28px;
  }
  .audience-blog {
    position: unset;
    top: 56px;
    width: 350px;
    right: 6px;
    padding-left: 21px;
  }
  .keyword-errow{display: none;}
  .keyword-down-sec{display: none;}
  .audi-nubtwo {
    margin-left: 14px;
    margin-top: 0px;
  }
  .audience-keyword {
    position: relative;
    left: 0px;
    top: 0px;
    padding-right: 22px;
    z-index: 2;
    width: 100%;
    float: left;
    padding-top: 20px;
    padding-left: 86px;
  }
  .keyword-space {
    height: 0px;
  }
  .keyword-nopadding{
    margin-right: 0px;
    margin-left: 0px;
  }
  .keyword-seo-section .row.no-gutters {
    margin-bottom: -25px;
    padding: 10px 0px;
  }
  .keyword-seo-section .col-lg-2.col-md-2, .keyword-seo-section .col-lg-1.col-md-1 {
    display: none;
  }
  h2.keyword-dot3{display: none;}
  h2.keyword-dot4{display: none;}
  .audience-decision {
    padding: 18px 10px 35px 20px;
}
}
/*|---------------------------------------------------------------|*/
/* Relevant Blog  */
section.relevant-blog {
    margin-top: -142px;
}
.relevant-blog-two{
 margin-top: -280px;
 padding-bottom: 90px; 
}
.relevant-btn{
  margin: 20px 0px;
}
.relevant-img{
  width: 92%;
  margin-top: 74px;
  margin-left: 10px;
}
.relevant-blog-img .icon{
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -15px;
}
.relevant-blog-img .icon-box .title {
    position: relative;
    line-height: 84px;
    font-size: 20px;
    text-align: right;
    font-weight: 600;
    color: #26272a;
    display: inline-block;
    float: right;
}
.relevent-set-right{
  width: 100%;
  float: left;
  margin-top: -86px;
  margin-left: 42px;
}
.relevant-img-two {
    width: 47%;
    margin-top: 156px;
    margin-right: -54px;
    float: right;
}
.relevent-set-left-two {
    width: 100%;
    float: left;
    margin-left: -34px;
    bottom: 40px;
    position: absolute;
}
.filter-effect{
  filter: drop-shadow(2.5px 4.33px 38px rgba(0,0,0,0.12));
  border-radius: 15px;
}
.content-bg-img {
    background-image: url(../img/marketing/yoellow4.png);
    background-position: 73% 100%;
    background-repeat: no-repeat;
    padding-bottom: 34px;
}
.hidefor-dasktop{display: none;}
/* CTN Section */
.ctn-section{
  background-image: url(../img/ctn-bg.png);
   background-repeat: no-repeat;
   margin-top: -175px; 
   height: 602px;
   padding-bottom: 0px; 
   background-size: cover;
}
.ctn-title h2{
font-size: 50px;
line-height: 65px;
color: #ffffff;
font-weight: 500;
margin-bottom: 46px;
}
.ctn-title {
    padding-top: 196px;
}
.ctn-img-right {
    padding-top: 93px;
    /* padding-bottom: 0px; */
}
.ctn-img-right img{
  height: 425px;
}
.ctn-btn{
  background: #fff;
  text-transform: uppercase;
  padding: 19px 43px;
  font-size: 17px;
  line-height: 48px;
  color: #1d1e1e;
  font-weight: 600;
  border-radius: 28px;

}
@media (max-width: 768px) {
  .marking-first-img{
    float: right;
  }
  .marking-top h3{
    font-size: 39px;
  }
  .live-btn, .quete-btn{
    font-size: 18px;
    padding: 16px 23px;
  }
  .filter-effect{width: 100%}
  .relevant-blog img {
    width: 100%;
  }
  .relevant-img{display: none;}
  section.relevant-blog {
    margin-top: -44px;
    background-image: url(../img/marketing/yoellow2.png);
    background-position: 0% 6%;
    background-repeat: no-repeat;
    background-size: 69%;
  }
  .hidefor-mobile{display: none;}
  .hidefor-dasktop{display: block;}
  .relevent-set-right {
    width: 100%;
    float: left;
    margin-top: 13px;
    margin-left: -51px;
  }
  .relevant-blog-two {
    background-position: 100% 2%;
    padding-top: 181px;
    background-image: url(../img/marketing/yoellow2-mobile.png);
    background-size: 88%;
    background-repeat: no-repeat;
    background-origin: revert;
    margin-top: -223px;
  }
  .relevant-img-two{display: none;}
  .relevent-set-left-two{display: none;}
  .relevent-for-mobile {
    width: 100%;
    float: left;
    margin-left: -64px;
    bottom: -12px;
    position: relative;
    display: block;
  }
  .content-writing-blog h1{
    font-size: 50px;
    letter-spacing: -3px;
    line-height: 58px;
    text-align: left;
    margin-right: 0px;
    float: left;
    padding-top: 28px;
  }
  .black-btn{
    padding: 15px 88px !important;
  }
  .articles-right {
    position: relative;
    bottom: 0px;
    width: 100%;
    height: auto;
    right: 0px;
    z-index: 1;
  }
  .writing-decision {
    padding: 0px 0px 0px 0px;
  }
  .content-writing-blog{margin-top: -46px;}
  .writing-blog-bg {
    background-color: #02344d;
  }
  .writing-decision h4, .writing-social h4{
    font-size: 30px;
    line-height: 35px;
    padding-top: 10px;
  }
  .writing-decision p, .writing-social p {
    font-size: 17px;
    line-height: 28px;
  }
  .keyword-dot5{display: none;}
  .content-dot4{display: none;}
  .articles-left {
    position: relative;
    width: 100%;
    height: auto;
    right: 0px;
    z-index: 1;
    top: 0px;
  }
  .writing-social {
    padding: 0px 1px 6px 0px;
  }
  .campaing-decision {
    padding: 0px 0px 11px 0px;
  }
  .campaing-bold {
    font-size: 17px !important;
    line-height: 28px !important;
  }
  .papers-decision p {
    font-size: 17px;
    line-height: 28px;
  }
  .keyword-dot7{display: none;}
  .papers-decision {
    padding: 0px 0px 47px 0px;
    font-size: 13px;
  }
  .papers-decision h3{
    font-size: 30px;
    line-height: 52px;
  } 
  .stategy-section{
    background-image: url(../img/contenwriting/branding-bg.png), url(../img/contenwriting/CTA-img.jpg);
    background-position: bottom center, top center;
    background-repeat: no-repeat, no-repeat;
    background-size: 100%, 100%, auto;
    height: 720px;
    padding: 0px 0px;
  } 
  .branding-play {
    padding: 230px 12px 3px 19px;
  }
  .stategy-section h3{font-size: 50px; padding-top: 90px;}
  .stategy-section p{
    font-size: 25px;
    line-height: 36px;
  }
  .play-left-icon {
    font-size: 40px;
    background: #075071;
    color: #f7cc0e;
    position: absolute;
    right: unset;
    top: unset;
    padding: 9px 20px;
    border-radius: 50%;
  }
  .get_btn_for_mobile{
  	text-align: center;
  }
}
/* All Button */
.red-btn {
    background-color: #f65d3e;
    font-size: 19px;
    letter-spacing: -1px;
    line-height: 70px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    padding: 20px 90px;
    margin-right: 17px;
}
.blue-btn {
    border-radius: 4px;
    background-color: #0774e4;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 70px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 35px;
    margin-right: 17px;
}
.black-btn {
    background-color: #000;
    font-size: 19px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 90px;
    margin-right: 17px;
}
.yellow-btn-radius{
border-radius: 36px;
background-color: #f47321;
font-size: 15px;
letter-spacing: 1px;
color: #ffffff;
font-weight: bold;
/*font-family: "Sofia Pro";*/
text-align: center;
padding: 25px 50px;
text-transform: uppercase;
margin-right: 31px;
}
.white-btn-radius{
border-radius: 36px;
background-color: #e5e6e7;
font-size: 15px;
letter-spacing: 1px;
color: #000;
font-weight: bold;
/*font-family: "Sofia Pro";*/
text-align: center;
padding: 25px 50px;
text-transform: uppercase;
}
.green-btn-radius{
border-radius: 36px;
background-color: #353432;
font-size: 15px;
letter-spacing: 1px;
color: #ffffff;
font-weight: bold;
text-align: center;
padding: 25px 50px;
text-transform: uppercase;
float: right;
}
.animate{
  display: none;
}
.robot{
  display: none;
}
.mob-other{
  display: none;
}
.other-btn-radius{
  display: none;
}
.design-serv{
  display: flex;
}
.mobile-sec{
  display: none;
}
.mobile-bg{
  background-image: none;
}
@media (max-width: 425px) {
   .marking-service-img {
      width: 100%;
      margin-top: -98px;
      position: relative;

  	}
    #marking-service {
	  background-repeat: no-repeat;
	  background-size: contain;
	  padding-top: 95px;
    height: auto;
    background-image: url(../img/marketing-service/marketing-bg-mobile.png);
	}
	.mobile-design{
	  display: none !important;
	}
	#marking-service h2 {
	  font-size: 50px;
	  line-height: 45px;
	  z-index: 999;
	  position: absolute;
	  text-align: center;
	  top: -90px;
	  margin-left: 75px;
	}

	.service-video img {
	  width: 100%;
	  height: auto;
	  float: unset;
	  margin-left: 0px;
	}
	.red-btn {
	  margin-left: 14px;
	}
	.animation-3d {
	  position: relative;
	  top: -54px;
	}
	.mobile{
	  display: block;
	}
	.desktop{
	  display: none;
	}
	.animate {
	  display: block;
	  position: relative;
	  top: 20px;
	}
	.no-gutters1{
	  display: none;
	}
	.marking-top h3 {
	  	font-size: 35px;
		line-height: 32px;
		color: #050609;
		font-weight: 500;
		font-family: "Poppins";
	  margin-left: 10px;
    letter-spacing: 0px;
	}
	.animation-3d p {
	  margin-left: 18px;
	  font-size: 17px;
	line-height: 28px;
	color: #050609;
	font-weight: 300;
	}
  .section-title p {
    font-size: 17px;
    line-height: 28px;
  }
.service-video {
  margin-top: -51px;
  margin-left: 0px;
}
.latest-work {
  background: linear-gradient(to top, #f3f3f3 70%, #ffffff 60%);
  padding-top: 0px;
}
.animate-video-bg img{width: 100%;}
.latest-work .section-title h2 {
  font-size: 41px;
  line-height: 46px;
  padding-bottom: 12px;
  padding-top: 14px;
}
.latest-work-box{
  padding-left: 26px;
}
.errow-character {
  top: 9px;
}
.errow-right-set {
  display: none;
}
.errow-left-set{
  display: none;
}
.errow-second-left {
    display: none;
} 
.errow-second-right{
      display: none;
} 
.production-left{
  display: none;
}
.objact-section {
  margin-top: 19px;
}
.script-char {
  top: 19px;
}
.voice-over {
  top: 41px;
}
.production-section {
  margin-top: 55px;
}
.character-creation h2 {
  font-size: 30px;
line-height: 44px;
color: #ffffff;
font-weight: 700;
font-family: "Poppins";
padding-right: 64px;
}   
.character-creation p{
  font-size: 17px;
line-height: 28px;
color: #ffffff;
font-weight: 300;
font-family: "Poppins";
}
.white-btn-radius {
 display: none;
}
.yellow-btn-radius {
  display: none;
}
.marketing-service-space {
  height: auto;
  background-color: #fff;
  padding-bottom: 0px;
  padding: 0px;
  margin-top: 30px;
}
.work-secter{
	height: 30px;
}
.work-secter .blue-btn {
    margin-top: 90px;
    margin-right: 0px;
    width: 100%;
    float: left;
    text-align: center;
}

.character-work {
  background-image: none;
}
.design-service-other {
  position: relative;
  top: -151px;
  padding-top: 25px;
}
.robot{
  display: block
}
.des-other{
  display: none;
}
.mob-other{
  font-size: 83px;
line-height: 126px;
color: #1c1c1c;
font-weight: 700;
font-family: "Montserrat", sans-serif;
display: block;
text-align: center;
}
.design-service-other h6 {
  float: right;
  padding-right: 37px;
}
.design-service-other h1 {
  padding: 0px 37px;
}
.other-btn-radius {
  border-radius: 36px;
  background-color: #353432;
  font-size: 15px;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 25px 50px;
  text-transform: uppercase;
  float: right;
  display: block;
  margin-right: 77px;
  margin-top: 50px;
}
.design_container{
  display: flex; flex-flow: column;
}
.five { order: 1; }
.four { order: 2;  }
.three { order: 3; }
.two { order: 4; }
.one { order: 5 }
.businesscard-title {
  font-size: 30px;
line-height: 38px;
color: #353432;
font-weight: 700;
font-family: "Poppins";
  padding: 35px 65px 9px 0px;
}
.ui_xi_set {
    margin-top: 0;
}
.design-service-other p {
  font-size: 17px;
line-height: 28px;
color: #353432;
font-weight: 400;
font-family: "Poppins";
}
.testimial-stev p {
    font-size: 17px;
    line-height: 28px;
}
.marking-top p {
    font-size: 17px;
    padding: 15px 7px 2px 0px;
 }
.green-btn-radius {
  margin-right: 72px;
  margin-top: 37px;
}
.logo-website-design {
  background-image: url(../img/marketing-service/Services-Mobile.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -151px;
}
.logo-design {
  position: relative;
    float: unset;
    left: -66px;
    top: 13px;
    width: 70%;
}
.businesscard-img {
    margin-top: 13px;
}
.mobile-sec{
  display: block;
}
.desktop-sec{
  display: none;
}
.website-title, .businesscard-errow {
  margin-left: 0px;
}
.website-design {
  position: relative;
  bottom: 0px;
  top: -55px;
    right: -9px;
    width: 70%;
    float: right;
    left: unset;
}
.testimonial-bg {
  background-image: url(../img/marketing-service/mobile-last.png);
  background-repeat: no-repeat;
  height: unset;
  position: relative;
  background-size: 100% 100%;
}
.testimial-stev {
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
  width: 91%;
  padding-right: 0px;
  padding-top: 247px;
padding-bottom: 100px;
margin-left: 36px;
}
.animate-video-bg .play-work-btn {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    display: none;
    position: absolute;
    left: calc(50% - 46px);
    top: calc(50% - 51px);
    overflow: hidden;
}
.animate-video-bg .play-work-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 47px solid #ffffffa8;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.animate-video-bg {
    margin-top: -125px;
    padding-bottom: 0px;
}
.animate-video-bg .icon{
 position: relative;
}
.client-testimonial{
	padding: 45px 0 40px 0px;
}
}
.center_footer_sec{
  text-align: center;
}
body.header-fixed-space{
	padding-top:0px !important;
  padding-right: 0px !important;
}
.email_serv .label{
  line-height: 3;
}
.blue_text{
  color: #3d9ddc;
}
.skydogg_blob_img{
    width: 100%;
    display: inline-block;
}
@media only screen and (max-width:330px) and (min-width: 318px){
    .red-btn{
      font-size: 17px;     
    }
    #marking-service h2{
      font-size: 45px;
      margin-left: 55px;
    }
    .logo-website-design h2{
      line-height: 64px;
      font-size: 60px;
    }
    .black-btn.black_btn_btn {
    padding: 11px 60px !important;
    font-size: 18px;
    }
    .content-writing-blog h1 {
    font-size: 38px;
    }
    .section-title h1 {
    font-size: 38px;
    line-height: 30px;
   }
   .section-title h3 {
    font-size: 24px;
    margin-right: 13px;
    margin-left: 20px;
  }
  .report-btn {
    font-size: 15px;
    padding: 14px 50px;
  }
  .analysis-seo h2 {
    line-height: 33px;
    font-size: 21px;
  }
  .analysis-seo .count-box span {
    font-size: 18px;
    line-height: 27px;
  }
  .title.slog-title, .normal-text.slog-text{
    margin-left: 0px;
  }
  .branding-logo p.normal-text{
    width: 100%;
  }
  .marketing-section{
    background-position: 51% 66%;
  }
  .btn-free {
    padding: 9px 11px;
    font-size: 14px;
  }
  .btn-more {
    padding: 9px 11px;
    font-size: 14px;
  }
  a.website-blog{
    margin-top: 14px;
  }
  a.cloud-blog, .marketing-blog{
    right: 0px;
    font-size: 18px;
  }
  .strategy-section h1{
    margin-top: 115px;
  }
  .branding-blog {
    margin-right: 30px;
  }
  .foot_site img {
    max-width: 100%;
    float: none;
    height: auto;
    max-height: inherit;
    margin: 0px;
    margin-bottom: -5px;
  }
  .foot_site li {
    margin: 0;
    line-height: 1;
    width: 48%;
    text-align: center;
 }
 .foot_site li:nth-child(1) {
    position: absolute;
    left: -24px;
    top: 40px;
    width: inherit;
 }
 #footer .copyright {
    font-size: 12px;
    color: #777777;
 }
 .from-subcriber .inline{
  font-size: 13px;
 }
 .audience-blog{
  width: 100%;
 }
 .keyword-seo-section{
  background-size: cover;
 }
 .content-writing-blog {
    margin-top: 0px;
 }
 .analysis-seo{
  padding-left: 0px;
    padding-right: 0px;
 }
 .analysis-seo .col-sm-2.text-center {
    width: 49%;
 }
 .from-subcriber .inline {
    padding: 0px 0px;
    margin-top: 6px;
    margin-left: -16px;
 }
 .foot_site{
  margin-left: 12px;
 }
}