/* patners */

#clients {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 130px;
  margin-top: 6%;
  margin-bottom: 6%;
  background-color: rgb(96, 63, 129);
}

#clients .clients-wrap {
  display: block;
  width: 100%;
  /* was 95%; */
  margin: 0 auto;
  overflow: hidden;
}

#clients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

#clients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 220px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}

#clients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
  filter: alpha(opacity=65);
  opacity: 0.65;
}

#clients .clients-wrap ul li img:hover {
  filter: alpha(opacity=100);
  opacity: 1.0;
}


/* end patners */
/* ======================== */
/* ========================	*/

/* faq */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: whitesmoke;
}

section {
  padding: 60px;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq {
  padding: 120px 0 90px;
  background: #f7fbff;
  min-height: 30vh;
}

.faq .section-title {
  margin-bottom: 54px;
}

.faq .section-title h2 {
  margin-bottom: 22px;
}

.faq .accordion .card {
  border: none;
  margin-bottom: 30px;
}

.faq .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 10px;
}

.faq .accordion .card .card-header {
  border: none;
  border-radius: 10px;
  padding: 0;
}

.faq .accordion .card .card-header h5 {
  padding: 0;
}

.faq .accordion .card .card-header h5 button {
  color: #1e3056;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 0 30px 0 70px;
  height: 80px;
  display: block;
  width: 100%;
  color: rgba(30, 48, 86, 0.8);
  text-align: left;
  background: #fff;
  -webkit-box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
  box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
  border-radius: 10px 10px 0 0;
  position: relative;
}

.faq .accordion .card .card-header h5 button:after {
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  color: rgb(30, 104, 135);
  text-align: center;
  border: 1px solid rgb(96, 63, 129);
  border-radius: 50%;
  line-height: 100%;
  content: '\f067';
  font-size: 10px;
  line-height: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.faq .accordion .card .card-header h5 button.collapsed {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(97, 125, 255, 0.2);
}

.faq .accordion .card .card-header h5 button[aria-expanded="true"]:after {
  content: '\f068';
  color: #fff;
  background-image: -webkit-linear-gradient(-180deg, #5e7eff 0%, #ff5f74 30%, #a85fff 100%);
}

.faq .accordion .card .card-body {
  -webkit-box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
  box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
  border-radius: 0 0 10px 10px;
  padding-top: 0;
  margin-top: -6px;
  padding-left: 72px;
  padding-right: 70px;
  padding-bottom: 23px;
  color: rgba(30, 48, 86, 0.8);
  line-height: 30px;
}

/* faq end*/

/* table */
.table th,
.table td {
  text-align: center;
  vertical-align: middle;
}

.check-mark {
  color: green;
  font-size: 20px;
}

.btn-get-started {
  width: 100%;
  margin-top: 20px;
}

.container {
  width: 100%;
}


/* Custom CSS for table headers */
.table thead th {
  font-size: 25px;
  /* Adjust the font size as needed */
  font-weight: bold;
  /* Optionally adjust font weight */
  text-align: center;
  /* Optionally adjust text alignment */
  background-color: #f0f0f0;
  /* Optionally adjust background color */
  color: #333;
  /* Optionally adjust text color */
  padding: 10px;
  /* Optionally adjust padding */

}

/* CSS for table cell styling */
.optimised-keyphrases {
  font-size: 25px;
  /* Adjust font size as needed */
  word-wrap: break-word;
  /* Allow text to wrap */
  color: #000000ad;
  font-weight: bold;
  text-align: center;
}

/* Example of responsive table styling */
.table-responsive {
  overflow-x: auto;
  /* Enable horizontal scrolling on smaller screens */
}

/* Example of making the table cells stack vertically on smaller screens */
@media (max-width: 768px) {

  .table-responsive table,
  .table-responsive table thead,
  .table-responsive table tbody,
  .table-responsive table th,
  .table-responsive table td,
  .table-responsive table tr {
    display: block;
  }

  .table-responsive table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .table-responsive table tbody tr {
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }

  .table-responsive table tbody td {
    /* Behave like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  .table-responsive table tbody td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    /* Label the data */
    content: attr(data-title);
    color: #000;
    font-weight: bold;
  }
}


/* CSS for table cells and icons */
.table-cell {
  text-align: center;
  /* Center align the content */
  padding: 45px;
  /* Adjust padding as needed */
}

.check-mark {
  margin: 55px;
  /* Add margin around the check-mark icons */
}


/* button */
.optimised-keyphrases {
  font-weight: bold;
}

.table-cell {
  text-align: center;
}

.check-mark {
  color: green;
}

.contact-info {
  text-align: center;
  margin-top: 10px;
}

.contact-info i {
  margin-right: 10px;

}

.btn-get-started {
  font-size: 1.2em;
  /* Increase the font size */
  height: 60px;
  padding: 10px 20px;
  /* Increase padding for larger button */
  background-color: rgb(96, 63, 129);
  color: whitesmoke;
}

/* end button */
/* end table */

/* portfolio */
/* ======================== */
/* ========================	*/
/* Custom Fonts */
body {
  font-family: 'Roboto', sans-serif;
}

/* Portfolio Title and Subtitle */
.portfolio-title {
  font-size: 2.5em;
  font-weight: 700;
  animation: fadeInDown 1s ease-in-out;
}

.portfolio-subtitle {
  font-size: 1.2em;
  color: #777;
  animation: fadeInUp 1s ease-in-out;
}

/* Portfolio Heading */
.portfolio-heading {
  font-size: 2em;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease-in-out;
}

/* Portfolio Items */
.portfolio-item {
  animation: fadeIn 1.5s ease-in-out;
  transition: transform 0.2s;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* end portfolio */
/* ======================== */
/* ========================	*/
/* BOXES */
/* @import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap'); */
/* body{
	font-size: 17px;
	line-height: 30px;
	font-weight: 400;
	-moz-osx-font-smoothing: grayscale;
	word-break: break-word;
	-webkit-font-smoothing: antialiased;
  font-family: "Epilogue", sans-serif;
  margin: 0;
  background: #fff;
} */
* {
  box-sizing: border-box;
}

.creative-cards {
  padding: 120px 0;
  position: relative;
}

.creative-cards .container {
  max-width: 1320px;
  width: 100%;
  padding-right: .75rem;
  padding-left: .75rem;
  margin-right: auto;
  margin-left: auto;
}

.creative-cards .container .row {
  display: flex;
  flex-wrap: wrap;
}

.creative-cards .container .row .card-column {
  flex: 0 0 auto;
  width: 33.33333333%;
  text-align: center;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.card-details {
  width: 80%;
  margin: auto;
  position: relative;
  transition: .3s ease-in-out;
}

.card-details:before {
  content: "";
  width: 190px;
  height: 380px;
  background: #f7f6f2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skew(-20deg, 0deg);
  z-index: -1;
  transition: .3s ease-in-out;
}

.card-details:hover:before {
  background-color: #fffab3;
}

.card-icons {
  width: 140px;
  height: 150px;
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icons:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid;
  width: 100%;
  height: 100%;
  transform: skew(-20deg, 0deg);
  background: #fff;
  border-color: rgb(96, 63, 129);
  transition: .3s ease-in-out;
}

.card-details:hover .card-icons:before {
  background-color: #1D6E8E;
}

.card-icons img {
  position: relative;
  width: 70px;
  height: 70px;
}

.card-details h3 {
  margin-bottom: 15px;
  margin-top: 50px;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
}

.card-details h3 a {
  color: #000;
  text-decoration: none;
}

.card-details p {
  font-size: 16px;
  line-height: 30px;
  color: #444;
  font-weight: 400;
  margin-bottom: 30px;
}

.read-more-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 100%;
  margin: auto;
  background: #fff;
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  border-color: rgb(96, 63, 129);
  transition: .3s ease-in-out;
  text-decoration: none;
}

.read-more-btn i {
  color: #000;
  font-size: 12px;
}

.card-details:hover .read-more-btn {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* ============= Responsive Ipad ==================== */
@media (max-width: 992px) {
  .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 40px;
  }
}

/* ============= Responsive Iphone ==================== */
@media (max-width: 480px) {
  .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 20px;
  }

  .card-details {
    width: 100%;
  }

  .read-more-btn {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
  }
}


/* icon first */

.seo-icon {
  position: relative;
  width: 125px;
  height: 130px;
}

/* Magnifying Glass */
.magnifying-glass {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 50px;
  height: 50px;
  border: 5px solid #007bff;
  border-radius: 50%;
}

.magnifying-glass .handle {
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 10px;
  height: 30px;
  background-color: #007bff;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: top left;
}

/* Gear */
.gear {
  position: absolute;
  top: 30px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: #1D6E8E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gear .gear-inner {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
}

/* Bar Graph */
.bar-graph {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 80px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
}

.bar {
  width: 20px;
  background-color: #ffc107;
  border-radius: 5px;
}

.bar1 {
  height: 40px;
}

.bar2 {
  height: 60px;
}

.bar3 {
  height: 50px;
}

/* end icon first */

/* icon secound */

.seo-pricing-icon {
  position: relative;
  width: 150px;
  height: 150px;
}

/* Price Tag */
.price-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 80px;
  background-color: #007bff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

.price-tag::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: #007bff;
  transform: translateX(-50%) rotate(45deg);
}

/* Chart */
.chart {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 60px;
  display: flex;
  justify-content: space-between;
}

.bar {
  width: 20px;
  background-color: #1D6E8E;
  border-radius: 5px;
}

.bar1 {
  height: 30px;
}

.bar2 {
  height: 50px;
}

.bar3 {
  height: 40px;
}


/* end icon secound */
/*  icon third */
.seo-design-icon {
  position: relative;
  width: 120px;
  height: 150px;
}

/* Pencil */
.pencil {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 80px;
  background-color: rgb(96, 63, 129);
  border-radius: 5px 5px 0 0;
}

.pencil-tip {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #000;
  transform: translateX(-50%);
}

/* Gear */

/* Chart */


.bar1 {
  height: 30px;
}

.bar2 {
  height: 50px;
}

.bar3 {
  height: 40px;
}

/* end icon third */

/* END BOXES */

/* services include */
/* ======================== */
/* ========================	*/
/* heding and sub heding */
/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.section2 {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
}

.section2 h1 {
  color: rgb(96, 63, 129);
  margin-bottom: 10px;
  font-size: 50px;
}

.section2 p {
  color: #555;
  font-size: 25px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section2 {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .section2 {
    padding: 10px;
  }
}


/* end heding and sub heding */
#servicesinclude {
  display: flex;
  flex-direction: row;
}

.services-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-right: 20px;
}

.service {
  margin: 10px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  /* background-color: #007bff; */
  border-radius: 50%;
}


.service-name {
  font-weight: bold;
  color: rgb(96, 63, 129);
  font-size: 25px;
}

#content-area {
  width: 600px;
  display: flex;
  flex-direction: column;
  margin-left: 20%;

}

.service-content {
  display: none;
  margin: 20px 0;
}

.service-content h2 {
  margin-top: 0;
  color: #007bff;
}

.service-content p {
  color: #555;
}

.service-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 10px;
}

#audit.service-content {
  display: block;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.service:hover {
  transform: translateY(-5px);
}



.service-content {
  display: none;
  margin-top: 20px;
}

.service-content h2 {
  color: #007bff;
  margin-bottom: 10px;
}

.service-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.service-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .services-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .service {
    width: 100%;
    max-width: 250px;
    /* Adjust based on your design */
  }
}

/* icon */
.icon {
  width: 50px;
  /* Adjust size as needed */
  height: 50px;
  /* Adjust size as needed */
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block;
  vertical-align: middle;
}

.audit-icon {
  background-image: url('https://cdn.iconscout.com/icon/premium/png-256-thumb/seo-audit-1-676574.png?f=webp');
  /* Replace with your icon image path */
  /* If you don't have an icon image, you can use CSS to create a basic shape or SVG */

  /* Example styles to create a circle */
  border-radius: 50%;
}


.icon {
  width: 50px;
  /* Adjust size as needed */
  height: 50px;
  /* Adjust size as needed */
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  /* To create a circular shape */
  /* You can also use background-image property to set an icon image */
}

.keyword-icon {
  /* Example background image for the icon */
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRRxCiUOmxDjDVP8wT8HXwsYZYa_0D6Aspb0wsA8lJ-cnLgtj8PQY9HZTZEV7qFKj4TNm4&usqp=CAU');
  /* Replace with your icon image path */
}


.icon {
  width: 50px;
  /* Adjust size as needed */
  height: 50px;
  /* Adjust size as needed */
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  /* To create a circular shape */
  /* You can also use background-image property to set an icon image */
}

.link-icon {
  /* Example background image for the icon */
  background-image: url('https://static.vecteezy.com/system/resources/previews/016/679/233/non_2x/link-building-icon-suitable-for-a-wide-range-of-digital-creative-projects-happy-creating-vector.jpg');
  /* Replace with your icon image path */
}

/* Adjustments based on your specific icon design and dimensions */

.icon {
  width: 50px;
  /* Adjust size as needed */
  height: 50px;
  /* Adjust size as needed */
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  /* To create a circular shape */
  /* You can also use background-image property to set an icon image */
}

.on-page-icon {
  /* Example background image for the icon */
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSUCZQH8fll5E8IJXI1TyOFkVf_7qUESwmkYtfDcenMS3nZclzMDUN-fv6CLIOv1jcNr0A&usqp=CAU');
  /* Replace with your icon image path */
}

/* Adjustments based on your specific icon design and dimensions */

.icon {
  width: 50px;
  /* Adjust size as needed */
  height: 50px;
  /* Adjust size as needed */
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  /* To create a circular shape */
  /* You can also use background-image property to set an icon image */
}

.off-page-icon {
  /* Example background image for the icon */
  background-image: url('https://digitalshiftmedia.com/wp-content/swift-ai/images/wp-content/uploads/seo-png.webp');
  /* Replace with your icon image path */
}

/* Adjustments based on your specific icon design and dimensions */
.icon {
  width: 50px;
  /* Adjust size as needed */
  height: 50px;
  /* Adjust size as needed */
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  /* To create a circular shape */
  /* You can also use background-image property to set an icon image */
}

.technical-icon {
  /* Example background image for the icon */
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSWtSxOAPjExU-WYpLyokGJVaOAJtCLyVf3vw&s');
  /* Replace with your icon image path */
}

/* Adjustments based on your specific icon design and dimensions */
.icon {
  width: 50px;
  /* Adjust size as needed */
  height: 50px;
  /* Adjust size as needed */
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  /* To create a circular shape */

  /* You can also use background-image property to set an icon image */
}

.content-icon {
  /* Example background image for the icon */
  background-image: url('https://cdn-icons-png.flaticon.com/128/3080/3080026.png');
  /* Replace with your icon image path */
}

/* end icon */

/* Adjustments based on your specific icon design and dimensions */

/* end services include */
/* ======================== */
/* ========================	*/
/* optimization plans */

/* .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
}

header {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}

header h1 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 10px;
}

header p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.main-content {
  display: flex;
  flex: 2;
  width: 100%;
  margin-left: 20px;
}

.content {
  flex: 2;
  padding-right: 20px;
}

.sidebar {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 300px;
}

.sidebar h2 {
  color: #007bff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  cursor: pointer;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #333;
}

.learn-more {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  margin-top: 20px;
}

.learn-more:hover {
  background-color: #0056b3;
}

.dropdown {
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.dropdown h2 {
  color: #007bff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.dropdown-content {
  display: none;
}

.dropdown h3 {
  color: #333;
  font-size: 1.2rem;
  margin-top: 10px;
}

.dropdown p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 5px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .content-wrapper {
      flex-direction: column;
  }

  .main-content {
      flex-direction: column;
      margin-left: 0;
  }

  .sidebar {
      margin-left: 0;
      margin-top: 20px;
  }
}
 */

/* end optimization plans */
/* marketing ROI */
/* ======================== */
/* ========================	*/

.hheding {
  text-align: center;
  color: rgb(96, 63, 129);
  padding: 20px 0;
  font-size: 60px;
  animation: fadeIn 1s ease-in-out;
  width: 100%;
}

#marketingroi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
}

.box {
  text-align: center;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  width: 30%;
  margin: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: slideInUp 1s ease-in-out;

}

.mainhed h2 {
  margin-bottom: 20px;
  color: black;
  font-size: 32px;
  font-weight: bold;
  /* Bold font */
}

.content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  margin-bottom: 10px;
}

.content::before {
  content: "✔️";
  color: rgb(96, 63, 129);
  font-size: 20px;
  margin-right: 10px;
}

.content.cancel::before {
  content: "❌";
  color: #1D6E8E;
  font-size: 20px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .box {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .box {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* end marketing ROI */
/* price starrt first */
/* ======================== */
/* ========================	*/
@import url(https://fonts.googleapis.com/css?family=Lato:400,100,100italic,300,300italic,400italic,700italic,700,900italic,900);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);

body {
  background-color: #eee;
}

#generic_price_table {
  background-color: #f0eded;
}

/*PRICE COLOR CODE START*/
#generic_price_table .generic_content {
  background-color: #fff;
}

#generic_price_table .generic_content .generic_head_price {
  background-color: #f6f6f6;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
  border-color: #e4e4e4 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e4e4e4;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
  color: #525252;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
  color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
  color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
  color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
  color: #414141;
}

#generic_price_table .generic_content .generic_feature_list ul li {
  color: #a7a7a7;
}

#generic_price_table .generic_content .generic_feature_list ul li span {
  color: #414141;
}

#generic_price_table .generic_content .generic_feature_list ul li:hover {
  background-color: #E4E4E4;
  border-left: 5px solid rgb(96, 63, 129);
}

#generic_price_table .generic_content .generic_price_btn a {
  border: 1px solid rgb(96, 63, 129);
  color: rgb(96, 63, 129);
}

#generic_price_table .generic_content.active .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg {
  border-color: rgb(96, 63, 129) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgb(96, 63, 129);
  color: #fff;
}

#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head span,
#generic_price_table .generic_content.active .generic_head_price .generic_head_content .head span {
  color: #fff;
}

#generic_price_table .generic_content:hover .generic_price_btn a,
#generic_price_table .generic_content.active .generic_price_btn a {
  background-color: rgb(96, 63, 129);
  color: #fff;
}

#generic_price_table {
  margin: 50px 0 50px 0;
  font-family: 'Raleway', sans-serif;
}

.row .table {
  padding: 28px 0;
}

/*PRICE BODY CODE START*/

#generic_price_table .generic_content {
  overflow: hidden;
  position: relative;
  text-align: center;
}

#generic_price_table .generic_content .generic_head_price {
  margin: 0 0 20px 0;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content {
  margin: 0 0 50px 0;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
  border-style: solid;
  border-width: 90px 1411px 23px 399px;
  position: absolute;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head {
  padding-top: 40px;
  position: relative;
  z-index: 1;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag {
  padding: 0 0 20px;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price {
  display: block;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 400;
  vertical-align: middle;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
  font-family: "Lato", sans-serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 60px;
  padding: 0;
  vertical-align: middle;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  vertical-align: bottom;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  vertical-align: bottom;
}

#generic_price_table .generic_content .generic_feature_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#generic_price_table .generic_content .generic_feature_list ul li {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  padding: 15px 0;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table .generic_content .generic_feature_list ul li:hover {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;

}

#generic_price_table .generic_content .generic_feature_list ul li .fa {
  padding: 0 10px;
}

#generic_price_table .generic_content .generic_price_btn {
  margin: 20px 0 32px;
}

#generic_price_table .generic_content .generic_price_btn a {
  border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-border-radius: 50px;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  outline: medium none;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
}

#generic_price_table .generic_content,
#generic_price_table .generic_content:hover,
#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content .generic_head_price .generic_head_content .head h2,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head h2,
#generic_price_table .generic_content .price,
#generic_price_table .generic_content:hover .price,
#generic_price_table .generic_content .generic_price_btn a,
#generic_price_table .generic_content:hover .generic_price_btn a {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
}

@media (max-width: 320px) {}

@media (max-width: 767px) {
  #generic_price_table .generic_content {
    margin-bottom: 75px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #generic_price_table .col-md-3 {
    float: left;
    width: 50%;
  }

  #generic_price_table .col-md-4 {
    float: left;
    width: 50%;
  }

  #generic_price_table .generic_content {
    margin-bottom: 75px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 1200px) {}

#generic_price_table_home {
  font-family: 'Raleway', sans-serif;
}

.text-center h1,
.text-center h1 a {
  color: #7885CB;
  font-size: 30px;
  font-weight: 300;
  text-decoration: none;
}

.demo-pic {
  margin: 0 auto;
}

.demo-pic:hover {
  opacity: 0.7;
}

#generic_price_table_home ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: table;
}

#generic_price_table_home li {
  float: left;
}

#generic_price_table_home li+li {
  margin-left: 10px;
  padding-bottom: 10px;
}

#generic_price_table_home li a {
  display: block;
  width: 50px;
  height: 50px;
  font-size: 0px;
}

#generic_price_table_home .blue {
  background: #3498DB;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .emerald {
  background: #2ECC71;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .grey {
  background: #7F8C8D;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .midnight {
  background: #34495E;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .orange {
  background: #E67E22;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .purple {
  background: #9B59B6;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .red {
  background: #E74C3C;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .turquoise {
  background: #1ABC9C;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .blue:hover,
#generic_price_table_home .emerald:hover,
#generic_price_table_home .grey:hover,
#generic_price_table_home .midnight:hover,
#generic_price_table_home .orange:hover,
#generic_price_table_home .purple:hover,
#generic_price_table_home .red:hover,
#generic_price_table_home .turquoise:hover {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .divider {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 20px;
}

#generic_price_table_home .divider span {
  width: 100%;
  display: table;
  height: 2px;
  background: #ddd;
  margin: 50px auto;
  line-height: 2px;
}

#generic_price_table_home .itemname {
  text-align: center;
  font-size: 50px;
  padding: 50px 0 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
  text-decoration: none;
  font-weight: 300;
}

#generic_price_table_home .itemnametext {
  text-align: center;
  font-size: 20px;
  padding-top: 5px;
  text-transform: uppercase;
  display: inline-block;
}

#generic_price_table_home .footer {
  padding: 40px 0;
}

.price-heading {
  text-align: center;
}

.price-heading h1 {
  color: #666;
  margin: 0;
  padding: 0 0 50px 0;
}

.demo-button {
  background-color: #333333;
  color: #ffffff;
  display: table;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 50px;
  outline-color: -moz-use-text-color;
  outline-style: none;
  outline-width: medium;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}

.bottom_btn {
  background-color: #333333;
  color: #ffffff;
  display: table;
  font-size: 28px;
  margin: 60px auto 20px;
  padding: 10px 25px;
  text-align: center;
  text-transform: uppercase;
}

.demo-button:hover {
  background-color: #666;
  color: #FFF;
  text-decoration: none;

}

.bottom_btn:hover {
  background-color: #666;
  color: #FFF;
  text-decoration: none;
}

/* end price starrt first */
/* price starrt seocund*/
/* ======================== */
/* ========================	*/
/* hedings top */
#seo-heading {
  text-align: center;
  padding: 20px;
  color: rgb(96, 63, 129);
  animation: fadeIn 1s ease-in-out;
  font-size: 40px;
  font-weight: bold;
}

#seo-subheading {
  text-align: center;
  padding: 10px 20px;
  color: #1D6E8E;
}

#seo-description {
  text-align: center;
  padding: 10px 20px;
  color: #333;
  width: 70%;
  margin-left: 17%;
  font-size: 22px;

}

@media (max-width: 768px) {
  #seo-heading {
    font-size: 40px;
  }

  #seo-subheading {
    font-size: 18px;
  }

  #seo-description {
    font-size: 22px;
  }
}

@media (min-width: 769px) {
  #seo-heading {
    font-size: 40px;
  }

  #seo-subheading {
    font-size: 24px;
  }

  #seo-description {
    font-size: 22px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* end hedings top */
.main {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
  font-family: "Open Sans";
  width: 70%;
  margin: 0 auto;
  margin-top: 5%;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 none;
}

.price-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.price-table tr td {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 24px;
  font-size: 14px;
}

.price-table tr td:first-child {
  border-left: 0 none;
}

.price-table tr td:not(:first-child) {
  text-align: center;
}

.price-table tr:nth-child(even) {
  background-color: #FFFFFF;
}

.price-table tr:hover {
  background-color: #EEEEEE;
}

.price-table .fa-check {
  color: #5336ca;
}

.price-table .fa-times {
  color: #D8D6E3;
}

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(3) {
  background-color: rgba(216, 214, 227, 0.25);
}

.price-table tr td:nth-child(3) {
  background-color: rgba(216, 214, 227, 0.15);
  padding: 8px 48px;
}


.price-table tr.price-table-head td {
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat";
  text-transform: uppercase;
}

.price-table tr.price-table-head {
  background-color: #5336ca;
  color: #FFFFFF;
}

.price-table td.price {
  color: #f43f54;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat";
}

.price-table td.price a {
  background-color: #5336ca;
  color: #FFFFFF;
  padding: 12px 32px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat";
  text-transform: uppercase;
  display: inline-block;
  border-radius: 64px;
}

.price-table td.price-table-popular {
  font-family: "Montserrat";
  border-top: 3px solid #5336ca;
  color: #5336ca;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 48px;
  font-weight: 700;
}

.price-table .price-blank {
  background-color: #fafafa;
  border: 0 none;
}

.price-table svg {
  width: 90px;
  fill: #5336ca;
}

/* end price starrt */
/* ======================== */
/* ========================	*/

/*third price strat*/
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

/* heding main */
/* Base styles for h1 and h3 */
#main-heading2 {
  font-size: 2.5em;
  text-align: center;
  margin: 20px 0;
  padding: 0 10px;
  /* margin-top: 155%; */
  color: white;
}

#sub-heading2 {
  font-size: 1.5em;
  text-align: center;
  margin: 20px 0;
  padding: 0 10px;
  line-height: 1.4;
  color: white;
  width: 55%;
  margin-left: 24%;
}

/* Responsive styles */
@media (max-width: 1200px) {
  #main-heading2 {
    font-size: 2.2em;
  }
  #sub-heading2 {
    font-size: 1.4em;
  }
}

@media (max-width: 992px) {
  #main-heading2 {
    font-size: 2em;
  }
  #sub-heading2 {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  #main-heading2 {
    font-size: 1.8em;
  }
  #sub-heading2 {
    font-size: 1.2em;
  }
}

@media (max-width: 576px) {
  #main-heading2 {
    font-size: 1.6em;
  }
  #sub-heading2 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  #main-heading2 {
    font-size: 1.4em;
  }
  #sub-heading2 {
    font-size: 1em;
  }
}

@media (max-width: 360px) {
  #main-heading2 {
    font-size: 1.2em;
  }
  #sub-heading2 {
    font-size: 0.9em;
  }
}

/* end heding main */

#price {
  text-align: center;
  background-color: rgb(96, 63, 129);
  height: 900px;
}
#pricebox {
  margin-top: 5%;
}

.plan {
  display: inline-block;
  margin: 10px 1%;
  font-family: 'Lato', Arial, sans-serif;
}

.plan-inner {
  background: #fff;
  margin: 0 auto;
  min-width: 280px;
  max-width: 100%;
  position:relative;
}

.entry-title {
  background: #53CFE9;
  height: 140px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.entry-title>h3 {
  background: #20BADA;
  font-size: 20px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.entry-title .price {
  position: absolute;
  bottom: -25px;
  background: #20BADA;
  height: 95px;
  width: 95px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 5px solid #fff;
  line-height: 80px;
  font-size: 28px;
  font-weight: 700;
}

.price span {
  font-size: 9px;
  bottom: -10px;
  left: 30px;
  font-weight: 400;
}
#price span {
  position: absolute;

}


.entry-content {
  color: #323232;
}

.entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.entry-content li {
  border-bottom: 1px solid #E5E5E5;
  padding: 10px 0;
}

.entry-content li:last-child {
  border: none;
}

.btn {
  padding: 3em 0;
  text-align: center;
}

.btn a {
  background: #323232;
  padding: 10px 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none
}
.hot {
    position: absolute;
    top: -7px;
    background: #F80;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    padding: 2px 5px;
    font-size: 9px;
    border-radius: 2px;
    right: 10px;
    font-weight: 700;
}
.basic .entry-title {
  background: #75DDD9;
}

.basic .entry-title > h3 {
  background: #44CBC6;
}

.basic .price {
  background: #44CBC6;
}

.standard .entry-title {
  background: #4484c1;
}

.standard .entry-title > h3 {
  background: #3772aa;
}

.standard .price {
  background: #3772aa;
}

.ultimite .entry-title > h3 {
  background: #DD4B5E;
}

.ultimite .entry-title {
  background: #F75C70;
}

.ultimite .price {
  background: #DD4B5E;
}

/*end price strat*/