/*
Theme Name: PCA
Author: Nitish Jaswal
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
@import url("./fonts/geomanist/geomanist.css");
@import url("./fonts/gillsans/gillsans.css");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600");
html.mm-wrapper_opened {
  margin-top: 0 !important;
}
html.mm-wrapper_opened body.admin-bar .site-wrapper {
  padding-top: 32px;
}

body {
  color: #1C142E;
}

.section-padding {
  padding: 100px 0;
}

h1 {
  font-family: "GeomanistMedium";
  font-size: 70px;
  line-height: 1;
}

h2 {
  font-family: "GeomanistMedium";
  font-size: 60px;
  line-height: 1;
}

h3 {
  font-family: "GeomanistMedium";
  font-size: 30px;
  line-height: 1;
}

h4 {
  font-family: "GeomanistMedium";
  font-size: 20px;
  line-height: 1;
}

p {
  font-family: "GeomanistLight";
  font-size: 18px;
  color: #1C142E;
  opacity: 0.9;
}

.site-navigator {
  padding: 0;
  margin: 0;
  width: fit-content;
  position: fixed;
  top: 50%;
  right: 30px;
  list-style: none;
  transform: translateY(-50%);
}
.site-navigator > li {
  margin-bottom: 5px;
}
.site-navigator > li > a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ddd;
  transition: 0.3s;
}
.site-navigator > li > a.active {
  background-color: #FF7F00;
  border: 1px solid #FF7F00;
}
.site-navigator:before {
  content: "";
  background: url(./images/icon-nav-up.svg);
  position: absolute;
  width: 14px;
  height: 8px;
  top: -17px;
  z-index: 999;
  background-size: 100%;
  background-repeat: no-repeat;
  left: -2px;
}
.site-navigator:after {
  content: "";
  background: url(./images/icon-nav-down.svg);
  position: absolute;
  width: 14px;
  height: 8px;
  bottom: -15px;
  z-index: 999;
  background-size: 100%;
  background-repeat: no-repeat;
  left: -2px;
}

.btn {
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 50px;
  font-family: "GeomanistBook";
}
.btn.btn-primary {
  background-color: #FF7F00;
  border-color: #FF7F00;
}
.btn.btn-primary:active {
  background-color: #FF7F00 !important;
  border-color: #FF7F00 !important;
}
.btn.btn-primary:focus {
  box-shadow: none;
}
.btn.btn-primary:hover {
  background-color: #f77b00;
  border-color: #f77b00;
}
.btn.btn-secondary {
  background-color: #EBEBEB;
  border-color: #EBEBEB;
  color: #6C6C6C;
}
.btn.btn-secondary:active {
  background-color: #EBEBEB !important;
  border-color: #EBEBEB !important;
}
.btn.btn-secondary:focus {
  box-shadow: none;
}
.btn.btn-secondary:hover {
  background-color: #E8E8E8;
  border-color: #E8E8E8;
}
.btn.btn-arrow {
  position: relative;
  padding-right: 45px;
}
.btn.btn-arrow:after {
  content: "";
  background-image: url(./images/icon-arrow-fwd-white.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 100%;
  top: 9px;
  right: 15px;
}
.btn.btn-cta {
  font-size: 24px;
  padding-left: 50px;
  padding-right: 50px;
}
.btn.btn-lg {
  padding-left: 35px;
  padding-right: 35px;
}
.btn.btn-call {
  position: relative;
  padding-left: 60px;
}
.btn.btn-call:after {
  content: "";
  background-image: url(./images/icon-call-cta.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 100%;
  top: 12px;
  left: 25px;
}
.btn.btn-shadow {
  box-shadow: 0px 2px 15px 1px rgba(255, 127, 0, 0.4);
}

.pre-title {
  font-size: 14px;
  font-family: "GeomanistBook";
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
  padding-left: 50px;
}
.pre-title:before {
  content: "";
  border-top: 1px solid #fff;
  width: 40px;
  position: absolute;
  left: 0;
  top: 9px;
}
.pre-title.dark {
  color: #2A2B31;
}
.pre-title.dark:before {
  border-color: #2A2B31;
}

.title-description {
  font-family: "GeomanistRegular";
  font-size: 26px;
  line-height: 1.2;
}

.section-border {
  position: relative;
}
.section-border:after {
  content: "";
  border-bottom: 1px solid #F0F0F0;
  position: absolute;
  max-width: 1140px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.banner-spacer {
  height: 50px;
}

.form-group label {
  font-family: "GeomanistRegular";
  color: #1C142E;
  font-size: 18px;
}
.form-group label .astrix {
  color: #FF7F00;
}
.form-group .form-control {
  box-shadow: none;
  border: 1px solid #E2E2E2;
  padding: 10px 15px;
  height: auto;
}
.form-group .form-control:focus {
  border-color: #FF7F00;
}
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(./images/icon-dropdown.svg);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: 15px;
}

a {
  color: #6A92EB;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

header {
  background-image: url("./images/header-bg.png");
  background-size: cover;
  position: relative;
}
header .navbar {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
header .navbar .navbar-nav {
  margin-right: 50px;
}
header .navbar .navbar-nav .nav-item > .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
header .navbar .navbar-nav .nav-item > .nav-link:hover {
  color: #FF7F00;
}
header .navbar .navbar-nav .dropdown-item:active {
  background-color: #ff7f00;
}
header .navbar .navbar-brand > img {
  max-width: 200px;
}
header .navbar .social-links {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-right: 30px;
}
header .navbar .social-links > li {
  margin-right: 20px;
}
header .navbar .social-links > li:last-child {
  margin-right: 0;
}
header .navbar .social-links > li img {
  position: relative;
  top: -2px;
}
header .navbar .menu-item-has-children:hover .dropdown-menu {
  display: block;
}
header .navbar #nav-toggler {
  margin-left: 20px;
}
header:before {
  content: "";
  background-image: url(./images/top-circles.png);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position-y: -40px;
  background-position-x: -20px;
  background-size: 100%;
  background-repeat: no-repeat;
}
header.seo:before {
  background-image: url(./images/top-circles-seo.png);
  background-size: 100% auto;
  background-position: 0;
}
header.website-development:before {
  background-image: url(./images/top-circles-web-dev.png);
  background-size: 100% auto;
  background-position: 0 0;
}
header.home:after {
  content: "";
  background-image: url(./images/top-circles-blue.png);
  position: absolute;
  width: 100%;
  height: 150px;
  background-size: 100%;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  background-position: 100px;
  transform: translateY(45%);
  z-index: 0;
}
header.contact:before {
  background-image: url(./images/top-circles-contact.png);
  background-position-y: -50px;
  background-position-x: -35px;
}
header.contact:after {
  content: "";
  background-image: url(./images/top-circles-contact-after.png);
  position: absolute;
  width: 100%;
  height: 250px;
  background-size: 100%;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  background-position: 100px;
  transform: translateY(45%);
  z-index: 0;
}
header.smm:before {
  background-image: url(./images/top-circles-smm.png);
  background-position-x: 140px;
}
header.smm:after {
  content: "";
  background-image: url(./images/top-circles-smm-after.png);
  position: absolute;
  width: 100%;
  height: 150px;
  background-size: 100%;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  background-position: 100px;
  transform: translateY(50%);
  z-index: 0;
}
header.blog:before {
  background-image: url(./images/top-circles-blog.png);
  background-position-x: 80px;
  background-position-y: -70px;
}
header.blog:after {
  content: "";
  background-image: url(./images/top-circles-blog-after.png);
  position: absolute;
  width: 100%;
  height: 150px;
  background-size: 100%;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  background-position: -40px;
  transform: translateY(50%);
  z-index: 0;
}
header .btn-call-header > img {
  position: relative;
  top: -1px;
  margin-right: 10px;
}
header.inner {
  height: 250px;
}
header.inner:before {
  /*background-color: rgba(13, 0, 54, 0.5);*/
  background-position-y: calc(100% - 20px);
}
header.inner #banner .banner-content {
  margin-top: 60px;
}

main.home {
  background-image: url(./images/home-bg.png);
  background-size: calc(100% + 80px);
  background-repeat: no-repeat;
  background-position-y: 50px;
  background-position-x: -50px;
}

#banner #smm-form .form-control, #banner #seo-form .form-control {
  padding: 10px 25px 10px 25px;
  height: auto;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  font-family: "GeomanistRegular";
  font-size: 18px;
  box-shadow: none;
}
#banner #smm-form .form-control::placeholder, #banner #seo-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

#banner #smm-form, #banner #seo-form {
  position: relative;
  z-index: 9;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

#banner .banner-content {
  margin-top: 120px;
}
#banner .banner-content .baner-actions {
  margin-top: 60px;
}
#banner .banner-content .banner-right-img {
  text-align: right;
}
#banner .banner-content .banner-right-img > img {
  max-width: 80%;
}
#banner .banner-content h1 {
  line-height: 0.8;
}
#banner .banner-content h1 > span {
  font-size: 50px;
  font-family: "GeomanistBook";
}
#banner .banner-content > p {
  font-family: "GeomanistRegular";
  font-size: 28px;
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
#banner .arrow-down {
  text-align: center;
  padding: 25px 0 85px;
  z-index: 99;
  position: relative;
}
#banner .arrow-down img {
  max-width: 50px;
}
#banner #seo-form {
  margin-bottom: 5rem;
}
#banner #seo-form .form-control {
  padding-right: 160px;
}
#banner #seo-form .btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 45px;
  font-family: "GeomanistBook";
  font-size: 18px;
}
#banner #smm-form {
  display: flex;
  margin-bottom: 80px;
}
#banner #smm-form .form-control {
  margin-right: 10px;
}
#banner #smm-form .btn {
  padding: 10px 45px;
  font-family: "GeomanistBook";
  font-size: 18px;
}

#section-foundation .our-process {
  margin-top: 40px;
}
#section-foundation .our-process > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
#section-foundation .our-process > ul > li {
  flex: 0 0 20%;
  text-align: center;
  cursor: pointer;
}
#section-foundation .our-process > ul > li > div {
  border: 2px solid #E6E7E8;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 40px;
  background: #fff;
}
#section-foundation .our-process > ul > li:hover > div {
  background-color: #A901EF;
  border-color: #A901EF;
}
#section-foundation .our-process > ul > li:hover > div svg path {
  fill: #fff;
}

#section-care .features-care {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
#section-care .features-care > li {
  flex: 0 0 45%;
}
#section-care .features-care > li > img {
  margin-bottom: 30px;
}

#section-thrive .thrive-content h3 {
  font-size: 26px;
}
#section-thrive .thrive-bar {
  border-radius: 50px;
  background-color: #dddddd;
  margin-bottom: 35px;
}
#section-thrive .thrive-bar.level-four {
  height: 50px;
  margin-top: 20px;
}
#section-thrive .thrive-bar.level-three {
  height: 40px;
  margin-top: 30px;
}
#section-thrive .thrive-bar.level-two {
  height: 30px;
  margin-top: 40px;
}
#section-thrive .thrive-bar.level-one {
  height: 20px;
  margin-top: 50px;
}

#section-about-us {
  background-color: #260050;
  font-family: "GeomanistRegular";
  background-image: url(./images/about-bg.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 30px;
  position: relative;
}
#section-about-us .txt-lg {
  font-size: 28px;
}
#section-about-us .about-us-content-box {
  margin-bottom: 50px;
}
#section-about-us .about-us-content-box p {
  opacity: 0.6;
  margin-bottom: 0;
  font-size: 16px;
}
#section-about-us .about-us-content-box:last-child {
  margin-bottom: 0;
}
#section-about-us .btn-cta-call > img {
  height: 20px;
  margin-right: 10px;
  position: relative;
  top: -2px;
}
#section-about-us:before {
  content: "";
  background-image: url(./images/about-us-before.png);
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
#section-about-us:after {
  content: "";
  background-image: url(./images/about-us-after.png);
  position: absolute;
  width: 100%;
  height: 150px;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

#section-testimonials {
  background-color: #F9F9F9;
}
#section-testimonials #testimonialSlider .carousel-indicators {
  bottom: -10px;
  z-index: 99;
}
#section-testimonials #testimonialSlider .carousel-indicators > li {
  width: 8px;
  height: 8px;
  background-color: #E2E2E2;
  border-radius: 50%;
}
#section-testimonials #testimonialSlider .carousel-indicators > li.active {
  background-color: #FF7F00;
}
#section-testimonials #testimonialSlider .testimonial-block {
  text-align: center;
}
#section-testimonials #testimonialSlider .testimonial-block > img {
  border-radius: 50%;
  border: 5px solid #F2F2F2;
  margin-bottom: 20px;
}
#section-testimonials #testimonialSlider .testimonial-block .author > span {
  display: block;
  line-height: 1;
}
#section-testimonials #testimonialSlider .testimonial-block .author > span.author-name {
  font-family: "GillSansMedium";
  font-size: 22px;
}
#section-testimonials #testimonialSlider .testimonial-block .author > span.author-designation {
  font-family: "GillSans";
  font-size: 16px;
}
#section-testimonials #testimonialSlider .testimonial-block > p {
  margin-top: 20px;
  font-size: 28px;
  line-height: 1.2;
  position: relative;
  margin-bottom: 55px;
}
#section-testimonials #testimonialSlider .testimonial-block > p:before {
  content: "";
  background-image: url(./images/icon-quote-left.svg);
  position: absolute;
  width: 45px;
  height: 36px;
  left: 0;
  top: -55px;
  background-repeat: no-repeat;
}
#section-testimonials #testimonialSlider .testimonial-block > p:after {
  content: "";
  background-image: url(./images/icon-quote-right.svg);
  position: absolute;
  width: 45px;
  height: 36px;
  right: 0;
  bottom: -50px;
}

footer h2 {
  font-family: "GeomanistBook";
  font-size: 50px;
  color: #2A2B31;
  margin-bottom: 3rem;
}
footer h2 > span {
  display: block;
  font-size: 20px;
  opacity: 0.6;
}
footer .contact-form .btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
footer .contact-form .form-group {
  margin-bottom: 2rem;
}
footer .contact-form .form-group .form-control {
  font-family: "GeomanistLight";
  font-size: 18px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #1c142e2e;
  padding-left: 0;
  padding-right: 0;
  color: #1C142E;
}
footer .contact-form .form-group .form-control:focus {
  box-shadow: none;
}
footer .contact-form .form-group .form-control::placeholder {
  color: #1c142e87;
}
footer .contact-form .form-group textarea {
  resize: none;
  height: 100px;
}
footer .contact-form label {
  color: #1c142e87;
}
footer .contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .contact-details > li {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}
footer .contact-details > li > a {
  color: #1C142E;
  text-decoration: none;
  font-family: "GeomanistRegular";
  font-size: 20px;
  display: block;
  line-height: 1;
}
footer .contact-details > li > img {
  margin-right: 20px;
}
footer .contact-details > li.social-link > a {
  border-bottom: 1px solid #1c142e2e;
  padding-bottom: 5px;
}
footer .footer-extra {
  border-top: 1px solid #1c142e14;
  margin-top: 60px;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
footer .footer-extra .copyright {
  font-size: 20px;
  margin: 0;
}
footer .footer-extra .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
footer .footer-extra .footer-menu > li {
  margin-right: 30px;
}
footer .footer-extra .footer-menu > li:last-child {
  margin-right: 0;
}
footer .footer-extra .footer-menu > li > a {
  color: #1c142e87;
  text-decoration: none;
  font-family: "GeomanistLight";
  font-size: 18px;
}

#seo-features .features-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}
#seo-features .features-list > li {
  flex: 0 0 31%;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  padding: 35px;
  margin-bottom: 1.8rem;
}
#seo-features .features-list > li .seo-feature-card > p {
  margin-bottom: 0;
  font-family: "GeomanistRegular";
}
#seo-features .features-list > li .seo-feature-card > h3 {
  margin: 30px 0 20px;
}

#seo-experts .experts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}
#seo-experts .experts-list > li {
  flex: 0 0 45%;
}
#seo-experts .experts-list > li .expert-card {
  display: flex;
  align-items: flex-start;
}
#seo-experts .experts-list > li .expert-card > img {
  margin-right: 1rem;
}
#seo-experts .experts-list > li .expert-card p {
  font-family: "GeomanistRegular";
  color: #1C142E;
  opacity: 0.6;
  font-size: 16px;
}

#seo-pricing .seo-packages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4rem;
}
#seo-pricing .seo-packages > li {
  background-color: #fff;
  padding: 50px;
  flex: 0 0 30%;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
#seo-pricing .seo-packages > li > .price {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 20px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#seo-pricing .seo-packages > li > .price > .price-text {
  font-family: "GeomanistRegular";
  font-size: 16px;
  color: #fff;
}
#seo-pricing .seo-packages > li > .price > .price-value {
  font-family: "GeomanistBook";
  display: flex;
  align-items: flex-start;
  color: #fff;
  justify-content: center;
  margin-top: 2px;
  /*margin-left: 8px;*/
}
#seo-pricing .seo-packages > li > .price > .price-value > .amt {
  font-size: 45px;
}
#seo-pricing .seo-packages > li > .price > .price-value > .sym {
  align-self: center;
  font-size: 24px;
  margin-right: 2px;
}
#seo-pricing .seo-packages > li > .price > .price-value > .fraction {
  font-size: 20px;
}
#seo-pricing .seo-packages > li > h4 {
  font-size: 24px;
  margin-top: 2rem;
}
#seo-pricing .seo-packages > li > .features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
#seo-pricing .seo-packages > li > .features > li {
  font-family: GeomanistRegular;
  font-size: 18px;
  opacity: 0.6;
  margin-bottom: 5px;
  position: relative;
  padding-left: 40px;
  text-align: left;
}
#seo-pricing .seo-packages > li > .features > li:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  left: 5px;
  top: 8px;
}
#seo-pricing .seo-packages > li > .btn {
  margin-top: 2rem;
  width: 100%;
  color: #fff;
  padding: 8px 25px;
}
#seo-pricing .seo-packages > li:after {
  content: "";
  height: 2px;
  width: 80%;
  bottom: 0;
  left: 10%;
  position: absolute;
}
#seo-pricing .seo-packages > li.cyan {
  box-shadow: 0px 2px 14px 1px rgba(152, 237, 221, 0.2);
}
#seo-pricing .seo-packages > li.cyan > .price {
  background: #31DBBC;
}
#seo-pricing .seo-packages > li.cyan > h4 {
  color: #31DBBC;
}
#seo-pricing .seo-packages > li.cyan > .btn {
  background: #31DBBC;
  border-color: #31DBBC;
}
#seo-pricing .seo-packages > li.cyan:after {
  background: #31DBBC;
}
#seo-pricing .seo-packages > li.cyan > .features li:before {
  background-image: url(./images/check-cyan.svg);
}
#seo-pricing .seo-packages > li.purple {
  box-shadow: 0px 2px 14px 1px rgba(172, 167, 252, 0.2);
}
#seo-pricing .seo-packages > li.purple > .price {
  background: #aca7fc;
}
#seo-pricing .seo-packages > li.purple > h4 {
  color: #aca7fc;
}
#seo-pricing .seo-packages > li.purple > .btn {
  background: #aca7fc;
  border-color: #aca7fc;
}
#seo-pricing .seo-packages > li.purple:after {
  background: #aca7fc;
}
#seo-pricing .seo-packages > li.purple > .features li:before {
  background-image: url(./images/check-purple.svg);
}
#seo-pricing .seo-packages > li.orange {
  box-shadow: 0px 2px 14px 1px rgba(255, 210, 103, 0.2);
}
#seo-pricing .seo-packages > li.orange > .price {
  background: #FFD267;
}
#seo-pricing .seo-packages > li.orange > h4 {
  color: #FFD267;
}
#seo-pricing .seo-packages > li.orange > .btn {
  background: #FFD267;
  border-color: #FFD267;
}
#seo-pricing .seo-packages > li.orange:after {
  background: #FFD267;
}
#seo-pricing .seo-packages > li.orange > .features li:before {
  background-image: url(./images/check-orange.svg);
}

#seo-testimonials .img-char-testimonial {
  margin-top: 4rem;
  max-width: 100%;
}

#testimonial-still {
  padding-left: 60px;
  position: relative;
}
#testimonial-still.space-top {
  margin-top: 5rem;
}
#testimonial-still > p {
  font-family: GeomanistRegular;
  font-size: 18px;
  line-height: 1.5;
}
#testimonial-still .testimonial-author {
  display: flex;
  line-height: 1.2;
  align-items: center;
  margin-top: 2.5rem;
}
#testimonial-still .testimonial-author > img {
  max-width: 60px;
  height: auto;
}
#testimonial-still .testimonial-author > .author-bio {
  margin-left: 1.5rem;
}
#testimonial-still .testimonial-author > .author-bio > span {
  display: block;
}
#testimonial-still .testimonial-author > .author-bio > span.author-name {
  font-family: "GeomanistMedium";
  font-size: 26px;
}
#testimonial-still .testimonial-author > .author-bio > span.author-designation {
  font-family: "GeomanistRegular";
  font-size: 16px;
}
#testimonial-still:before {
  content: "";
  background-image: url(./images/icon-quote-left.svg);
  position: absolute;
  width: 40px;
  height: 35px;
  left: 0;
  top: -25px;
  background-repeat: no-repeat;
  background-size: 100%;
}
#testimonial-still:after {
  content: "";
  background-image: url(./images/icon-quote-right.svg);
  position: absolute;
  width: 40px;
  height: 35px;
  right: 0;
  bottom: 25px;
  background-size: 100%;
  background-repeat: no-repeat;
}

#our-experience p {
  font-family: "GeomanistRegular";
  font-size: 24px;
}
#our-experience .img-char-our-experience {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}
#our-experience .our-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4rem;
}
#our-experience .our-services > li {
  flex: 0 0 31%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfb;
  border-radius: 10px;
  padding: 30px;
}
#our-experience .our-services > li h4 {
  font-size: 26px;
  margin-bottom: 0;
  text-align: center;
  margin-top: 1.2rem;
}
#our-experience .our-services > li p {
  font-family: "GeomanistLight";
  font-size: 16px;
  text-align: center;
  margin-bottom: 0;
  margin-top: 1.2rem;
}
#our-experience .our-services > li > .service-card > .service-img {
  background-color: #F8F8F8;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
}
#our-experience .our-services > li > .service-card > .service-img > img {
  max-width: 100%;
}
#our-experience .our-services > li.highlighted {
  background-image: url(./images/bg-pink-gradient.png);
  background-size: cover;
  position: relative;
}
#our-experience .our-services > li.highlighted > .service-card-highlighted > .service-img {
  text-align: center;
}
#our-experience .our-services > li.highlighted > .service-card-highlighted h4 {
  color: #ffffff;
}
#our-experience .our-services > li.highlighted > .service-card-highlighted p {
  color: #ffffff;
}
#our-experience .our-services > li.highlighted:after {
  content: "";
  background-image: url(./images/pink-shadow.png);
  position: absolute;
  bottom: -50px;
  height: 305px;
  left: 0;
  width: 100%;
  z-index: -2;
  background-size: 120%;
  background-position: center -65px;
}

#how-we-work-web .web-development-steps {
  max-width: 900px;
  margin: 5rem auto 0;
}
#how-we-work-web .web-development-steps > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}
#how-we-work-web .web-development-steps > div > img {
  width: 25%;
}
#how-we-work-web .web-development-steps > div > .step-content {
  width: 70%;
}
#how-we-work-web .web-development-steps > div:last-child {
  margin-bottom: 0;
}

#recent-projects {
  background-image: url(./images/project-bg.png);
  background-size: 85%;
  background-position: center 150px;
  background-repeat: no-repeat;
}
#recent-projects .project-card {
  background-color: #F9F9F9;
  padding: 100px 70px;
  padding-right: 0px;
  border-radius: 20px;
  padding-bottom: 0px;
  overflow: hidden;
  margin-top: 4rem;
}
#recent-projects .project-card p {
  font-family: "GeomanistRegular";
  font-size: 18px;
  margin-top: 1rem;
}
#recent-projects .project-card .mac-frame {
  position: relative;
}
#recent-projects .project-card .mac-frame > img {
  padding-bottom: 150px;
  max-width: 115%;
}
#recent-projects .project-card .mac-frame:before {
  content: "";
  background-image: url(./images/mac-frame.png);
  position: absolute;
  width: calc(100% + 226px);
  height: calc(100% + 42px);
  top: -28px;
  left: -145px;
  background-size: 101%;
  background-repeat: no-repeat;
}
#recent-projects .project-card .carousel-control-prev,
#recent-projects .project-card .carousel-control-next {
  width: 20px;
  height: 20px;
  bottom: -100px;
  top: auto;
}
#recent-projects .project-card .carousel-control-next {
  left: 30px;
}
#recent-projects .project-card .carousel-control-prev-icon {
  background-image: url(./images/icon-slide-left-black.svg);
}
#recent-projects .project-card .carousel-control-next-icon {
  background-image: url(./images/icon-slide-right-black.svg);
}
#recent-projects .project-card .carousel-indicators {
  top: auto;
  bottom: -95px;
  margin-bottom: 0;
  justify-content: flex-start;
  margin-left: 0;
  margin-right: 0;
  left: 70px;
}
#recent-projects .project-card .carousel-indicators > li {
  background: #E4E4E4;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
}
#recent-projects .project-card .carousel-indicators > li.active {
  width: 12px;
  background: #000;
  border-radius: 5px;
}

#call-us-cta p {
  color: #767281;
  font-family: "GeomanistRegular";
  font-size: 22px;
  opacity: 0.5;
}

#contact-form form {
  margin-top: 4rem;
}
#contact-form form textarea {
  height: 150px;
  resize: none;
}

.map-wrapper {
  margin-top: 5rem;
  position: relative;
  border: 8px solid #F4F4F4;
  border-radius: 10px;
  overflow: hidden;
}
.map-wrapper #map {
  height: 300px;
}
.map-wrapper .location-card {
  /*background-image: url(./images/bg-purple-gradient.png);*/
  background-color: #7C53F2;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 20px 50px;
  border-radius: 10px;
  color: #fff;
}
.map-wrapper .location-card > img {
  width: 20px;
}
.map-wrapper .location-card > h3 {
  margin-top: 15px;
  font-size: 26px;
}
.map-wrapper .location-card .address {
  margin-bottom: 20px;
}
.map-wrapper .location-card .address > p {
  color: #fff;
  font-family: "GeomanistRegular";
  margin: 0;
  opacity: 1;
  font-size: 16px;
}
.map-wrapper .location-card .address:last-child {
  margin-bottom: 0px;
}

#about-smm .img-char-smm {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}
#about-smm .card-smm-service {
  padding: 100px 80px;
  border-radius: 10px;
  background-color: #F9F9F9;
  position: relative;
  margin: 5rem 0 6rem;
  z-index: 1;
}
#about-smm .card-smm-service > h3 {
  line-height: 1.2;
}
#about-smm .card-smm-service > p {
  font-family: "GeomanistRegular";
  font-size: 18px;
  line-height: 1.5;
  opacity: 1;
}
#about-smm .card-smm-service:after {
  content: "";
  background-image: url(./images/bg-smm-card.png);
  position: absolute;
  width: calc(100% + 115px);
  height: calc(100% + 30px);
  left: -50px;
  top: -10px;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}

#portfolio .porfolio-list {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4rem;
}
#portfolio .porfolio-list > li {
  flex: 0 0 32%;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  overflow: hidden;
}
#portfolio .porfolio-list > li > img {
  width: 100%;
}

#smm-features .features-list {
  margin-top: 4rem;
}
#smm-features .features-list h3 {
  font-size: 28px;
  line-height: 1.2;
}
#smm-features .features-list .btn {
  margin-top: 1.5rem;
}

#cta {
  background: #7C53F2;
  padding: 40px 0;
}
#cta .cta-content {
  display: flex;
  justify-content: space-between;
}
#cta .cta-content h3 {
  color: #fff;
  margin: 0;
}

#blog-filters {
  padding: 50px 0;
}
#blog-filters #filter-form {
  position: relative;
  z-index: 9;
}
#blog-filters #filter-form .form-group {
  display: flex;
  justify-content: space-between;
}
#blog-filters #filter-form .form-group > .form-control {
  flex: 0 0 32%;
}
#blog-filters #filter-form .form-group select {
  background-color: rgba(226, 226, 226, 0.3);
}
#blog-filters .category-filter {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
#blog-filters .category-filter > li a {
  color: #1C142E;
  font-family: "GeomanistMedium";
  font-size: 18px;
  text-decoration: none;
}

#all-posts {
  padding-top: 50px;
}
#all-posts h3 {
  font-size: 40px;
}
#all-posts .archive-all-posts {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  flex-wrap: wrap;
}
#all-posts .archive-all-posts > .archive-post {
  flex: 0 0 30%;
  margin-bottom: 4rem;
}
#all-posts .archive-all-posts > .archive-post > a > img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
#all-posts .archive-all-posts > .archive-post > h3 {
  font-family: "GeomanistMedium";
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
}
#all-posts .archive-all-posts > .archive-post > h3 a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: inherit;
}
#all-posts .archive-all-posts > .archive-post > p {
  font-family: "GeomanistRegular";
  font-size: 18px;
}
#all-posts .archive-all-posts > .archive-post > .categories {
  font-family: "GeomanistMedium";
  font-size: 14px;
  color: #6A92EB;
  margin-top: 3rem;
}
#all-posts .archive-all-posts > .archive-post > .meta {
  border-top: 1px solid #E8E8E8;
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
}
#all-posts .archive-all-posts > .archive-post > .meta > a,
#all-posts .archive-all-posts > .archive-post > .meta > div {
  color: #1C142E;
  font-size: 16px;
  font-family: "GeomanistRegular";
  display: flex;
  align-items: center;
}
#all-posts .archive-all-posts > .archive-post > .meta > a > img,
#all-posts .archive-all-posts > .archive-post > .meta > div > img {
  margin-right: 8px;
}
#all-posts .archive-all-posts > .archive-post > .meta .share {
  position: relative;
  cursor: pointer;
}
#all-posts .archive-all-posts > .archive-post > .meta .share > .addtoany_shortcode {
  position: absolute;
  right: 62px;
  width: 165px;
  text-align: right;
  top: -3px;
  display: none;
}

#blog-post {
  padding-bottom: 50px;
}
#blog-post .post-title {
  position: relative;
  padding-right: 70px;
}
#blog-post .post-title h1 {
  font-size: 50px;
}
#blog-post .post-title .share {
  position: absolute;
  top: 10px;
  right: 0;
  padding-bottom: 8px;
}
#blog-post .post-title .share > a {
  font-family: "GeomanistRegular";
  font-size: 16px;
  color: #1C142E;
  display: flex;
}
#blog-post .post-title .share > a > img {
  margin-right: 10px;
}
#blog-post .post-title .share .addtoany_shortcode {
  position: absolute;
  right: 0px;
  text-align: right;
  margin-top: 5px;
  display: none;
}
#blog-post .author {
  margin-top: 15px;
}
#blog-post .author > a {
  font-size: 20px;
  font-family: "GeomanistRegular";
  color: #640690;
}
#blog-post .thumbnail {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #E2E2E2;
  margin-bottom: 50px;
}
#blog-post .thumbnail img {
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  width: 100%;
}
#blog-post .post-content .tags h3 {
  font-family: "GeomanistMedium";
  color: rgba(28, 20, 46, 0.2);
  font-size: 16px;
}
#blog-post .post-content .tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#blog-post .post-content .tags ul > li a {
  color: #1C142E;
  text-decoration: none;
  font-family: "GeomanistMedium";
  font-size: 18px;
}
#blog-post .post-content .content h2, #blog-post .post-content .content h3 {
  font-size: 30px;
  font-family: "GeomanistLight";
  line-height: 1.5;
  color: #640690;
  margin-bottom: 1rem;
}

#related-articles {
  padding-top: 50px;
}
#related-articles h4 {
  font-size: 18px;
  font-size: 18px;
  margin-top: 0.7rem;
}
#related-articles .related-articles-list .article {
  display: flex;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
#related-articles .related-articles-list .article .title {
  padding-right: 5rem;
}
#related-articles .related-articles-list .article .title h3 {
  font-size: 30px;
  font-family: "GeomanistRegular";
  line-height: 1.3;
}
#related-articles .related-articles-list .article .title h3 a {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
}
#related-articles .related-articles-list .article .title a {
  color: #640690;
  font-family: "GeomanistRegular";
  font-size: 20px;
}
#related-articles .related-articles-list .article img {
  border-radius: 10px;
  max-width: 220px;
}
#related-articles .related-articles-list .load-more {
  text-align: center;
}
#related-articles .related-articles-list .load-more > a {
  display: inline-block;
  background-image: url(./images/arrow-down-purple.svg);
  padding-right: 30px;
  background-repeat: no-repeat;
  background-position: calc(100% - 2px);
  font-size: 20px;
  color: #1C142E;
  font-family: "GeomanistBook";
}

@media screen and (max-width: 1199.98px) {
  header .navbar .navbar-nav {
    margin-left: 40px;
  }
  header .navbar .navbar-nav .nav-item > .nav-link {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    font-size: 13px;
  }
  header .navbar .social-links {
    margin-right: 25px;
  }
  header .navbar .social-links > li {
    margin-right: 12px;
  }
  header .navbar .social-links > li:last-child {
    margin-right: 0;
  }
  header .btn-call-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  header .btn-call-header > img {
    margin-right: 5px;
  }

  .site-navigator {
    right: 20px;
  }

  #recent-projects .project-card .mac-frame:before {
    width: calc(100% + 250px);
    height: calc(100% + 24px);
    top: -22px;
    left: -118px;
    background-size: 91%;
    z-index: 1;
  }
  #recent-projects .project-card p {
    padding-right: 3rem;
  }

  .section-border:after {
    max-width: 960px;
  }

  #blog-filters .category-filter > li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 991.98px) {
  .navbar .navbar-collapse {
    flex-basis: 0;
    display: flex;
  }
  .navbar .navbar-nav {
    display: none;
  }
  .navbar .form-inline {
    margin-left: auto;
  }

  h1 {
    font-size: 65px;
  }
  h1 > span {
    font-size: 45px;
    font-family: "GeomanistBook";
    line-height: 1;
    display: block;
    margin-top: 10px;
  }

  h2 {
    font-size: 55px;
  }

  #banner .banner-content .baner-actions {
    margin-top: 40px;
  }

  .section-padding {
    padding: 60px 0;
  }

  footer .footer-extra .copyright {
    font-size: 18px;
  }
  footer .footer-extra .footer-menu > li {
    margin-right: 20px;
  }
  footer .footer-extra .footer-menu > li > a {
    font-size: 16px;
  }

  #section-care .features-care > li {
    flex: 0 0 100%;
  }

  #our-experience .our-services > li.highlighted:after {
    background-position: center -185px;
  }

  #recent-projects .project-card {
    padding-top: 70px;
    padding-right: 0;
  }
  #recent-projects .project-card .mac-frame {
    margin-top: 10rem;
  }
  #recent-projects .project-card p {
    padding: 0;
  }
  #recent-projects #projectsSlider {
    padding-right: 70px;
  }

  /*#project-image-viewer {
         padding-left: 0;
      padding-top: 0;
      position: relative;
      left: 44px;
      z-index: 0;
      top: 7px;
  }*/
  .section-border:after {
    max-width: 720px;
  }

  #our-experience .our-services > li {
    flex: 0 0 100%;
    margin-bottom: 2rem;
  }
  #our-experience .our-services > li.highlighted:after {
    display: none;
  }
  #our-experience .our-services > li:last-child {
    margin-bottom: 0;
  }

  #seo-features .features-list > li {
    flex: 0 0 48%;
  }
  #seo-features .features-list > li:nth-child(4) {
    margin-bottom: 1.8rem !important;
  }

  #seo-pricing .seo-packages {
    justify-content: center;
  }
  #seo-pricing .seo-packages > li {
    flex: 0 0 100%;
    max-width: 400px;
    margin-bottom: 2.5rem;
  }
  #seo-pricing .seo-packages > li:last-child {
    margin-bottom: 0;
  }

  #all-posts .archive-all-posts > .archive-post {
    flex: 0 0 47%;
  }

  #blog-filters .category-filter {
    justify-content: flex-start;
  }
  #blog-filters .category-filter > li {
    margin-right: 10px;
  }
  #blog-filters .category-filter > li > a {
    font-size: 16px;
    display: inline-block;
  }

  #about-smm .card-smm-service {
    padding: 70px 90px;
  }
  #about-smm .card-smm-service:after {
    width: calc(100% + 25px);
    height: calc(100% + 30px);
    left: -11px;
    top: -10px;
    background-size: 104%;
    background-position-x: -16px;
    background-position-y: 20px;
  }

  #related-articles .related-articles-list .article .title {
    padding-right: 2rem;
  }
  #related-articles .related-articles-list .article img {
    max-width: 180px;
  }
  #related-articles h4 {
    font-size: 24px;
  }

  header.inner {
    background-position: 55%;
  }
  header.blog:before {
    background-position-x: 50px;
  }
}
@media (max-width: 782.98px) {
  html.mm-wrapper_opened body.admin-bar .site-wrapper {
    padding-top: 46px;
  }
}
@media screen and (max-width: 767.98px) {
  #banner .banner-content {
    margin-top: 80px;
  }
  #banner .banner-content .banner-right-img {
    text-align: left;
    margin-top: 2.5rem;
  }
  #banner .banner-content .banner-right-img > img {
    max-width: 100%;
  }
  #banner .banner-content > p br {
    display: none;
  }

  #section-foundation .our-process > ul {
    flex-wrap: wrap;
  }
  #section-foundation .our-process > ul > li {
    flex: 0 0 100%;
    margin-bottom: 3rem;
  }
  #section-foundation .our-process > ul > li:last-child {
    margin-bottom: 0;
  }
  #section-foundation p br {
    display: none;
  }

  #section-care .features-care {
    margin-top: 2.5rem;
  }

  #section-about-us .about-us-content-box:first-child {
    margin-top: 3rem;
  }

  #section-testimonials #testimonialSlider {
    margin-top: 2rem;
  }

  footer .contact-form {
    margin-bottom: 2.5rem;
  }
  footer .contact-form .form-group {
    margin-bottom: 1.5rem;
  }
  footer .contact-form .form-group:first-child .col-md-6:first-child {
    margin-bottom: 1.5rem;
  }
  footer .footer-extra {
    display: block;
    text-align: center;
  }
  footer .footer-extra .footer-menu {
    margin-top: 1rem;
    justify-content: center;
  }

  .section-border:after {
    max-width: 540px;
  }

  #recent-projects .project-card {
    padding-top: 70px;
    padding-left: 50px;
    padding-right: 0;
  }
  #recent-projects .project-card .mac-frame:before {
    left: -79px;
    background-size: 100%;
    top: -25px;
    z-index: 1;
  }
  #recent-projects .project-card .mac-frame > img {
    padding-bottom: 90px;
    left: 62px;
    position: relative;
    z-index: 0;
    top: 0px;
    padding-left: 0;
  }
  #recent-projects #projectsSlider {
    padding-right: 50px;
  }

  /*#project-image-viewer {
      padding-left: 7px;
      padding-top: 0px;
  }*/
  #seo-testimonials .img-char-testimonial {
    margin-bottom: 3rem;
  }

  #seo-features .features-list > li {
    flex: 0 0 100%;
    margin-bottom: 1.8rem !important;
  }
  #seo-features .features-list > li:last-child {
    margin-bottom: 0 !important;
  }

  #seo-experts .experts-list > li {
    flex: 0 0 100%;
  }
  #seo-experts .experts-list > li .expert-card {
    margin-bottom: 1.5rem;
  }
  #seo-experts .experts-list > li:last-child .expert-card {
    margin-bottom: 0;
  }

  #seo-pricing .seo-packages {
    margin-top: 2rem;
  }

  .map-wrapper .location-card {
    position: initial;
    border-radius: 0;
    padding: 20px 30px;
  }

  #all-posts .archive-all-posts > .archive-post {
    flex: 0 0 100%;
  }
  #all-posts .archive-all-posts > .archive-post > a > img {
    height: auto;
  }

  #blog-filters #filter-form .form-group {
    display: block;
  }
  #blog-filters #filter-form .form-group .form-control {
    margin-bottom: 1rem;
  }
  #blog-filters #filter-form .form-group .form-control:last-child {
    margin-bottom: 0;
  }

  #banner #smm-form {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #banner #smm-form .form-control {
    margin-right: 0;
    flex: 0 0 100%;
    margin-bottom: 0.5rem;
  }
  #banner #smm-form .btn {
    flex: 0 0 100%;
  }

  #portfolio .porfolio-list > li {
    flex: 0 0 48%;
  }

  #cta .cta-content {
    display: block;
    text-align: center;
  }
  #cta .cta-content .btn {
    margin-top: 1rem;
  }

  #blog-post .post-title h1 {
    font-size: 40px;
  }
  #blog-post .post-content .tags {
    margin-bottom: 2rem;
  }

  #related-articles .related-articles-list .article {
    flex-direction: column-reverse;
  }
  #related-articles .related-articles-list .article .title {
    padding-right: 0;
  }
  #related-articles .related-articles-list .article .title h3 {
    font-size: 26px;
  }
  #related-articles .related-articles-list .article img {
    margin-bottom: 1rem;
  }

  header .navbar .navbar-brand > img {
    max-width: 175px;
  }
}
@media screen and (max-width: 620.98px) {
  header .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
  header .navbar .social-links {
    margin-right: 15px;
  }
  header .navbar .social-links > li {
    margin-right: 10px;
  }
  header .navbar #nav-toggler {
    margin-left: 10px;
  }
}
@media screen and (max-width: 575.98px) {
  .section-border:after {
    max-width: calc( 100% - 30px );
  }

  .site-navigator {
    right: 12px;
  }

  #banner h1 {
    font-size: 55px;
  }
  #banner h1 > span {
    font-size: 45px;
  }
  #banner .banner-content {
    margin-top: 60px;
  }
  #banner #seo-form {
    margin-bottom: 3rem;
  }
  #banner #seo-form .btn {
    padding: 10px 30px;
  }

  h2 {
    font-size: 55px;
  }

  section-padding {
    padding: 50px 0;
  }

  #section-testimonials h2,
#section-about-us h2 {
    font-size: 45px;
  }

  #how-we-work-web .web-development-steps {
    margin: 3rem auto 0;
  }
  #how-we-work-web .web-development-steps > div {
    flex-wrap: wrap;
    margin-bottom: 1rem;
    text-align: center;
  }
  #how-we-work-web .web-development-steps > div > img {
    max-width: 130px;
    margin: 0 auto 15px;
  }
  #how-we-work-web .web-development-steps > div .step-content {
    width: 100%;
  }
  #how-we-work-web .web-development-steps > div.even {
    flex-direction: column-reverse;
  }

  #testimonial-still {
    padding-left: 40px;
  }
  #testimonial-still .testimonial-author {
    margin-top: 1.5rem;
  }
  #testimonial-still .testimonial-author > img {
    max-width: 40px;
  }
  #testimonial-still .testimonial-author > .author-bio {
    margin-left: 10px;
  }
  #testimonial-still .testimonial-author > .author-bio span.author-name {
    font-size: 22px;
  }
  #testimonial-still .testimonial-author > .author-bio span.author-designation {
    font-size: 14px;
  }
  #testimonial-still:before {
    width: 32px;
    height: 29px;
    left: 0;
    top: -15px;
  }
  #testimonial-still:after {
    width: 32px;
    height: 27px;
    right: 0;
    bottom: 35px;
  }

  #about-smm .card-smm-service {
    padding: 50px 25px;
  }
  #about-smm .card-smm-service:after {
    display: none;
  }

  #seo-features .features-list > li .seo-feature-card > h3 br {
    display: none;
  }

  #portfolio .porfolio-list > li {
    flex: 0 0 100%;
    margin-bottom: 1.2rem !important;
  }
  #portfolio .porfolio-list > li:last-child {
    margin-bottom: 0 !important;
  }

  #about-smm .card-smm-service > h3 br {
    display: none;
  }

  #recent-projects .project-card .mac-frame:before {
    background-size: 100%;
    top: -5%;
  }
  #recent-projects #macSlider {
    left: 9%;
    padding-bottom: 120px;
  }

  header .navbar .social-links {
    display: none !important;
  }
  header .navbar #nav-toggler {
    padding: 5px 8px;
  }
  header .navbar #nav-toggler > span {
    width: 1.2em;
    height: 1.2em;
  }
}
@media screen and (max-width: 480.98px) {
  #recent-projects #macSlider {
    left: 5%;
  }

  header .navbar .navbar-brand > img {
    max-width: 155px;
  }
  header .btn-call-header {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
  }
}
@media screen and (max-width: 420.98px) {
  #recent-projects #macSlider {
    left: 3%;
  }
}
@media screen and (max-width: 400.98px) {
  #recent-projects .project-card .mac-frame:before {
    left: -70px;
  }
  #recent-projects #macSlider {
    left: 2px;
    top: 0px;
  }
}
@media screen and (max-width: 359.98px) {
  #banner h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 45px;
  }
  h2 br {
    display: none;
  }

  h3 br {
    display: none;
  }

  #recent-projects .project-card .mac-frame:before {
    top: -13px;
    left: -66px;
  }

  .navbar .form-inline {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
