/**
* Template Name: SMS
 */
 /* General */
 

@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Bold.woff2') format('woff2'),
        url('../fonts/PTSerif-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Italic.woff2') format('woff2'),
        url('../fonts/PTSerif-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-BoldItalic.woff2') format('woff2'),
        url('../fonts/PTSerif-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Regular.woff2') format('woff2'),
        url('../fonts/PTSerif-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body
 {
    margin: 0;
    font-family: 'PT Serif';
    font-size: 18px;
    line-height: 28px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
header {
	position:fixed;
    width: 100%;
    top: 0;
    z-index: 999;transition: all 0.3s ease;background: #fff;
}
.h1,h1,.h2,h2,.h3,h3,.h4,h4,.h5,h5,.h6,h6{
	font-family: 'PT Serif';margin-top: 0;
}
.h1,h1{font-size:36px;line-height: 40px;}
.h2, h2 {
    font-size: 32px;
    line-height: 40px;
}
.h3,h3{font-size:28px;line-height: 36px;}
.h4,h4{font-size:24px;line-height: 30px;}
.h5,h5{font-size:20px;line-height: 26px;}
.h6,h6{font-size:18px;line-height: 26px;}
h1.bannerHeading, h2.section-title {
    font-size: 54px;
    line-height: 65px;
}
.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 30px;
    
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo */
.logo a {
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    display: block;
}
.logo img {
    display: block;
    max-height: 50px;
}
/* Menu */
.menu ul.main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.menu ul li {
    position: relative;
    margin-left: 30px;
}
.menu ul li a {
    text-decoration: none;
    color: #20304f;
    font-size: 18px;
    padding: 25px 0;
    display: block;
}
/* Submenu */
.submenu {
    list-style: none;
    position: absolute;
    top: 82px;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s;
    padding-left: 0;
}
ul.submenu li {
    margin: 0;
}
ul.submenu li a {
    margin: 0;
    padding: 15px 15px;
    border-bottom: 1px solid #dadada;
}
.def-section {
    padding: 80px 0px;
}
.heroWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.heroWrapperCol {
    width: 48%;
}
.heroWrapperCol img {
    width: 100%;
}
.faq-container {
    margin: 0px auto 30px auto;
    font-family: Arial, sans-serif;
}

.faq-item {
  border: 1px solid #c5c4c4;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  transition: 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 500px; /* Large enough for content */
}
.dark-background {
    background: #141414;
    color: #fff;
}
section.hero-section {
    background: #e8e8e8;
}
a.def-button {
    padding: 15px 20px;
    display: block;
    background: #b2212b;
    color: #fff;
    text-decoration: none;
    width: fit-content;
    margin-top: 50px;text-align: center;
}
a.def-button:hover {
    background: #000000;
}
main.main {
    padding-top: 75px;min-height: calc(100vh - 75px);
}
.menu ul li a:hover {
    color: #bc2d3c;
}

.light-dark-background
 {
    background: #000;
    color: #ededed;
}
.marketingWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.marketingWrapperCol ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
}
.marketingWrapperCol ul li {
    background: #171717;
    width: 49%;
    padding: 15px 25px;
    box-sizing: border-box;
    font-size: 18px;
    min-height: 100px;
    display: flex;
    align-items: center;
}
.marketingWrapperCol ul li:hover {
    box-shadow: 0px 0px 6px #414141;
}
.alignCenter {
    text-align: center;
}
.selfCenter {
    margin: 50px auto 0 auto;
}
.lightGrey {
    background: #b2212b  !important;
    color: #ededed !important;
}
.lightGrey:hover {
    background: #171717 !important;
}
.steps-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;padding-top:10px;
}
.steps-inner-col {
    width: 32%;
}
.steps-inner-col img {
    max-height: 50px;
    margin-bottom: 10px;
}
.steps-inner-col h4 {
    margin-bottom: 0;
    font-size: 22px;
}
.steps-inner-col p {
    margin-bottom: 0;
    font-size: 19px;
}
.caseStudiesWrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
}
.caseStudiesWrapperCol {
    width: 49.5%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #c7c5c5;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
}
.caseImg {
    width: 35%;
}
.caseImg img {
    display: block;
    width: 100%;
}
.caseStudiesWrapperCol h4 {
    margin-bottom: 0;
}
.ourAgencyWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ourAgencyWrapperCol {
    width: 48%;
}
.ourAgencyWrapperCol ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.ourAgencyWrapperCol ul h4 {
    margin-bottom: 0;
}
.ourAgencyWrapperCol ul p {
    font-size: 18px;
    margin-top: 0px;
}
.ourAgencyWrapperCol img {
    width: 100%;
}
.ourAgencyWrapperCol h2 {
    font-size: 46px;
    margin-bottom: 30px;
}
.proven-wrap {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}
.about-founder-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.about-founder-col:nth-child(1) {
    width: 31%;
}
.about-founder-col:nth-child(1) img {
    width: 100%;
    border: 2px solid #e2e2e2;
}
.about-founder-col:nth-child(2) {
    width: 65%;
}
.padTop0{padding-top:0px;}
.padBottom0{padding-bottom:0px;}
.cta-container {
    display: flex;
    justify-content: space-around;
    align-items: center;gap: 10px;
}
.cta-container h2 {
    margin-bottom: 0;
}
.cta-container a.def-button {
    margin-top: 0;
}
ul.clientsImages {
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.customerSatisWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.customerSatisCol:nth-child(1) {
    width: 35%;
}
.customerSatisCol p {
    margin-bottom: 0;
}
.customerSatisCol:nth-child(2) {
    width: 60%;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    list-style: none;
}
ul.customerSatisCol li {
    text-align: center;
}
ul.customerSatisCol li h3 {
    font-size: 50px;
    margin-bottom: 30px;
}
.customerSatisCol p {
    margin-bottom: 0;
}
.clientTestimonialWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.test-content {
    width: 32%;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
}
.nameDesig h3 {
    font-size: 22px;
    color: #b2212b;
    margin-bottom: 0;
}
.nameDesig span {
    font-size: 16px;
}
.test-content p {
    font-size: 18px;
    line-height: 28px;
}
.footerCopy {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}
.footerCopyContent {
    display: flex;
    gap: 10px;
    font-size: 16px;
}
.footerCopyContent p {
    margin: 0;
}
.footerCopyContent ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding-left: 0;
    margin: 0;
}
.footerCopyContent ul li a {
    color: #fff;
    text-decoration: none;
}
.footerCopyContent ul li a:hover {
    color: #b5b5b5;
}
ul.footerFollow {
    padding-left: 0;
    list-style: none;
    display: flex;
    margin: 0;
    align-items: center;
    gap: 6px;
}
ul.footerFollow img {
    filter: brightness(0) invert(1);
    height: 30px;
}
section.caseStudies {
    background: #e8e8e8;
}
section.about-founder,section.faqs {
    background: #e8e8e8;
}
section.clientTestimonial {
    background: #e8e8e8;
}
.caseStudiesWrapperCol a {
    color: #000;
    text-decoration: none;
}
p.section-text {
    margin-top: 0;
}
section.seo-hero-section {
    background-image: url(../img/seo/SMS-SEO-Header.svg);
    background-size: cover;
    background-position: center left;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seoWrapper {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}
.artificial-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 15px;
}
.artificial-inner-col img {
    height: 60px;
    margin-bottom: 10px;
}
.artificial-inner-col h4 {
    margin-bottom: 20px;
}
p {
    margin-top: 0;
}
.artificial-inner-col {
    width: 23%;
}
.artificial-inner-col p {
    font-size: 18px;
    line-height: 26px;
}
.impressionsWrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.impressionsCol {
    width: 32%;
    text-align: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 1px 10px #ececec;
}
.impressionsCol span {
    font-size: 30px;
    display: block;
    margin-bottom: 12px;
}
.impressionsCol h4 {
    margin-bottom: 0;
    font-size: 22px;
}
section.impressions {
    background: #e8e8e8;
}
ul.seoLogosWrapper {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    row-gap: 8px;
}
ul.seoLogosWrapper li {
    width: 15.5%;
}
ul.seoLogosWrapper li img {
    width: 100%;
}
.mt-40{margin-top:40px;}
.SmartWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 60px;
}
.SmartWrapcol {
    background: #e8e8e8;
    width: 24%;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}
.SmartWrapcol img {
    height: 80px;
    width: auto;
}
.SmartWrapcol p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 23px;
}
.videoWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e8e8e8;
    margin-top: 50px;flex-wrap: wrap;
}
.videoWrapCol {
    width: 50%;
}
.videoWrapCol iframe {
    display: block;
}
.videoWrapCol:nth-child(2) {
    padding: 50px 20px;
    text-align: center;
}
.videoWrapCol:nth-child(2) p {
    font-size: 20px;
    line-height: 30px;
}
.rightImgWrapper,.leftImgWrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.rightImgCol,.leftImgcol {
    width: 48%;
}
.rightImgCol img,.leftImgcol img {
    width: 100%;
}
.rightImgCol p,.leftImgcol p {
    font-size: 18px;
    line-height: 26px;
}
.rightImg .rightImgWrapper {
    flex-direction: row-reverse;
}
.leftImgcol ul li,.rightImgCol ul li {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 26px;
}
.pt-0{padding-top:0px !important}
ul.keywordsResearch {
    padding-left: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
ul.keywordsResearch li {
    width: 48%;
}
section.default-banner img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
}
section.default-banner {
    position: relative;
    text-align: center;
    color: #000000;
    background: #d6d6d6;
}

.banner-content h1 {
    margin-bottom: 0;
}
.Strategy-inner {
    display: flex;
    flex-direction: column;
    row-gap: 20px;    margin-bottom: 40px;margin-top:40px;
}
.StraDtegy-inner-col {
    display: flex;
    align-items: center;
    gap: 20px;
}
.StraDtegy-inner-col img {
    width: 80px;
    height: auto;
    box-shadow: 0px 1px 10px #d3d3d3;
    border-radius: 10px;
    padding: 10px;
}
.StraDtegy-content h4 {
    font-size: 22px;
    margin-bottom: 5px;
}
.StraDtegy-content p {
    font-size: 20px;
    margin-bottom: 0;
}
.custom-test-wrapper {
    column-count: 3;
}
.custom-test-inner {
    margin: 0;
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.testimonial-content {
    background: #f4f4f4;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 45px;
    color: #3f3f3f;
    box-shadow: 0px 0px 4px #eff8f9;
    position: relative;
    font-size: 18px;
}
.test-header {
    display: flex;
    align-items: start;
    gap: 20px;
}
.test-header img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.test-header-col {
    padding-top: 10px;
}
.test-header-col h2 {
    text-transform: uppercase;
    font-size: 15px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: bold;
}
.test-header-col span {
    display: block;
    font-size: 13px;
    font-style: italic;
    color: #000;
}
.case-study-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.study-col {
    width: 31.7%;
    margin-bottom: 40px;
}
.study-image img {
    object-fit: cover;
    height: 280px;
    border-radius: 4px;
    width: 100%;
}
.study-col h3 {
    font-size: 20px !important;
    margin-top: 10px;
    line-height: 28px;
}
.study-col a {
    color: #000;
    text-decoration: none;
}
.study-col a:hover {
    color: #b21d28;
}
img.featuredImg {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;margin-bottom: 10px;
}
.studyInner {
    max-width: 1000px;
    margin: 0 auto;
}
/* Desktop hover */
@media (min-width: 1025px) {
    .has-submenu:hover .submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hamburger {
        display: none;
    }
}

/* MOBILE */
@media (max-width: 1300px) {
	h1.bannerHeading, h2.section-title {
    font-size: 40px;
    line-height: 55px;
}
body {
    font-size: 18px;
    line-height: 28px;
}
}

@media (max-width: 1024px) {
    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    .menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        border-top: 1px solid #ddd;
    }

    .menu.open {
        display: block;
    }

    .menu ul {
        flex-direction: column;
    }

    .menu ul li {
        margin-left: 0;
        border-bottom: 1px solid #eee;
    }

    .menu ul li a {
        padding: 15px 20px;
    }

    /* Mobile submenu */
    .submenu {
        position: relative;
        top: 0;
        box-shadow: none;
        background: #fafafa;
        border-left: 3px solid #9e202e;
        transform: translateY(0);
    }

    .has-submenu.open .submenu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .arrow {
        float: right;
        transition: 0.3s;
    }

    .has-submenu.open .arrow {
        transform: rotate(180deg);
    }
	.heroWrapperCol {
    width: 100%;
}
.heroWrapper {
    row-gap: 30px;
}
.def-section {
    padding: 60px 0px;
}
.ourAgencyWrapperCol
 {
    width: 100%;
}
.ourAgencyWrapper {
    row-gap: 20px;
}
h2.section-title {
    margin-bottom: 20px;
}
ul.clientsImages img {
    height: 100px;
    width: auto;
}
.customerSatisCol:nth-child(1) {
    width: 100%;
}
.customerSatisCol:nth-child(2) {
    width: 100%;
}
.customerSatisWrap{
    row-gap: 30px;
}
.test-content {
    width: 100%;
}
.clientTestimonialWrap {
    row-gap: 30px;
}
.header-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
}
.artificial-inner-col {
    width: 48%;
}
ul.seoLogosWrapper li {
    width: 24.5%;
}
.SmartWrapcol {
   width: 48%;
}
.videoWrapCol {
    width: 100%;
}
.rightImgCol, .leftImgcol {
    width: 100%;
}
.rightImgWrapper, .leftImgWrapper {
    row-gap: 20px;
}

}
@media (max-width: 768px) {
	
	    h1.bannerHeading, h2.section-title {
        font-size: 36px;
        line-height: 45px;
    }
	.marketingWrapperCol ul li {
    width: 100%;
}
.steps-inner-col {
    width: 100%;
}
.steps-inner {
    row-gap: 40px;
}
.caseStudiesWrapperCol {
    width: 100%;
}
.caseStudiesWrapperCol a h4 {
    font-size: 20px;
}
.about-founder-col:nth-child(1) {
    width: 100%;
}
.about-founder-col:nth-child(2) {
    width: 100%;
}
.about-founder-wrap {
    row-gap: 20px;    max-width: 500px;
    margin: 0 auto;
}
    ul.clientsImages img {
        height: 90px;
        width: auto;
    }
	.footerCopy {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}
.impressionsCol {
    width: 100%;
}
.impressionsWrapper {
    flex-wrap: wrap;
    row-gap: 10px;
}
    ul.seoLogosWrapper li {
        width: 32.5%;
    }
	    .def-section {
        padding: 40px 0px;
    }
	    .custom-test-wrapper {
        column-count: 2;
    }
	    .study-col {
        width: 48%;
        margin-bottom: 30px;
    }
}
@media (max-width: 640px) {
ul.clientsImages {
    flex-wrap: wrap;
}
ul.clientsImages li {
    width: 31%;
    text-align: center;
}
    ul.clientsImages img {
        height: auto !important;
        width: 100% !important;
    }
	.cta-container {
    flex-direction: column;
    row-gap: 30px;
}
.cta-container h2 {
    margin-bottom: 0;
    text-align: center;
}
    .customerSatisCol:nth-child(1) {
        text-align: center;
    }
	.customerSatisCol h2 {
    margin-bottom: 0;
}
.footerCopyContent {
    flex-direction: column;
    align-items: center;
}
.container {
    padding: 0 15px;
}
    .artificial-inner-col {
        width: 100%;text-align: center;
    }
	.artificial-inner {
    row-gap: 20px;
}
    .SmartWrapcol {
        width: 100%;
    }
	    .custom-test-wrapper {
        column-count: 1;
    }
	.study-col {
        width: 100%;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .customerSatisCol:nth-child(2) {
        width: 100%;
        flex-wrap: wrap;        row-gap: 30px;
    }
	ul.customerSatisCol li {
    text-align: center;
    width: 100%;
}
    ul.clientsImages li {
        width: 48.5%;
    }
	ul.keywordsResearch li {
    width: 100%;
}
    ul.seoLogosWrapper li {
        width: 49%;
    }
    }