@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900");

:root {
  --older: #f95700ff;
  --first: #00539cff;
  --secound: #ffffffff;
  --black: #000000;
  --blue: #00203fff;
}
/* 
  ---------------------------------------------
  header
  --------------------------------------------- 
  */
::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: #ff404c;
}

::selection {
  color: white;
  background: #ff404c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Trebuchet MS, Arial, sans-serif;
}
.background-header {
  background-color: #fff;
  height: 80px !important;
  position: fixed !important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}
p {
  padding: 0 !important;
}
.txt-white {
  color: white !important;
}
.txt-blue {
  color: #1e1666 !important;
}

.padding-0 {
  padding: 0 !important;
}
.background-header .logo,
.background-header .main-nav .nav li a {
  color: var(--first) !important;
}

.background-header .main-nav .nav > li:hover > a {
  color: var(--first) !important;
}

.background-header .main-nav .nav > li > ul > li:hover > a {
  color: var(--first) !important;
}

.background-header .nav li a.active {
  color: var(--first) !important;
}

.header-area {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}
@import url("https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap");
.header-area .main-nav .logo {
  margin: 12px 0px;
  line-height: 40px;
  color: var(--first);
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: "Arvo", serif;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 27px;
  margin-left: 20px;
  margin-right: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 800;
  font-size: 13px;
  color: var(--first);
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a {
  color: #fff;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 20px;
}

/* .header-area .main-nav .nav li.submenu:after {
    font-family: FontAwesome;
    content: "\f107";
    font-size: 12px;
    color: #fff;
    position: absolute;
    right: 18px;
    top: 12px;
  } */

.header-area.background-header .main-nav .nav li.submenu:after {
  color: #000;
}

.header-area .main-nav .nav li.submenu ul {
  list-style: none;
  position: absolute;
  width: 300px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  left: -20px;
  opacity: 0;
  transform: translateY(-2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s,
    z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  display: block;
  background: #fff;
  color: #3b566e;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}

.header-area .main-nav .nav li.submenu ul li a:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 40px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #f55858;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #f55858;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1666;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1666;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1666;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1666;
}

.header-area.header-sticky {
  min-height: 110px;
}
@media only screen and (max-width: 480px) and (min-width: 361px) {
  .header-area.header-sticky {
    min-height: 150px;
  }
}

.header-area.header-sticky .nav {
  margin-top: 20px !important;
}

.header-area.header-sticky .nav li a.active {
  color: var(--first) !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 991px) {
  .header-area {
    padding: 0px 0px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .nav-container {
    padding: 0px 15px !important;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    margin-top: 80px !important;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 1px !important;
    border: none !important;
    background: #fff !important;
    color: #3b566e !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
  }
  .header-area .main-nav .nav > li > a:hover,
  .header-area .main-nav .nav .submenu > ul > li > a:hover {
    color: #fff;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3b566e;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 992px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
  ---------------------------------------------
  welcome
  --------------------------------------------- 
  */
#welcome {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/banner-bg.png);
  background-repeat: no-repeat;
  /*
  TRY IT ... with or without CENTER CENTER
    background-position: center center; 
  */
  background-size: cover;
  width: 100%;
  height: 105vh;
  margin-top: -10vh;
}

body {
  font-family: "Open Sans", sans-serif !important;
  background-color: rgba(0, 83, 156, 0.1);
}
.logo-image {
  background-color: white;
  padding: 6px 12px;
}

.first-heading {
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.2px;
}
@media (max-width: 765px) {
  .first-heading {
    font-size: 35px;
    line-height: 46px;
  }
}
.first-p {
  color: #c5d2f8;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
}
.custom-btn {
  color: #ffffff;
  border-radius: 3px;
  background-color: #194bed;
  padding: 14px 46px 14px 46px;
}
.first-container {
  background-repeat: no-repeat;
}
.second-container {
}
.up-box-custom {
  box-sizing: border-box;
  max-width: 500px;
  box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: white;
  padding: 40px;
  cursor: pointer;
  height: 100%;
}
.up-box-custom:hover {
  margin-top: -20px;
  transition: 0.3s ease-in-out; /* delays for 1 second */
  -webkit-transition: 0.3s ease-in-out; /* for Safari & Chrome */
}
.box-heading-div {
  flex: 70%;
  max-width: 100%;
}

/*   
    .up-box-custom .box-image-div{
    } */
.up-box-custom .box-image {
  max-height: 65px;
  width: auto;
}
.up-box-custom .box-heading {
  color: var(--blue);
  line-height: 32px;
  font-size: 35px;
  font-weight: 800 !important;
}
.up-box-custom .box-p {
  color: #6a7c92;
  padding: 0;
  margin: 0;
}
.third-container .heading {
  color: #1e1666;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: -0.3px;
}
.third-container .p {
  color: #6a7c92;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  padding: 0;
}
.box {
  box-sizing: border-box;
  max-width: 500px;
  box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: white;
  padding: 20px 25px;
}
.box .box-image {
  max-height: 100px;
}
.forth-left-div {
  margin-top: 200px;
}
.forth-single-box {
  margin-top: 110px;
}
.forth-heading {
  color: #1e1666;
  font-size: 35px;
  font-weight: 800;
}
.forth-p {
  padding: 0;
  line-height: 25px;
}
.forth-box {
  box-sizing: border-box;
  max-width: 500px;
  box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: white;
  padding: 48px 10px 45px 10px;
}
.forth-box-heading {
  color: #1e1666;
  margin-top: 15px;
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.3px;
}
.forth-box-margin {
  margin-top: 150px;
}
.forth-box-mobile {
  box-sizing: border-box;
  max-width: 500px;
  box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: white;
  padding: 40px;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.forth-box-mobile:hover {
  cursor: pointer;
  transform: scale(0.9);
}
.include-box {
  margin: 0 0 0 0;
  padding: 45px 45px 45px 45px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #1e1666;
  background-color: white;
  border-style: dashed;
  box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.2);
}
.include-box-image {
  max-height: 70px;
}
.include-box-heading {
  color: #1e1666;
  font-weight: 800;
}
.clients-heading {
  color: #1e1666;
  font-size: 35px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.3px;
}
p {
  color: #6a7c92;
  padding-right: 15px;
  padding-left: 15px;
}
.offer-div {
  background-color: #1e1666;
}
.offer-p {
  color: white;
  font-size: 17px;
  line-height: 30px;
}
.count-heading {
  font-size: 44px;
  font-weight: bold;
  color: white;
}
.count-p {
  margin-top: -10px !important;
  font-size: 21px;
  color: white;
}
.include-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1e1666;
  letter-spacing: 0.7px;
}
svg {
  color: #1e1666;
  border: 1px solid rgba(30, 22, 102, 0.5);
  border-radius: 3px;
  padding: 2px;
  color: #1e1666;
  background-color: #deecf4;
}
input {
  width: 100%;
  border-radius: 7px;
  height: 50px;
  box-shadow: none;
  border: 2px solid #fff;
  color: #566872 !important;
  font-size: 16px !important;
  padding: 0 0 0 22px;
}
select {
  width: 100%;
  border-radius: 7px;
  height: 50px;
  background-color: #fff;
  box-shadow: none;
  border: 2px solid #fff;
  color: #566872 !important;
  font-size: 16px !important;
  padding: 0 0 0 22px;
}
.form-container {
  border-radius: 10px;
  background-color: #2c5f2d;
  box-shadow: 0 55px 80px -40px #000;
}
.footer-heading {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-transform: capitalize;
}
.custom-links {
  color: lightgray;
  font-size: 18px;
}
.footer-div {
  position: fixed;
  bottom: 0px;
}
.footer-btn {
  color: white;
  font-size: 17px;
  letter-spacing: 1px;
}

.box .image-div-hover img:last-child {
  display: none;
}
.box:hover .image-div-hover img:last-child {
  display: block;
}
.box:hover .image-div-hover img:first-child {
  display: none;
}
.box:hover {
  background-color: #1e1666;
  transition: 0.8s ease-in-out; /* delays for 1 second */
  -webkit-transition: 0.8s ease-in-out; /* for Safari & Chrome */
}
.box:hover .box-heading,
.box:hover .box-p {
  color: white;
}
.price {
  background-color: white;
  padding: 1px 30px;
  border-radius: 15px;
  color: #1e1666;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  font-family: "Lato", sans-serif;
}
.offer-heading {
  text-decoration: underline;
  text-decoration-color: white;
}
.custom-heading {
  color: #1e1666;
  font-weight: 900;
  text-decoration: underline;
}

.digital-p {
  color: #4f6278;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 7px;
}
.long-box {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
  margin-top: 0px;
  margin-bottom: 30px;
  padding: 25px 30px 18px 30px;
  border-radius: 10px;
  border-style: solid;
  border-width: 0 0 0 5px;
  border-color: #f55858;
}
.long-box:hover,
.long-box:hover .long-box-heading,
.long-box:hover .long-box-p {
  background-color: #ee1148;
  color: white;
}
.long-box-img {
  max-height: 100px;
}
.long-box-heading {
  color: #1e1666;
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.3px;
}
.long-box-p {
  color: #6a7c92;
  font-size: 15px;
  line-height: 28px;
  padding: 0;
}
.digital-last-heading {
  color: #1e1666;
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.3px;
}
.digital-last-p {
  color: #6a7c92;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
}
.digital-last-img {
  max-height: 155px;
}
.digital-last-h3 {
  color: #1e1666;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: -0.3px;
}
.digital-last-p2 {
  color: #6a7c92;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  padding: 0;
}
.privacy-text p {
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 17px;
  font-weight: 500;
}
.include-span {
  font-size: 16px;
}
.footer-div .icon {
  max-height: 24px;
}
.desktop-call-icon {
  background-color: #97bc62ff;
  padding: 5px;
  color: white;
  max-height: 48px;
  border-radius: 15%;
  cursor: pointer;
  right: 15px;
  bottom: 15px;
  position: fixed;
  z-index: 996;
}
.desktop-call-number {
  height: 100vh;
  background-color: #0b0f12;
  color: white;
  text-align: center;
  font-size: 144px;
  position: fixed;
  z-index: 997;
  top: 0;
  display: none;
}
.desktop-call-number {
}
.desktop-call-number-image {
  position: fixed;
  z-index: +1;
  top: 0;
  animation: rotate 20s infinite;
}
@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.desktop-call-number-text {
  position: fixed;
  z-index: +999;
  top: 0;
}
a:hover {
  text-decoration: none;
}
.footerHeading {
  font-size: 42px;
  color: white;
  font-weight: 900;
  text-transform: capitalize;
}

/* Content Writing Section  Start*/
/* Content Writing Section  Start*/
.content-writing-banner-image {
  max-height: 280px;
}
.content-writing-banner-p {
  color: white;
  font-size: 25px;
  padding: 0;
  font-weight: 400;
  line-height: 38px;
}
.content-writing-p-two {
  color: #f13e42;
  padding: 0;
  font-weight: 400;
  line-height: 38px;
  margin: 0;
}
.content-writing-heading-one {
  color: #1e1666;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.content-writing-box-1 {
  margin: 0 0 0 0;
  padding: 45px 45px 45px 45px;
  background-color: white;
  box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.2);
}
.content-writing-box-1-image {
  max-height: 70px;
}

.content-writing-box-1-heading {
  color: #1e1666;
  font-weight: 800;
}
.content-writing-p-three {
  color: #f13e42;
  padding: 0;
  font-weight: bold;
  margin: 0;
}
.content-writing-heading-two {
  font-size: 44px;
  color: #1e1666;
  font-weight: 800;
  letter-spacing: -0.2px;
}
@media (max-width: 765px) {
  .content-writing-heading-two {
    font-size: 36px;
    color: #1e1666;
    font-weight: 800;
    letter-spacing: -0.2px;
  }
}
.content-writing-box-2 {
  margin: 0 0 0 0;
  padding: 45px 45px 45px 45px;
  background-color: white;
  border: 1px solid #d9d9dd;
  position: relative;
}
.content-writing-box-2-image {
  max-height: 70px;
}

.content-writing-box-2-heading {
  color: #1e1666;
  font-weight: 800;
}

.content-writing-box-2:hover {
  margin: 0 -30px 0 0;
  background-color: #1e1666;
  border: 1px solid #d9d9dd;
  transition: all ease 0.5s;
  position: relative;
  color: #ffffff;
}
.content-writing-box-2:hover .content-writing-box-2-heading,
.content-writing-box-2:hover .content-writing-box-2-p {
  color: white;
}
.p-image {
  max-height: 40px;
}
.contactus-p {
  color: #6a7c92;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.contact-form-box {
  background-color: white;
  box-shadow: 0px 7px 24px 0px rgba(0, 0, 0, 0.12);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 45px 40px 45px 40px;
}
.contact-box-heading {
  color: #1e1666;
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.3px;
}
.contact-input {
  width: 100%;
  height: 50px;
  padding: 0 0 0 22px;
  border: 1px solid #f3f5fd;
  background-color: #f3f5fd;
  border-radius: 3px;
}
.contactus-btn {
  margin-top: 0;
  font-weight: 400 !important;
  letter-spacing: 1px;
  line-height: 30px;
  background: linear-gradient(to right, #fa897d 0%, #fe5f88 100%);
  border-radius: 3px !important;
  color: #ffff !important;
  padding: 13px 40px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}
.contactus-h3 {
  color: #1e1666;
  font-weight: bold;
}
.eroor-page-div {
  margin: 200px 0;
}
.error-btn {
  color: white;
  background-color: #f83566;
  line-height: 22px;
  padding: 15px 40px;
  font-weight: bold;
}

.error-btn:hover {
  color: white;
  background-color: #ee1148;
}
.content-category-box {
  text-align: center;
  padding: 45px;
  width: 33%;
  float: left;
}
.content-category-box i {
  font-size: 36px;
}
.content-category-box-heading {
  font-size: 20px;
  text-transform: uppercase;
}
.content-category-box-p {
  font-weight: 600;
  color: #777;
  padding: 0px;
  text-align: justify;
  font-size: 14px;
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
}
.content-category-box:nth-child(1),
.content-category-box:nth-child(4) {
  border-right: 1px solid #ccc;
}

.content-category-box:nth-child(1),
.content-category-box:nth-child(2),
.content-category-box:nth-child(3) {
  border-bottom: 1px solid #ccc;
}
.content-category-box:nth-child(3),
.content-category-box:nth-child(6) {
  border-left: 1px solid #ccc;
}
@media only screen and (max-width: 480px) and (min-width: 361px) {
  .content-category-box {
    overflow: hidden;
    text-align: center;
    padding: 20px;
    float: left;
    border: none !important;
    width: 100%;
  }
}
.no-padding {
  padding: 0;
}

.content-writing-s-h {
  color: white;
}
.content-writing-s-p {
  font-weight: 400;
  line-height: 26px;
  color: white;
  text-align: justify;
}
.c-f-1,
.feature-1 {
  background: #1e1666;
}
.c-f-2,
.feature-2 {
  /* background-color: #1B135B; */
  background-color: #ff404c;
}
.c-f-3,
.feature-3 {
  background-color: #181151;
}
.feature-1,
.feature-2,
.feature-3 {
  padding: 100px 30px 100px 30px;
}

.custom-footer-btn {
  color: #ffffff !important;
  font-weight: 700;
  background-color: #97bc62ff;
  border: none;
}
.custom-footer-btn:hover {
  color: #2c5f2d !important;
  background-color: WHITE;
  font-weight: 900;
}

/* Seo Page */

.local-seo-image {
  max-height: 300px;
}
.local-seo-heading {
  color: #1e1666;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.3px;
}
.local-seo-p {
  color: #223f63 !important;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}
.seo-circle-1 {
  height: 180px;
  width: 180px;
  border-style: solid;
  border-width: 15px;
  border-color: #f346a3;
  border-radius: 50%;
}
.seo-circle-text span {
  height: 165px;
  width: 165px;
  background-color: white;
  color: gray;
  font-size: 28px;
  font-weight: 700;
}
.seo-box {
  box-sizing: border-box;
  border: 1px solid #abd6ea;
  max-width: 500px;
  height: 500px;
  border-radius: 10px;
  background-color: white;
  padding: 50px 45px;
}
.seo-box:hover {
  background-color: #deecf4;
  box-sizing: border-box;
  border: 1px solid #1e1666;
  max-width: 500px;
  border-radius: 10px;
  padding: 50px 45px;
}
.seo-box-chd {
  display: block;
  box-sizing: border-box;
  border: 1px solid #abd6ea;
  max-width: 500px;
  height: 100%;
  border-radius: 10px;
  background-color: white;
  padding: 10px 20px;
}
.seo-box-chd:hover {
  display: block;
  box-sizing: border-box;
  background-color: #deecf4;
  box-sizing: border-box;
  border: 1px solid #1e1666;
  max-width: 500px;
  border-radius: 10px;
  padding: 10px 20px;
  height: 100%;
}
.seo-points-table h4 {
  font-size: 28px;
  font-weight: 600;
}
.seo-points-table ol li {
  line-height: 34px;
  font-weight: 300;
}
.seo-first-div h2 {
  text-align: center;
  color: #1e1666 !important;
  font-weight: 700 !important;
  line-height: 45px;
  letter-spacing: -0.3px;
  font-family: -apple-system, "Segoe UI";
}

.seo-box-image {
  max-height: 130px;
}
.seo-box-heading {
  color: #1e1666;
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.3px;
  text-align: center;
}
.seo-box-p {
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}
.local-seo-btn {
  color: #ffffff;
  border-style: solid;
  border-width: 01px 01px 01px 01px;
  border-radius: 3px;
  background-color: #1121b7;
  margin: 04px 0px 0px 0px;
  padding: 08px 025px 8px 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}
.local-seo-btn:hover {
  color: white;
}
.global-seo-btn {
  color: #1121b7;
  border-style: solid;
  border-width: 01px 01px 01px 01px;
  border-radius: 0px;
  background-color: #ffffff;
  padding: 012px 35px 12px 35px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}
.list-box:hover {
  box-shadow: 0px 0px 9px 0px
    rgba(14.293213608295403, 6.714685173311432, 240.4218978881836, 0.5);
}
.global-seo-list-title {
  padding-left: 10px;
  font-size: 30px;
  font-weight: 600;
}
.global-seo-list i {
  padding-left: 10px;

  color: #00c853;
  margin-right: 3px;
}
.global-seo-list {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5em;
}
.global-seo-heading {
  color: #1e1666;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.3px;
  font-family: -apple-system, "Segoe UI";
}
.global-seo-icon-text {
  color: #1e1666;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.3px;
}
.global-include-box {
  height: 300px;
  margin: 0 0 0 0;
  padding: 35px 25px 25px 25px;
  border-width: 2px 2px 2px 2px;
  border-color: #1e1666;
}
.global-include-box:hover {
  box-shadow: 0px 7px 20px 5px rgba(0, 0, 0, 0.2);
}
.global-include-box-image {
  max-height: 50px;
}
.global-include-box-heading {
  color: #1e1666;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.3px;
}
.global-include-box-p {
  color: #6a7c92;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}

/* Web Maintance Page */

.website-page-page-title {
  color: #ffffff;
  font-weight: 800;
  font-family: Inter, sans-serif !important;
  text-transform: uppercase;
}
.website-page-page-title-p {
  font-family: Inter, sans-serif !important;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
}
.website-page-page-title-a {
  margin-top: 20px;
  font-family: Inter, sans-serif !important;
  color: #db4437;
  font-weight: 600;
  background-color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
}
.website-page-page-title-a:hover {
  color: #1e1e1e;
}
.website-page-icon-box-heading {
  color: #db4437;
  font-family: Inter, sans-serif !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-family: Inter, sans-serif !important;
}
.website-page-icon-box-custom-hr {
  border-color: #db4437;
  width: 100%;
  border-top-width: 4px;
}
.website-page-icon-title h3 {
  text-decoration: underline;
  color: #000;
  font-weight: 800;
  font-family: Inter, sans-serif !important;
  text-transform: uppercase;
}
.custom-hr {
  border-color: #db4437;
  width: 100%;
  border-top-width: 4px;
}
.hr-heading {
  color: #db4437;
  font-family: Inter, sans-serif !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-family: Inter, sans-serif !important;
}
.website-page-list-i i {
  color: #db4437;
}
.website-page-custom-list-span {
  font-family: Inter, sans-serif !important;
  color: #333;
  font-weight: bold;
}
.website-page-custom-list-hr {
  width: 100%;
  border-color: #f2f2f2;
}
.website-page-faq-heading h3 {
  font-family: Inter, sans-serif !important;
  color: #db4437;
  text-transform: uppercase;
  font-weight: 600;
}
.website-page-faq-box {
  position: relative;
  padding-left: 30px;
  padding-bottom: 40px;
  padding-right: 30px;
}
.website-page-faq-box:before {
  border-left: 15px solid #ff404c;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  top: 0px;
}

.website-page-faq-h3 {
  font-family: Inter, sans-serif !important;
  font-weight: 800;
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 20px;
  margin-top: 0px;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
}
.website-page-faq-box h3:after {
  border-bottom: 4px solid #ff404c;
  width: 160px;
  content: "";
  bottom: 0px;
  left: 0px;
  position: absolute;
}
.website-page-faq-box .website-page-faq-box-p {
  line-height: 26px;
  font-family: roboto, sans-serif !important;
  font-size: 17px;
  color: #333;
  font-weight: 300;
  position: relative;
  padding-bottom: 20px !important;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
}
.website-page-faq-box p:after {
  border-bottom: 2px solid #ff404c;
  width: 80px;
  content: "";
  bottom: 0px;
  left: 0px;
  position: absolute;
}
.website-page-icon-b {
}

.website-page-icon-box {
  height: 100%;
  padding: 20px 10px;
  margin: 0 auto;
  border-radius: 4px;
  border: 5px solid;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  cursor: pointer;
}
.wpib-scale {
  transform: scale(1.1);
}
/* .website-page-icon-box:hover {
  transform: scale(1.1);
} */
.wpib-1 {
  border-color: #db4437;
}
.wpib-2 {
  border-color: #00749c;
}
.wpib-3 {
  border-color: #0f9d58;
}

.wpib-4 {
  border-color: #f4b400;
}
.wpib-5 {
  border-color: #1995ad;
}

.wpib-6 {
  border-color: #ed2b33ff;
}
.wpib-7 {
  border-color: #003b46;
}

.wpib-8 {
  border-color: #de7a22;
}

.website-page-icon-box-p {
  text-align: center;
}
.fa-building-clr {
  color: #db4437;
}
.fa-wordpress-clr {
  color: #00749c;
}
.fa-shopping-cart-clr {
  color: #0f9d58;
}
.fa-sitemap-clr {
  color: #f4b400;
}
.fa-university-clr {
  color: #1995ad;
}
.fa-map-clr {
  color: #ed2b33ff;
}
.fa-file-signature-clr {
  color: #003b46;
}
.fa-hands-clr {
  color: #de7a22;
}
.website-page-icon-box h4 {
  font-size: 18px;
  font-family: Inter, sans-serif !important;
  padding-top: 24px;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  font-weight: 600;
}

.website-page-review-box {
  cursor: pointer;
  display: block;
  background: #ffffff;
  box-shadow: 10px 20px 48px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  height: 100%;
}
.website-page-review-box-title h3 {
  text-decoration: underline;
  color: white;
  font-weight: 800;
  font-family: Inter, sans-serif !important;
  text-transform: uppercase;
}
.website-page-review-box-image {
  border-radius: 50%;
  max-height: 120px;
  margin-bottom: 15px;
}
.website-page-review-box-heading {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #1e1e1e;
  letter-spacing: 0.7px;
  margin-bottom: 15px;
  position: relative;
  font-family: Inter, sans-serif !important;
}
.website-page-review-box-p {
  font-weight: 400;
  font-size: 14px;
  color: #7d7c83;
  letter-spacing: 0.5px;
  line-height: 25px;
  position: relative;
  z-index: 2;
  font-family: Inter, sans-serif !important;
}
.website-page-review-box-url {
  font-style: italic;
  color: #333;
}
.website-page-review-box-a {
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none;
  background-color: #ee1148;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-family: Inter, sans-serif !important;
}
.website-page-review-box-a:hover {
  color: #ee1148;
  border: 1px solid #ee1148;
  background-color: #ffffff;
  transition: 0.3s ease-out;
}
.website-page-review-box-a:before {
  content: "\27AF";
  padding-right: 6px;
  font-size: 20px;
}
.website-page-review-box-a:hover::before {
  display: none;
  transition: 0.5s ease-out;
}
.website-page-review-box-a:hover::after {
  content: "\27AF";
  padding-left: 6px;
  font-size: 20px;
  transition: 0.1s ease-in;
}
.website-page-include-bg {
  background-image: url("../assets/images/25332.jpg");
  background-size: contain;
}
.website-page-include-box-title {
  color: #db4437;
  font-family: Inter, sans-serif !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-family: Inter, sans-serif !important;
}

.website-page-include-box-custom-hr {
  border-color: #db4437;
  border-top-width: 4px;
}
.website-page-include-box {
  background-color: #ffffff;
  color: white;
  cursor: pointer;
  display: block;
  box-shadow: 0px 10px 20px 0px rgb(204, 195, 195);
  padding: 10px 15px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-family: Inter, sans-serif !important;
  height: 100%;
}
.website-page-include-box i {
  border-radius: 10px;
  padding: 22px;
}
.website-page-include-box-heading {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  letter-spacing: 0.7px;
  margin-bottom: 15px;
  font-family: Inter, sans-serif !important;
  position: relative;
}
.website-page-include-box-p {
  font-weight: 500;
  font-size: 15px;
  color: #7d7c83;
  letter-spacing: 0.5px;
  line-height: 25px;
  font-family: Inter, sans-serif !important;
  position: relative;
  z-index: 2;
}
.website-page-custom-md {
  margin: 7px 0;
  padding: 0 7px;
}
.fa-headset-clr {
  background-color: #ffccd5;
  color: #db4437;
}
.fa-shield-virus-clr {
  background-color: #ffccd5;
  color: #db4437;
}
.fa-retweet-clr {
  background-color: #ffccd5;
  color: #db4437;
}
.fa-puzzle-piece-clr {
  background-color: #ffccd5;
  color: #db4437;
}
.fa-file-medical-alt-clr {
  background-color: #ffccd5;
  color: #db4437;
}
.fa-chart-bar-clr {
  background-color: #ffccd5;
  color: #db4437;
}
.fa-google-clr {
  background-color: #ffccd5;
  color: #db4437;
}
.fa-level-up-alt-clr {
  background-color: #ffccd5;
  color: #db4437;
}
.website-page-form-heading {
  color: #f1f1f1;
  font-weight: 600;
  size: 32px;
  line-height: 30px;
  padding-bottom: 10px;
}
.website-page-form-p {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}
.website-page-form-input input {
  color: #333333 !important;
  border: 1px solid #333333 !important;
  border-radius: 2px;
  background-color: #fafafa !important;
}
.website-page-form-input-btn input {
  width: 220px;
  color: #ffffff !important;
  border: 1px solid #333333 !important;
  border-radius: 2px;
  background-color: #1e1e1e !important;
}
.website-page-form-input-btn input:hover {
  width: 220px;
  color: #ffffff !important;
  border: 1px solid #333333 !important;
  border-radius: 2px;
  background-color: #1e1e1e !important;
}
.website-page-td-title {
  font-weight: 700;
}
.website-page-td-title:before {
  content: "\27AF";
  padding-right: 6px;
  font-size: auto;
}

/* Web Maintance Page */

.smm-header-bg-image {
  background-image: url("");
}

.smp-icon-box-heading {
  color: #5585ff;
  font-family: Inter, sans-serif !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-family: Inter, sans-serif !important;
}
.smm-icon-box-custom-hr {
  border-color: #0f9d58;
  width: 100%;
  border-top-width: 4px;
}
.smm-custom-hr {
  border-color: #0f9d58;
  width: 100%;
  border-top-width: 4px;
}
.smm-hr-heading {
  color: #0f9d58;
  font-family: Inter, sans-serif !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-family: Inter, sans-serif !important;
}
.smm-list-i i {
  color: #0f9d58;
}
.smm-custom-list-span {
  font-family: Inter, sans-serif !important;
  color: #333;
  font-weight: bold;
}
.smm-page-title-a {
  margin-top: 20px;
  font-family: Inter, sans-serif !important;
  color: #5585ff;
  font-weight: 600;
  background-color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
}

.smm-faq-heading h3 {
  font-family: Inter, sans-serif !important;
  color: #5585ff;
  text-transform: uppercase;
  font-weight: 600;
}
.smm-faq-box {
  position: relative;
  padding-left: 30px;
  padding-bottom: 40px;
  padding-right: 30px;
}
.smm-faq-box:before {
  border-left: 15px solid #5585ff;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  top: 0px;
}

.smm-faq-h3 {
  font-family: Inter, sans-serif !important;
  font-weight: 800;
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 20px;
  margin-top: 0px;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
}
.smm-faq-box h3:after {
  border-bottom: 4px solid #5585ff;
  width: 160px;
  content: "";
  bottom: 0px;
  left: 0px;
  position: absolute;
}
.smm-faq-box .smm-faq-box-p {
  line-height: 26px;
  font-family: roboto, sans-serif !important;
  font-size: 17px;
  color: #333;
  font-weight: 300;
  position: relative;
  padding-bottom: 20px !important;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
}
.smm-faq-box p:after {
  border-bottom: 2px solid #5585ff;
  width: 80px;
  content: "";
  bottom: 0px;
  left: 0px;
  position: absolute;
}

/* popup-box */
.pop-up {
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  display: none;
}
.pop-up-box-bg {
  background-color: black;
  opacity: 0.6;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
}
.close-pop-up {
  font-weight: 900;
  z-index: 10000;
  background-color: #fff;
  font-size: 24px;
  padding: 3px 12px;
  top: 10px;
  right: 10px;
  position: fixed;
  cursor: pointer;
}
.pop-up-box {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
}
.form-box {
  z-index: 10000;
  position: absolute;
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 550px;
  padding: 30px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .form-box {
    height: 650px;
  }
}
.pop-form-heading h1 {
  background-color: tomato;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-family: "Segoe UI";
  text-transform: uppercase;
  padding: 10px;
}
.seo-pop-form-heading h1 {
  background-color: #1e1666;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-family: "Segoe UI";
  text-transform: uppercase;
  padding: 10px;
}

.pop-form-p {
  text-transform: uppercase;
  font-size: 14px;
}
.pop-up-btn {
  margin: 0 auto;
  background-color: tomato;
  color: #fff;
  font-weight: 500;
  padding: 10px 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
}
.seo-pop-up-btn {
  margin: 0 auto;
  background-color: #1e1666;
  color: #fff;
  font-weight: 500;
  padding: 10px 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
}
.seo-pop-up-btn:hover,
.pop-up-btn:hover {
  color: white;
}
.form-box .form-control {
  border: 2px solid #333;
  border-radius: 0;
}
.form-box label {
  font-weight: 900;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
}
.form-box input {
  background-color: transparent;
}
.form-box input::placeholder {
  color: #a1a5a9;
  text-transform: uppercase;
  font-size: 14px;
}
.pop-up-end-p {
  font-size: 14px;
}

.seo-data {
  border-top: 1px solid gray;
}
.seo-data-ul {
  list-style: none;
  padding-top: 14px;
}
.seo-data-ul li {
  line-height: 20px;
  padding-bottom: 8px;
}
/* .seo-data-ul li:before{
  padding-right: 6px;
  content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
} */

.seo-lineicon-include-box {
  margin: 0 0 0 0;
  padding: 35px 25px 25px 25px;
  border-width: 2px 2px 2px 2px;
  border-color: #1e1666;
}
.seo-lineicon-include-box:hover {
  box-shadow: 0px 7px 20px 5px rgba(0, 0, 0, 0.2);
}
.seo-lineicon-include-box-image {
  max-height: 100px;
}
.seo-lineicon-include-box-heading {
  color: #1e1666;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.3px;
}
.seo-lineicon-include-box-p {
  color: #6a7c92;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}

.seo-lineicon-include-box-btn {
  margin-bottom: 0;
  background-color: #1e1666;
  padding: 8px 28px;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  cursor: pointer;
}
.seo-lineicon-include-box-btn:hover {
  color: white;
}
.seo-faq-box {
  position: relative;
  padding-left: 30px;
  padding-bottom: 40px;
  padding-right: 30px;
}
.seo-faq-box:before {
  border-left: 15px solid #1e1666;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  top: 0px;
}

.seo-faq-h3 {
  font-family: Inter, sans-serif !important;
  font-weight: 800;
  font-size: 24px;
  color: #1e1666;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 20px;
  margin-top: 0px;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
}
.seo-faq-box h3:after {
  border-bottom: 4px solid #1e1666;
  width: 160px;
  content: "";
  bottom: 0px;
  left: 0px;
  position: absolute;
}
.seo-faq-box .seo-faq-box-p {
  color: #1d1d1f;
  line-height: 30px;
  font-family: roboto, sans-serif !important;
  font-size: 17px;
  font-weight: 300;
  position: relative;
  padding-bottom: 20px !important;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
}
.seo-faq-box p:after {
  border-bottom: 2px solid #5585ff;
  width: 80px;
  content: "";
  bottom: 0px;
  left: 0px;
  position: absolute;
}

.seo-chandigarh-page-p {
  color: #1d1d1f;
  line-height: 32px;
}

.seo-page-h2 {
}
.seo-title-bg {
  max-height: 400px;
}

.li-style-none {
  list-style: none;
  padding-left: 0;
}
.icon-green {
  color: #1e1666;
}

.pop-up-form-bg-image {
  background-image: url(../assets/images/pop-up-bg.jpg);
  background-size: cover;
}
.seo-chd-bg-image {
  background-image: url(../assets/images/seo-banner.png);
  background-repeat: repeat;
  width: 100%;
}
.home-page-header-bg {
}
.footer-div-bg-color {
  background-color: rgba(0, 83, 156, 0.3);
}
.footer-heading-p {
  color: white;
  font-size: 16px;
}
.footer-call-bg-clr {
  background-color: #65d6ce;
}
.footer-whatsapp-bg-clr {
  background-color: #54e346;
}
.contact-us-header-bg {
  background-image: url(../assets/images/contactus-banner-bg.png);
  width: 100%;
}
.contact-us-body-bg {
  background-image: url(../assets/images/contact-form-banner-middle.jpg);
  width: 100%;
}

.website-page-form-input label {
  color: #ffffff;
  margin-bottom: 3px;
  font-weight: 700;
}
.website-page-form-card-input-btn input {
  border-radius: 2px;
}
.website-page-form-card-input-btn input:hover {
  border-radius: 2px;
}
.upper-nav {
  color: white !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 32px !important;
  height: auto;
}
.upper-nav-container {
  width: 100%;
}
.upper-nav-number {
  padding: 6px 0;
  animation: cblink 1s infinite;
}
.upper-nav-number-1 {
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  background-color: #000000;
  animation: cblink 1s infinite;
  text-align: center;
}
.upper-nav-text-1 {
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  background-color: #000000;
  text-align: center;
}
@keyframes cblink {
  50% {
    background-color: transparent;
  }
}
.upper-nav-text {
  padding: 6px 0;
  border-radius: 5px;
}

.why-p {
  color: #000000;
}
.brand-span {
  color: #fff;
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
}

/* price table  */

@media only screen and (min-width: 786px) {
  .pricingTable {
    min-height: 610px;
  }
}

.pricingTable {
  font-family: "Open Sans", sans-serif;
  font-size: 0;
  text-align: center;
  padding: 5px 5px 20px;
  border-radius: 8px;
}

.pricingTable .pricingTable-header {
  color: #db4437;
  background: linear-gradient(to right, #f6f6f6, #fff, #f6f6f6);
  padding: 20px 5px;
  margin: 0 0 10px;
  border: 4px solid #fff;
  border-radius: 6px;
}
.pricingTable .title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.pricingTable .rating {
  background: #fff;
  width: 120px;
  height: 90px;
  padding: 10px 20px 10px 0;
  margin: 0;
  border-radius: 15px 0 0 0;
  list-style: none;
  display: inline-block;
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
}
.pricingTable .rating li:nth-child(1) {
  font-size: 30px;
  margin: 0 0 10px;
  display: block;
}
.pricingTable .rating li:nth-child(2) {
  font-size: 10px;
  margin-right: 25px;
  display: inline-block;
  vertical-align: top;
}
.pricingTable .rating li:nth-child(3) {
  font-size: 20px;
  display: inline-block;
}
.pricingTable .price-value {
  color: #fff;
  width: calc(100% - 120px);
  display: inline-block;
}
.pricingTable .price-value .amount {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 3px;
  display: block;
}
.pricingTable .price-value .duration {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  display: block;
}
.pricingTable .pricing-content {
  background: #fff;
  padding: 20px 15px;
  margin: 0 0 20px;
  border-radius: 0 20px 20px;
  list-style: none;
}
.pricingTable .pricing-content li {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  padding-bottom: 4px;
  margin-bottom: 10px;
  border-bottom: 2px solid #d1d1d1;
}
.pricingTable .pricing-content li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pricingTable .pricingTable-signup a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
}
.pricingTable .pricingTable-signup a:hover {
  letter-spacing: 3px;
  text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.4);
}
.pricingTable.orange {
  background: linear-gradient(to bottom, #0f9d58, #0f9d58);
}
.pricingTable.orange .title,
.pricingTable.orange .rating {
  color: #0f9d58;
}
.pricingTable.blue {
  background: linear-gradient(to bottom, #2049aa, #2049aa);
}
.pricingTable.blue .title,
.pricingTable.blue .rating {
  color: #2049aa;
}
.pricingTable.green {
  background: linear-gradient(to bottom, #89ac9b, #0f9d58);
}
.pricingTable.green .title,
.pricingTable.green .rating {
  color: #0f9d58;
}
@media only screen and (max-width: 990px) {
  .pricingTable {
    margin: 0 0 40px;
  }
}
.pricingTable1 {
  background: linear-gradient(to bottom, #2049aa, #2049aa);
  font-family: "Open Sans", sans-serif;
  font-size: 0;
  text-align: center;
  padding: 5px 5px 20px;
  border-radius: 30px;
}
.pricingTable1 .pricingTable-header {
  color: #2049aa;
  background: linear-gradient(to right, #f6f6f6, #fff, #f6f6f6);
  padding: 20px 5px;
  margin: 0 0 10px;
  border: 4px solid #fff;
  border-radius: 25px;
}
.pricingTable1 .title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.pricingTable1 .rating {
  color: #2049aa;
  background: #fff;
  width: 120px;
  height: 90px;
  padding: 10px 20px 10px 0;
  margin: 0;
  border-radius: 15px 0 0 0;
  list-style: none;
  display: inline-block;
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
}
.pricingTable1 .rating li:nth-child(1) {
  font-size: 30px;
  margin: 0 0 10px;
  display: block;
}
.pricingTable1 .rating li:nth-child(2) {
  font-size: 10px;
  margin-right: 25px;
  display: inline-block;
  vertical-align: top;
}
.pricingTable1 .rating li:nth-child(3) {
  font-size: 20px;
  display: inline-block;
}
.pricingTable1 .price-value {
  color: #fff;
  width: calc(100% - 120px);
  display: inline-block;
}
.pricingTable1 .price-value .amount {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 3px;
  display: block;
}
.pricingTable .price-value .amount-1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 3px;
  display: block;
}
.pricingTable1 .price-value .duration {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  display: block;
}
.pricingTable1 .pricing-content {
  background: #fff;
  padding: 20px 15px;
  margin: 0 0 20px;
  border-radius: 0 20px 20px;
  list-style: none;
}
.pricingTable1 .pricing-content li {
  color: #333;
  font-size: 17px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #d1d1d1;
}
.pricingTable1 .pricing-content li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pricingTable1 .pricingTable-signup a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
}
.pricingTable1 .pricingTable-signup a:hover {
  letter-spacing: 3px;
  text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.4);
}
/* process */
.serviceBox {
  color: #fff;
  /* background: #924242; */
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 0 0 55px;
  margin: 0 auto;
  position: relative;
}
.google-heading {
  text-align: center;
  text-transform: uppercase;
  font-weight: 900 !important;
  font-family: Inter, sans-serif !important;
  background: linear-gradient(to right, #ff9500, #c5221f);
  -webkit-background-clip: text;
  color: transparent;
}

.google-heading-custom-hr {
  border-color: #2b7cd3;
  width: 100%;
  border-top-width: 4px;
  animation: colorchange1 4s infinite;
}
@keyframes colorchange1 {
  0% {
    border-color: #2b7cd3;
  }
  25% {
    border-color: #d35230;
  }
  50% {
    border-color: #783390;
  }
  100% {
    border-color: #21a366;
  }
}
.google-table-1 {
  background: linear-gradient(to bottom, #ffba00, #ff9500);
}
.google-table-1 .rating,
.google-table-1 .title {
  color: #ff9500;
}
.google-table-2 {
  background: linear-gradient(to bottom, #00ac47, #34a853);
}
.google-table-2 .rating,
.google-table-2 .title {
  color: #34a853;
}
.google-table-3 {
  background: linear-gradient(to bottom, #2684fc, #2684fc);
}
.google-table-3 .rating,
.google-table-3 .title {
  color: #2684fc;
}
.google-table-4 {
  background: linear-gradient(to bottom, #ea4335, #c5221f);
}
.google-table-4 .rating,
.google-table-4 .title {
  color: #c5221f;
}
.google-box-1 {
}
.google-box-1 h3 {
  color: #41a5ee !important;
}
.google-box-2 {
}
.google-box-2 h3 {
  color: #41a5ee !important;
}
.google-box-3 {
}
.google-box-3 h3 {
  color: #41a5ee !important;
}
.google-box-4 {
}
.google-box-4 h3 {
  color: #41a5ee !important;
}
.microsoft-heading {
  text-align: center;
  text-transform: uppercase;
  font-weight: 900 !important;
  font-family: Inter, sans-serif !important;

  background: linear-gradient(to right, #2b7cd3, #d35230, #783390, #21a366);
  -webkit-background-clip: text;
  color: transparent;
}
@keyframes colorchange {
  0% {
    border-color: #2b7cd3;
  }
  25% {
    border-color: #d35230;
  }
  50% {
    border-color: #783390;
  }
  100% {
    border-color: #21a366;
  }
}
.microsoft-features-container .micro-up-box-custom {
  box-sizing: border-box;
  max-width: 500px;
  box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  cursor: pointer;
}
.microsoft-features-container .micro-up-box-custom:hover {
  margin-top: -20px;
  transition: 0.3s ease-in-out; /* delays for 1 second */
  -webkit-transition: 0.3s ease-in-out; /* for Safari & Chrome */
}
.microsoft-features-container .box-heading-div {
  flex: 70%;
  max-width: 100%;
}

/*   
    .micro-up-box-custom .box-image-div{
    } */
.microsoft-features-container .micro-up-box-custom .box-image {
  max-height: 65px;
  width: auto;
}
.microsoft-features-container .micro-up-box-custom .box-heading {
  color: #1e1666;
  line-height: 22px;
  font-size: 18px;
  font-weight: 800 !important;
  margin: 0;
}
.microsoft-features-container .micro-up-box-custom .box-p {
  color: #6a7c92;
  padding: 0;
  margin: 0;
}
.microsoft-features-container .third-container .heading {
  color: #1e1666;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: -0.3px;
}
.micro-box-1 {
  background-color: rgba(65, 165, 238, 0.06) !important;
}
.micro-box-1 h3 {
  color: #41a5ee !important;
}

.micro-box-2 {
  background-color: rgba(211, 82, 48, 0.06) !important;
}
.micro-box-2 h3 {
  color: #d35230 !important;
}
.micro-box-3 {
  background-color: rgba(40, 168, 234, 0.06) !important;
}
.micro-box-3 h3 {
  color: #28a8ea !important;
}
.micro-box-4 {
  background-color: rgba(138, 61, 133, 0.06) !important;
}
.micro-box-4 h3 {
  color: #8a3d85 !important;
}
.micro-box-5 {
  background-color: rgba(33, 163, 102, 0.06) !important;
}
.micro-box-5 h3 {
  color: #21a366 !important;
}
.micro-box-6 {
  background-color: rgba(25, 184, 165, 0.06) !important;
}
.micro-box-6 h3 {
  color: #19b8a5 !important;
}

.micro-box-7 {
  background-color: rgba(0, 120, 212, 0.06) !important;
}
.micro-box-7 h3 {
  color: #0078d4 !important;
}

.micro-box-8 {
  background-color: rgba(26, 155, 161, 0.1) !important;
}
.micro-box-8 h3 {
  color: #1a9ba1 !important;
}

.micro-box-9 {
  background-color: rgba(3, 107, 111, 0.06) !important;
}
.micro-box-9 h3 {
  color: #036b6f !important;
}
.micro-table-1 {
  background: linear-gradient(to bottom, #2b7cd3, #103f91);
}
.micro-table-1 .rating,
.micro-table-1 .title {
  color: #2b7cd3;
}

.micro-table-2 {
  background: linear-gradient(to bottom, #d35230, #c43e1c);
}
.micro-table-2 .rating,
.micro-table-2 .title {
  color: #d35230;
}

.micro-table-3 {
  background: linear-gradient(to bottom, #783390, #783372);
}
.micro-table-3 .rating,
.micro-table-3 .title {
  color: #783390;
}
.micro-table-4 {
  background: linear-gradient(to bottom, #21a366, #107c41);
}
.micro-table-4 .rating,
.micro-table-4 .title {
  color: #21a366;
}
.footer-copyright {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}
.contact-us-box {
  border-radius: 4px;
  background-color: red;
  border: 4px solid #fff;
}
.contact-us-box h3 {
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.contact-us-box p {
  text-align: center;
  color: #fff;
  font-weight: 600;
}
