/*************************
*******Typography******
**************************/
@font-face {
  font-family: "stolzl-100";
  src: url("../fonts/stolzl_thin.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "stolzl-300";
  src: url("../fonts/stolzl_light.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "stolzl-400";
  src: url("../fonts/stolzl_regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "stolzl-book";
  src: url("../fonts/stolzl_book.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "stolzl-500";
  src: url("../fonts/stolzl_medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "stolzl-700";
  src: url("../fonts/stolzl_bold.woff2") format("woff2");
  font-display: swap;
}

.stol-100 {
  font-family: "stolzl-100";
  font-weight: 100;
}
.stol-300 {
  font-family: "stolzl-300";
  font-weight: 300;
}
.stol-400 {
  font-family: "stolzl-400";
  font-weight: 400;
}
.stol-book {
  font-family: "stolzl-book";
  font-weight: 400;
}
.stol-500 {
  font-family: "stolzl-500";
  font-weight: 500;
}
.stol-700 {
  font-family: "stolzl-700";
  font-weight: 700;
}

/* responsiveness */
/* Base breakpoints */
:root {
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
}

/* Small screens */
@media (min-width: 640px) {
  [class*="sm\\:"] {
    --current-prefix: "sm:";
    --current-class: attr(class);
  }
}

/* Medium screens */
@media (min-width: 768px) {
  [class*="md\\:"] {
    --current-prefix: "md:";
    --current-class: attr(class);
  }
}

/* Large screens */
@media (min-width: 1024px) {
  [class*="lg\\:"] {
    --current-prefix: "lg:";
    --current-class: attr(class);
  }
}

/* Apply base styles without prefix */
[class*=":"] {
  @apply: var(--current-class);
}

html {
  scroll-behavior: smooth;
}
body {
  background: #fff;
  font-family: "stolzl-400";
  color: #4e4e4e;
  line-height: 22px;
}

a {
  -webkit-transition: color 300ms, background-color 300ms;
  -moz-transition: color 300ms, background-color 300ms;
  -o-transition: color 300ms, background-color 300ms;
  transition: color 300ms, background-color 300ms;
}

a:hover,
a:focus {
  color: #d43133;
}

hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}

.btn-primary {
  padding: 8px 20px;
  background: #c52d2f;
  color: #fff;
  border-radius: 4px;
  border: none;
  margin-top: 10px;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #c52d2f;
  outline: none;
  box-shadow: none;
}

.btn-transparent {
  border: 3px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-transparent:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

a:hover,
a:focus {
  color: #c3a8ff69;
  text-decoration: none;
  outline: none;
}

.dropdown-menu {
  margin-top: -1px;
  min-width: 180px;
}

.center h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 20px;
}

.media > .pull-left {
  margin-right: 20px;
}

.media > .pull-right {
  margin-left: 20px;
}

body > section {
  padding: 40px 0;
}

.center {
  text-align: center;
  padding-bottom: 55px;
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

.lead {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.transparent-bg {
  background-color: transparent !important;
  margin-bottom: 0;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/*************************
*******Header******
**************************/

#header .search {
  display: inline-block;
}

.navbar > .container .navbar-brand {
  margin-left: 0;
}

.top-bar {
  padding: 10px 0;
  background: #191919;
  border-bottom: 1px solid #222;
  line-height: 28px;
}

.top-number {
  color: #fff;
}

.top-number p {
  margin: 0;
}

.social {
  text-align: right;
}

.social-share {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.social-share li {
  display: inline-block;
}

ul.social-share li a {
  display: inline-block;
  color: #fff;
  background: #404040;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 2px;
}

ul.social-share li a:hover {
  background: #c52d2f;
  color: #fff;
}

.search i {
  color: #fff;
}

input.search-form {
  background: transparent;
  border: 0 none;
  width: 60px;
  padding: 0 10px;
  color: #fff;
  -webkit-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  -o-transition: all 400ms;
  transition: all 400ms;
}

input.search-form::-webkit-input-placeholder {
  color: transparent;
}

input.search-form:hover::-webkit-input-placeholder {
  color: #fff;
}

input.search-form:hover {
  width: 180px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  background: #ffffff;
  padding: 15px 0;
  padding-bottom: 0;
}

.navbar-nav {
  margin-top: 0;
}

.navbar-nav > li {
  padding: 10px;
}

.navbar-inverse .navbar-nav > li > a {
  padding: 5px 12px;
  margin: 0;
  border-radius: 20px;
  color: #000;
  line-height: 24px;
  font-size: 16px;
  display: inline-block;
}

.navbar-inverse .navbar-nav > li > a:hover {
  color: #414573;
  transition: all 0.4s ease-in-out;
}

.navbar-inverse {
  border: none;
}

.navbar-inverse .navbar-brand {
  font-size: 36px;
  line-height: 50px;
  color: #fff;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  /* background-color: #7159a8;
  color: #fff; */
}

.navbar-inverse .navbar-nav .dropdown-menu {
  background-color: #7159a8;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
  border: 0;
  padding: 0;
  margin-top: 0px;
  border-top: 0;
  border-radius: 10px;
  margin-right: 17px;
  left: 0;
}

.navbar-inverse .navbar-nav .dropdown-menu:before {
  position: absolute;
  top: 0;
}

.navbar-inverse .navbar-nav .dropdown-menu > li > a {
  padding: 8px 15px;
  color: #fff;
  transition: all 0.3s ease;
}

.navbar-inverse .navbar-nav .dropdown-menu > li:hover > a,
.navbar-inverse .navbar-nav .dropdown-menu > li:focus > a,
.navbar-inverse .navbar-nav .dropdown-menu > li.active > a {
  background-color: #af98e3;
  color: #fff;
}

.navbar-inverse .navbar-nav .dropdown-menu > li:last-child > a {
  border-radius: 0 0 3px 3px;
}

.navbar-inverse .navbar-nav .dropdown-menu > li.divider {
  background-color: transparent;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-top: 0;
  padding-bottom: 0;
  margin-bottom: 15px;
}
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

/*************************
*******Home Page******
**************************/

#main-slider {
  position: relative;
  background-color: #eff1ff;
}

.no-margin {
  margin: 0;
  padding: 8rem 0 0 0 !important;
}

#main-slider .carousel .carousel-content {
  margin-top: 15rem;
}

#main-slider .carousel .slide-margin {
  margin-top: 140px;
}

#main-slider .carousel h2 {
  color: #fff;
}

.btn-slide {
  padding: 8px 20px;
  background: #7159a8;
  color: #fff;
  border-radius: 50px;
  margin-top: 25px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-slide:hover {
  transform: translateY(-5px);
  color: white;
}

#main-slider .carousel .slider-img {
  text-align: right;
  position: absolute;
}

#main-slider .carousel .item {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0 !important;
  opacity: 0;
  top: 0;
  position: absolute;
  width: 100%;
  display: block !important;
  height: 660px;
  -webkit-transition: opacity ease-in-out 500ms;
  -moz-transition: opacity ease-in-out 500ms;
  -o-transition: opacity ease-in-out 500ms;
  transition: opacity ease-in-out 500ms;
}

#main-slider .carousel .item:first-child {
  top: auto;
  position: relative;
}

#main-slider .carousel .item.active {
  opacity: 1;
  -webkit-transition: opacity ease-in-out 500ms;
  -moz-transition: opacity ease-in-out 500ms;
  -o-transition: opacity ease-in-out 500ms;
  transition: opacity ease-in-out 500ms;
  z-index: 1;
}

#main-slider .prev,
#main-slider .next {
  position: absolute;
  top: 50%;
  background-color: #7159a8;
  color: #fff;
  display: inline-block;
  margin-top: -25px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  z-index: 5;
}

#main-slider .prev:hover,
#main-slider .next:hover {
  background-color: #000;
}

#main-slider .prev {
  left: 10px;
}

#main-slider .next {
  right: 10px;
}

#main-slider .carousel-indicators li {
  width: 20px;
  height: 20px;
  background-color: #fff;
  margin: 0 15px 0 0;
  position: relative;
}

#main-slider .carousel-indicators li:after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  left: -3.7px;
  top: -4px;
}

#main-slider .carousel-indicators .active {
  width: 20px;
  height: 20px;
  background-color: #7159a8;
  margin: 0 15px 0 0;
  position: relative;
}

#main-slider .carousel-indicators .active:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #7159a8;
  left: -3px;
  top: -3px;
}

#main-slider .active .animation.animated-item-1 {
  -webkit-animation: fadeInUp 300ms linear 300ms both;
  -moz-animation: fadeInUp 300ms linear 300ms both;
  -o-animation: fadeInUp 300ms linear 300ms both;
  -ms-animation: fadeInUp 300ms linear 300ms both;
  animation: fadeInUp 300ms linear 300ms both;
}

#main-slider .active .animation.animated-item-2 {
  -webkit-animation: fadeInUp 300ms linear 600ms both;
  -moz-animation: fadeInUp 300ms linear 600ms both;
  -o-animation: fadeInUp 300ms linear 600ms both;
  -ms-animation: fadeInUp 300ms linear 600ms both;
  animation: fadeInUp 300ms linear 600ms both;
}

#main-slider .active .animation.animated-item-3 {
  -webkit-animation: fadeInUp 300ms linear 900ms both;
  -moz-animation: fadeInUp 300ms linear 900ms both;
  -o-animation: fadeInUp 300ms linear 900ms both;
  -ms-animation: fadeInUp 300ms linear 900ms both;
  animation: fadeInUp 300ms linear 900ms both;
}

#main-slider .active .animation.animated-item-4 {
  -webkit-animation: fadeInUp 300ms linear 1200ms both;
  -moz-animation: fadeInUp 300ms linear 1200ms both;
  -o-animation: fadeInUp 300ms linear 1200ms both;
  -ms-animation: fadeInUp 300ms linear 1200ms both;
  animation: fadeInUp 300ms linear 1200ms both;
}

#feature {
  background: #f2f2f2;
  padding-bottom: 40px;
}

.features {
  padding: 0;
}

.feature-wrap {
  margin-bottom: 35px;
  overflow: hidden;
}

.feature-wrap h2 {
  margin-top: 10px;
}

.feature-wrap .pull-left {
  margin-right: 25px;
}

.feature-wrap i {
  font-size: 48px;
  height: 110px;
  width: 110px;
  margin: 3px;
  border-radius: 100%;
  line-height: 110px;
  text-align: center;
  background: #ffffff;
  color: #c52d2f;
  border: 3px solid #ffffff;
  box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
  float: left;
  margin-right: 25px;
}

.feature-wrap i:hover {
  background: #c52d2f;
  color: #fff;
  box-shadow: inset 0 0 0 5px #c52d2f;
  -webkit-box-shadow: inset 0 0 0 5px #c52d2f;
  border: 3px solid #c52d2f;
}

#recent-works .col-xs-12.col-sm-4.col-md-3 {
  padding: 0;
}

#recent-works {
  padding-bottom: 70px;
}

.recent-work-wrap {
  position: relative;
}

.recent-work-wrap img {
  width: 100%;
}

.recent-work-wrap .recent-work-inner {
  top: 0;
  background: transparent;
  opacity: 0.8;
  width: 100%;
  border-radius: 0;
  margin-bottom: 0;
}

.recent-work-wrap .recent-work-inner h3 {
  margin: 10px 0;
}

.recent-work-wrap .recent-work-inner h3 a {
  font-size: 24px;
  color: #fff;
}

.recent-work-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 0;
  background: #c52d2f;
  color: #fff;
  vertical-align: middle;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
  padding: 30px;
}

.recent-work-wrap .overlay .preview {
  bottom: 0;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  color: #fff;
}

.recent-work-wrap:hover .overlay {
  opacity: 1;
}

#middle {
  background: #f2f2f2;
}

.skill h2 {
  margin-bottom: 25px;
}

.progress-wrap {
  position: relative;
}

.progress .color1,
.progress .color1 .bar-width {
  background: #2d7da4;
}

.progress .color2,
.progress .color2 .bar-width {
  background: #6aa42f;
}

.progress .color3,
.progress .color3 .bar-width {
  background: #ffcc33;
}

.progress .color4,
.progress .color4 .bar-width {
  background: #db3615;
}

.progress,
.progress-bar {
  height: 15px;
  line-height: 15px;
  background: #e6e6e6;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  text-align: right;
}

.progress {
  position: relative;
}

.progress .bar-width {
  position: absolute;
  width: 40px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  top: -30px;
  border-radius: 2px;
  margin-left: -30px;
}

.progress span {
  position: relative;
}

.progress span:before {
  content: " ";
  position: absolute;
  width: auto;
  height: auto;
  border-width: 8px 5px;
  border-style: solid;
  bottom: -15px;
  right: 8px;
}

.progress .color1 span:before {
  border-color: #2d7da4 transparent transparent transparent;
}

.progress .color2 span:before {
  border-color: #6aa42f transparent transparent transparent;
}

.progress .color3 span:before {
  border-color: #ffcc33 transparent transparent transparent;
}

.progress .color4 span:before {
  border-color: #db3615 transparent transparent transparent;
}

.accordion h2 {
  margin-bottom: 25px;
}

.panel-default {
  border-color: transparent;
}

.panel-default > .panel-heading,
.panel {
  background-color: #e6e6e6;
  border: 0 none;
  box-shadow: none;
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
  background: #fff;
  color: #858586;
}

.panel-body {
  padding: 20px 20px 10px;
}

.panel-group .panel + .panel {
  margin-top: 0;
  border-top: 1px solid #d9d9d9;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-heading {
  border-radius: 0;
}

.panel-title > a {
  color: #4e4e4e;
}

.accordion-inner img {
  border-radius: 4px;
}

.accordion-inner h4 {
  margin-top: 0;
}

.panel-heading.active {
  background: #1f1f20;
}

.panel-heading.active .panel-title > a {
  color: #fff;
}

a.accordion-toggle i {
  width: 45px;
  line-height: 44px;
  font-size: 20px;
  margin-top: -10px;
  text-align: center;
  margin-right: -15px;
  background: #c9c9c9;
}

.panel-heading.active a.accordion-toggle i {
  background: #c52d2f;
  color: #fff;
}

.panel-heading.active a.accordion-toggle.collapsed i {
  background: #c52d2f;
  color: #fff;
}

.nav-tabs > li {
  margin-bottom: 0px;
  border-bottom: 1px solid #e6e6e6;
}

.nav-tabs {
  border-bottom: transparent;
  border-right: 1px solid #e6e6e6;
}

.nav-tabs > li > a {
  background: #f5f5f5;
  color: #666;
  border-radius: 0;
  border: 0 none;
  line-height: 24px;
  margin-right: 0;
  padding: 13px 15px;
}

.nav-tabs li:last-child {
  border-bottom: 0 none;
}

.nav-stacked > li + li {
  margin-top: 0;
}

.nav-tabs > li > a:hover {
  background: #1f1f20;
  color: #fff;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: 0;
  color: #fff;
  background: #1f1f20;
  position: relative;
}

.nav-tabs > li.active > a:after {
  position: absolute;
  content: "";
  width: auto;
  height: auto;
  border-style: solid;
  border-color: transparent transparent transparent #1f1f20;
  border-width: 25px 22px;
  right: -44px;
  top: 0;
}

.tab-wrap {
  border: 1px solid #e6e6e6;
  margin-bottom: 20px;
}

.tab-content {
  padding: 20px;
}

.tab-content h2 {
  margin-top: 0;
}

.tab-content img {
  border-radius: 4px;
}

.testimonial h2 {
  margin-top: 0;
}

.testimonial-inner {
  color: #858586;
  font-size: 14px;
}

.testimonial-inner .pull-left {
  border-right: 1px solid #e7e7e7;
  padding-right: 15px;
  position: relative;
}

.testimonial-inner .pull-left:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  margin-top: -5px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  border: 1px solid #e7e7e7;
  right: -5px;
  border-left: 0 none;
  border-bottom: 0 none;
}

#partner {
  background: url(../images/partners/partner_bg.png) 50% 50% no-repeat;
  background-size: cover;
}

#partner {
  color: #fff;
  text-align: center;
}

#partner h2,
#partner h3 {
  color: #fff;
}

.partners ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partners ul li {
  display: inline-block;
  float: left;
  width: 20%;
}

#conatcat-info {
  background: #fff url(../images/contact.png) no-repeat 90% 0;
  padding: 30px 0;
}

.contact-info i {
  width: 60px;
  height: 60px;
  font-size: 40px;
  line-height: 60px;
  color: #fff;
  background: #000;
  text-align: center;
  border-radius: 10px;
}

.contact-info h2 {
  margin-top: 0;
  color: #000;
}

.contact-info {
  color: #000;
}

/*************************
********* About Us Page CSS ******
**************************/

.about-us {
  margin-top: 110px;
  margin-bottom: -110px;
}

.about-us h2,
.skill_text h2 {
  color: #4e4e4e;
  font-size: 30px;
  font-weight: 600;
}

.about-us p {
  color: #4e4e4e;
}

#carousel-slider {
  position: relative;
}

#carousel-slider .carousel-indicators {
  bottom: -25px;
}

#carousel-slider .carousel-indicators li {
  border: 1px solid #ffbd20;
}

#carousel-slider a i {
  border: 1px solid #777;
  border-radius: 50%;
  font-size: 28px;
  height: 50px;
  padding: 8px;
  position: absolute;
  top: 50%;
  width: 50px;
  color: #777;
}

#carousel-slider a i:hover {
  background: #bfbfbf;
  color: #fff;
  border: 1px solid #bfbfbf;
}

#carousel-slider .carousel-control {
  width: inherit;
}

#carousel-slider .carousel-control.left i {
  left: -25px;
}

#carousel-slider .carousel-control.right i {
  right: -25px;
}

#carousel-slider .carousel-control.left,
#carousel-slider .carousel-control.right {
  background: none;
}

.skill_text {
  display: block;
  margin-bottom: 60px;
  margin-top: 25px;
  overflow: hidden;
}

.sinlge-skill {
  background: #f2f2f2;
  border-radius: 100%;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  height: 200px;
  position: relative;
  width: 200px;
  text-transform: uppercase;
  overflow: hidden;
  margin: 30px 0;
}

.sinlge-skill p em {
  color: #ffffff;
  font-size: 38px;
}

.sinlge-skill p {
  line-height: 1;
}

.joomla-skill,
.html-skill,
.css-skill,
.wp-skill {
  position: absolute;
  height: 100%;
  bottom: 0;
  width: 100%;
  border-radius: 100%;
  padding: 70px 0;
  text-align: center;
}

.joomla-skill {
  background: rgb(242, 242, 242); /* Old browsers */
  background: -moz-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 28%,
    rgba(45, 125, 164, 1) 28%
  ); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(242, 242, 242, 1)),
    color-stop(28%, rgba(242, 242, 242, 1)),
    color-stop(28%, rgba(45, 125, 164, 1))
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 28%,
    rgba(45, 125, 164, 1) 28%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 28%,
    rgba(45, 125, 164, 1) 28%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 28%,
    rgba(45, 125, 164, 1) 28%
  ); /* IE10+ */
  background: linear-gradient(
    to bottom,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 28%,
    rgba(45, 125, 164, 1) 28%
  ); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#2d7da4',GradientType=0 ); /* IE6-9 */
}

.html-skill {
  background: rgb(242, 242, 242); /* Old browsers */
  background: -moz-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 9%,
    rgba(106, 164, 47, 1) 9%
  ); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(242, 242, 242, 1)),
    color-stop(9%, rgba(242, 242, 242, 1)),
    color-stop(9%, rgba(106, 164, 47, 1))
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 9%,
    rgba(106, 164, 47, 1) 9%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 9%,
    rgba(106, 164, 47, 1) 9%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 9%,
    rgba(106, 164, 47, 1) 9%
  ); /* IE10+ */
  background: linear-gradient(
    to bottom,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 9%,
    rgba(106, 164, 47, 1) 9%
  ); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#6aa42f',GradientType=0 ); /* IE6-9 */
}

.css-skill {
  background: rgb(242, 242, 242); /* Old browsers */
  background: -moz-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 32%,
    rgba(255, 189, 32, 1) 32%
  ); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(242, 242, 242, 1)),
    color-stop(32%, rgba(242, 242, 242, 1)),
    color-stop(32%, rgba(255, 189, 32, 1))
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 32%,
    rgba(255, 189, 32, 1) 32%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 32%,
    rgba(255, 189, 32, 1) 32%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 32%,
    rgba(255, 189, 32, 1) 32%
  ); /* IE10+ */
  background: linear-gradient(
    to bottom,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 32%,
    rgba(255, 189, 32, 1) 32%
  ); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffbd20',GradientType=0 ); /* IE6-9 */
}

.wp-skill {
  background: rgb(242, 242, 242); /* Old browsers */
  background: -moz-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 19%,
    rgba(219, 54, 21, 1) 19%
  ); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(242, 242, 242, 1)),
    color-stop(19%, rgba(242, 242, 242, 1)),
    color-stop(19%, rgba(219, 54, 21, 1))
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 19%,
    rgba(219, 54, 21, 1) 19%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 19%,
    rgba(219, 54, 21, 1) 19%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(
    top,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 19%,
    rgba(219, 54, 21, 1) 19%
  ); /* IE10+ */
  background: linear-gradient(
    to bottom,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 19%,
    rgba(219, 54, 21, 1) 19%
  ); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#db3615',GradientType=0 ); /* IE6-9 */
}

.skill-wrap {
  display: block;
  overflow: hidden;
  margin: 60px 0;
}

.team h4 {
  margin-top: 0;
  text-transform: uppercase;
}

.team h5 {
  font-weight: 300;
}

.single-profile-top,
.single-profile-bottom {
  font-weight: 400;
  line-height: 24px;
}

.single-profile-top,
.single-profile-bottom {
  border: 1px solid #ddd;
  padding: 15px;
  position: relative;
}

.media_image {
  margin-bottom: 10px;
}

.team .btn {
  background: transparent;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 3px;
  padding: 1px 5px;
  text-transform: uppercase;
  border: 1px solid#ddd;
  margin-right: 3px;
}

ul.social_icons,
ul.tag {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: block;
}

ul.social_icons li,
ul.tag li {
  display: inline-block;
  margin-right: 5px;
}

ul.social_icons li a i {
  border-radius: 50%;
  color: #ffffff;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  padding: 0;
  text-align: center;
  width: 25px;
  opacity: 0.8;
}

.team .social_icons .fa-facebook:hover,
.team .social_icons .fa-twitter:hover,
.team .social_icons .fa-google-plus:hover {
  transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transition-duration: 2s;
  transition-property: all;
  transition-timing-function: ease;
  opacity: 1;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}

.team .social_icons .fa-facebook {
  background: #0182c4;
}

.team .social_icons .fa-twitter {
  background: #20b8ff;
}

.team .social_icons .fa-google-plus {
  background: #d34836;
}

.team-bar .first-one-arrow {
  float: left;
  margin-right: 30px;
  width: 2%;
}

.team-bar .first-arrow {
  float: left;
  margin-left: 5px;
  margin-right: 35px;
  width: 22%;
}

.team-bar .second-arrow {
  float: left;
  margin-left: 5px;
  width: 21%;
}

.team-bar .third-arrow {
  float: left;
  margin-left: 40px;
  margin-right: 12px;
  width: 22%;
}

.team-bar .fourth-arrow {
  float: left;
  margin-left: 25px;
  width: 20%;
}

.team-bar .first-one-arrow hr {
  border-bottom: 1px solid #2d7da4;
  border-top: 1px solid #2d7da4;
}

.team-bar .first-arrow hr {
  border-bottom: 1px solid #2d7da4;
  border-top: 1px solid #2d7da4;
}

.team-bar .second-arrow hr {
  border-bottom: 1px solid #6aa42f;
  border-top: 1px solid #6aa42f;
}

.team-bar .third-arrow hr {
  border-bottom: 1px solid #ffbd20;
  border-top: 1px solid #ffbd20;
}

.team-bar .fourth-arrow hr {
  border-bottom: 1px solid #db3615;
  border-top: 1px solid #db3615;
}

.team-bar {
  margin-bottom: 15px;
  margin-top: 30px;
  position: relative;
}

.team-bar i {
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 24px;
  line-height: 24px;
  margin-top: -32px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  width: 24px;
  position: absolute;
}

.team-bar .first-arrow .fa-angle-up {
  background: #2d7da4;
  margin-left: -33px;
}

.team-bar .second-arrow .fa-angle-down {
  background: #6aa42f;
  margin-left: -33px;
}

.team-bar .third-arrow .fa-angle-up {
  background: #ffbd20;
  margin-left: -32px;
}

.team-bar .fourth-arrow .fa-angle-down {
  background: #db3615;
  margin-left: -32px;
}

.team .single-profile-top:before,
.team .single-profile-top:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.team .single-profile-top:before {
  left: 26px;
  bottom: -20px;
  border-width: 10px;
  border-color: #fff transparent transparent transparent;
  z-index: 1;
}

.team .single-profile-top:after {
  left: 25px;
  bottom: -22px;
  border-style: solid;
  border-width: 11px;
  border-color: #ddd transparent transparent transparent;
  z-index: 0;
}

.team .single-profile-bottom:before,
.team .single-profile-bottom:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.team .single-profile-bottom:before {
  left: 30px;
  top: -20px;
  border-width: 10px;
  border-color: transparent transparent #fff transparent;
  z-index: 1;
}

.team .single-profile-bottom:after {
  left: 29px;
  top: -22px;
  border-style: solid;
  border-width: 11px;
  border-color: transparent transparent #ddd transparent;
  z-index: 0;
}

/***********************
****Service page css****
***********************/

.services {
  padding: 0;
}

.get-started {
  background: none repeat scroll 0 0 #f3f3f3;
  border-radius: 3px;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 18px;
  margin-top: 60px;
}

.get-started h2 {
  padding-top: 30px;
  margin-bottom: 20px;
}

.request {
  bottom: -15px;
  left: 50%;
  position: absolute;
  margin-left: -110px;
}

.request h4 {
  position: absolute;
  width: 220px;
  position: relative;
}

.request h4 a {
  background: #c52d2f;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  border-radius: 3px;
  padding: 5px 15px;
}

.request h4:after {
  border-color: #c52d2f transparent transparent;
  border-style: solid;
  border-width: 12px;
  bottom: -18px;
  content: "";
  height: 0;
  position: absolute;
  right: 13px;
  z-index: -99999;
}

.request h4:before {
  border-color: #c52d2f transparent transparent;
  border-style: solid;
  border-width: 12px;
  bottom: -18px;
  content: "";
  height: 0;
  left: 13px;
  position: absolute;
  z-index: -99999;
}

.clients-area {
  padding: 60px;
}

.clients-comments {
  background-image: url("../images/image_bg.png");
  background-position: center 118px;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.clients-comments img {
  background: #dddddd;
  border: 1px solid #dddddd;
  height: 182px;
  padding: 3px;
  width: 182px;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}

.clients-comments h3 {
  margin-top: 55px;
  font-weight: 300;
  padding: 0 40px;
}

.clients-comments h4 {
  font-weight: 300;
  margin-top: 15px;
}

.clients-comments h4 span {
  font-weight: 700;
  font-style: oblique;
}

.footer {
  background: none repeat scroll 0 0 #2e2e2e;
  border-top: 5px solid #c52d2f;
  height: 84px;
  margin-top: 110px;
}

.footer_left {
  padding: 10px;
}

/*************************
********* Portfolio CSS ******
**************************/

#portfolio_page {
  margin-top: 115px;
  padding-bottom: 0;
}

.portfolio-items,
.portfolio-filter {
  list-style: none outside none;
  margin: 0 0 40px 0;
  padding: 0;
}

.portfolio-filter > li {
  display: inline-block;
}

.portfolio-filter > li a {
  background: none repeat scroll 0 0 #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
  text-transform: uppercase;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
  border: 1px solid #f2f2f2;
  outline: none;
  border-radius: 3px;
}

.portfolio-filter > li a:hover,
.portfolio-filter > li a.active {
  color: #fff;
  background: #c52d2f;
  border: 1px solid #c52d2f;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-items > li {
  float: left;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.portfolio-item {
  margin: 0;
  padding: 0;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/**************************
********* Pricing Table CSS *
**************************/

.pricing_heading {
  margin-top: 120px;
}

.pricing_heading h2,
.pricing_heading p {
  color: #4e4e4e;
}

.pricing-area h1 {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 15px;
}

.pricing-area span {
  font-weight: 700;
  font-size: 18px;
}

.pricing-area h3,
.pricing-area span {
  color: #fff;
}

.plan {
  position: relative;
  margin-bottom: 70px;
}

.pricing-area ul {
  background: #fafafa;
  padding: 0;
  margin: 0;
}

.pricing-area ul li {
  list-style: none;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

.pricing-area ul li:nth-child(even) {
  background: #f5f5f5;
}

.pricing-area .price-three img,
.pricing-area .price-six img {
  position: absolute;
  right: 15px;
  top: 0;
}

.pricing-area .heading-one,
.pricing-area .heading-two,
.pricing-area .heading-three {
  padding: 17px 0;
  border-radius: 2px 2px 0 0;
}

.pricing-area .heading-one,
.pricing-area .heading-two,
.pricing-area .heading-three,
.pricing-area .heading-four,
.pricing-area .heading-five,
.pricing-area .heading-six,
.pricing-area .heading-seven {
  margin-left: -10px;
}

.pricing-area .heading-one,
.pricing-area .price-one .plan-action .btn-primary {
  background: #e24f43;
}

.pricing-area .heading-two,
.pricing-area .price-two .plan-action .btn-primary {
  background: #27ae60;
}

.pricing-area .heading-three,
.pricing-area .price-three .plan-action .btn-primary {
  background: #f39c12;
}

.pricing-area .heading-four,
.pricing-area .price-four .plan-action .btn-primary {
  background: #5c5c5c;
}

.pricing-area .heading-five,
.pricing-area .price-five .plan-action .btn-primary {
  background: #5c5c5c;
}

.pricing-area .heading-six,
.pricing-area .price-six .plan-action .btn-primary {
  background: #e24f43;
}

.pricing-area .heading-seven,
.pricing-area .price-seven .plan-action .btn-primary {
  background: #5c5c5c;
}

.pricing-area .bg {
  background: #fafafa;
}

.pricing-area .heading-one h3:before {
  border-color: #bf4539 transparent transparent;
}

.pricing-area .heading-two h3:before {
  border-color: #1f8c4d transparent transparent;
}

.pricing-area .heading-three h3:before {
  border-color: #d4880f transparent transparent;
}

.pricing-area .heading-four h3:before {
  border-color: #424242 transparent transparent;
}

.pricing-area .heading-five h3:before {
  border-color: #424242 transparent transparent;
}

.pricing-area .heading-six h3:before {
  border-color: #bf4539 transparent transparent;
}

.pricing-area .heading-seven h3:before {
  border-color: #424242 transparent transparent;
}

.pricing-area h3:before {
  border-color: #d4880f transparent transparent;
  border-radius: 5px 0 0 0px;
  border-style: solid;
  border-width: 12px;
  content: "";
  height: 0;
  left: 4px;
  position: absolute;
  top: 78px;
  width: 0;
  z-index: -999;
}

.small-pricing h3:after {
  height: 94px;
}

.small-pricing h3:before {
  top: 74px;
}

.plan-action {
  height: 40px;
}

.pricing-area .plan-action .btn-primary {
  position: relative;
  padding: 5px 20px;
  color: #fff;
  margin-top: 5px;
}

.pricing-area .plan-action .btn-primary:before {
  border-color: #e24f43 transparent transparent;
  border-radius: 5px 0 0 0;
  border-style: solid;
  border-width: 12px;
  bottom: -12px;
  content: "";
  height: 0;
  left: -9px;
  position: absolute;
  width: 0;
  z-index: -1;
}

.pricing-area .plan-action .btn-primary:after {
  border-color: #e24f43 transparent transparent;
  border-radius: 5px 0 0 0;
  border-style: solid;
  border-width: 12px;
  bottom: -12px;
  content: "";
  height: 0;
  position: absolute;
  right: -9px;
  width: 0;
  z-index: -1;
}

.pricing-area .price-two .plan-action .btn-primary:before,
.pricing-area .price-two .plan-action .btn-primary:after {
  border-color: #1f8c4d transparent transparent;
}

.pricing-area .price-three .plan-action .btn-primary:before,
.pricing-area .price-three .plan-action .btn-primary:after {
  border-color: #d4880f transparent transparent;
}

.pricing-area .price-four .plan-action .btn-primary:before,
.pricing-area .price-four .plan-action .btn-primary:after,
.pricing-area .price-five .plan-action .btn-primary:before,
.pricing-area .price-five .plan-action .btn-primary:after,
.pricing-area .price-seven .plan-action .btn-primary:before,
.pricing-area .price-seven .plan-action .btn-primary:after {
  border-color: #424242 transparent transparent;
  right: -9px;
}

.pricing-area .price-six .plan-action .btn-primary:before,
.pricing-area .price-six .plan-action .btn-primary:after {
  border-color: #bf4539 transparent transparent;
  right: -9px;
}

/*************************
********* Contact Us CSS ******
**************************/

.gmap-area {
  background-image: url("../images/map.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}

.gmap-area .gmap iframe {
  border-radius: 50%;
  height: 280px;
  width: 300px;
}

.gmap {
  border: 10px solid #f6f5f0;
  border-radius: 50%;
  height: 300px;
  width: 300px;
  box-shadow: 0px 0px 3px 3px #e7e4dc;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.gmap-area .map-content ul {
  list-style: none;
}

.gmap-area .map-content address h5 {
  font-weight: 700;
  /* font-size: 16px; */
}

#contact-page {
  padding-top: 0;
}

#contact-page .contact-form .form-group label {
  color: #4e4e4e;
  font-size: 16px;
  font-weight: 300;
}

.form-group .form-control {
  padding: 7px 12px;
  border-color: #f2f2f2;
  box-shadow: none;
}

textarea#message {
  resize: none;
  padding: 10px;
}

#contact-page .contact-wrap {
  margin-top: 20px;
}

/*********************
****blog page css*****
**********************/

.widget {
  margin-bottom: 60px;
  padding-left: 0;
}

.single_comments {
  margin-bottom: 20px;
}

.single_comments img {
  float: left;
  margin-right: 10px;
  margin-top: 5px;
}

.single_comments p {
  margin-bottom: 0;
}

.widget .entry-meta span {
  display: inline-block;
  margin-right: 10px;
}

.widget h3 {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog_category {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog_category li {
  float: none;
  margin-bottom: 20px;
}

.blog_category li a {
  background: #f5f5f5;
  border-radius: 4px;
  color: #888;
  display: inline-block;
  padding: 5px 15px;
}

.blog_category li a:hover {
  background: #c52d2f;
  color: #fff;
}

.badge:before {
  border-color: transparent transparent transparent #c52d2f;
  border-style: solid;
  border-width: 10px;
  bottom: -8px;
  content: "";
  height: 0;
  left: 5px;
  position: absolute;
  z-index: -99999;
}

.badge {
  background-color: #c52d2f;
  border-radius: 5px;
  color: #fff;
  padding: 8px;
  position: relative;
  left: 60px;
  top: -18px;
  font-weight: normal;
}

.blog_archieve {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

.blog_archieve li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.blog_archieve li:first-child {
  padding-top: 0;
}

ul.gallery {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.gallery li {
  display: block;
  width: 60px;
  padding: 0;
  margin: 0 4px 4px 0;
  float: left;
}

ul.faq {
  list-style: none;
  margin: 0;
}

ul.faq li {
  margin-top: 30px;
}

ul.faq li:first-child {
  margin-top: 0;
}

ul.faq li span.number {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #34495e;
  color: #fff;
  font-size: 24px;
}

ul.faq li > div {
  margin-left: 70px;
}

ul.faq li > div h3 {
  margin-top: 0;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-item {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 50px;
}

.blog .blog-item .img-blog {
  border-radius: 5px;
  margin-bottom: 45px;
}

.blog .blog-item .blog-content {
  padding-bottom: 25px;
}

.blog .blog-item .blog-content h2 {
  margin-top: 0;
  font-size: 30px;
}

.readmore {
  margin-top: 0;
}

.blog .blog-item .blog-content h3 {
  color: #858586;
  margin-bottom: 40px;
  /* font-weight: 300 */
}

.blog .blog-item .blog-content h4 {
  font-size: 14px;
}

.post-tags {
}

.blog .blog-item .entry-meta {
  border-radius: 5px;
  overflow: hidden;
}

.blog .blog-item .entry-meta > span {
  background: #f5f5f5;
  border-top: 1px solid #fff;
  display: block;
  font-size: 12px;
  overflow: hidden;
  padding: 5px;
  text-align: left;
}

#publish_date {
  background: #c52d2f;
  border-bottom: 5px solid #4e4e4e;
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

.blog .blog-item .entry-meta > span {
  color: #ccc;
}

.blog .blog-item .entry-meta > span a {
  font-size: 12px;
  margin-left: 3px;
  font-weight: 300;
  color: #888;
}

ul.pagination > li > a {
  border: 1px solid #f1f1f1;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 16px;
  padding: 5px 14px;
}

ul.pagination > li > a i {
  margin-left: 5px;
  margin-right: 5px;
}

ul.pagination > li.active > a,
ul.pagination > li:hover > a {
  background-color: #c52d2f !important;
  border-color: #c52d2f !important;
  color: #fff;
}

.search_box {
  background-image: url("../images/search_icon.png");
  background-position: 314px 15px;
  background-repeat: no-repeat;
  border-color: #dedede;
  height: 48px;
  outline: medium none;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
  outline: 0 none;
}

ul.tag-cloud,
ul.sidebar-gallery {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-cloud li {
  display: inline-block;
  margin-bottom: 3px;
}

.tag-cloud li a {
  background: #f5f5f5;
  color: #888;
  border: 0;
  border-radius: 4px;
  padding: 8px 15px;
}

.tag-cloud li a:hover {
  background: #c52d2f;
  color: #fff;
}

.sidebar-gallery li {
  display: inline-block;
  margin: 0 10px 10px 0;
}

.sidebar-gallery li a {
  border-radius: 4px;
  display: inline-block;
}

/**********************
**blog single page css*
**********************/

.reply_section {
  background: #f5f5f5;
  border-radius: 5px;
}

.post_reply {
  margin-left: 10px;
  margin-top: 45px;
}

.post_reply img {
  width: 85px;
  height: 85px;
  border: 5px solid #d5d8dd;
}

.post_reply ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  margin-top: 5px;
}

.post_reply ul li {
  float: left;
}

.post_reply ul li a {
  display: block;
}

.post_reply ul li a i {
  border: 1px solid #dddddd;
  border-radius: 39px;
  color: #ffffff;
  font-size: 20px;
  height: 30px;
  margin-right: 3px;
  padding-top: 7px;
  text-align: center;
  width: 30px;
}

.post_reply ul li a i.fa-facebook {
  background: #0182c4;
}

.post_reply ul li a i.fa-twitter {
  background: none repeat scroll 0 0 #3fc1fe;
}

.post_reply ul li a i.fa-google-plus {
  background: none repeat scroll 0 0 #d34836;
}

.post_reply ul li a i:hover {
  opacity: 0.5;
}

.post_reply_content {
  margin: 30px;
}

.post_reply_content h1 a:hover {
  color: #ffc800;
}

.post_reply_content h4 {
  margin-bottom: 50px;
}

.reply_section .media-body {
  display: inherit;
}

.comment_section .media-body {
  display: inherit;
}

#comments_title {
  color: #4e4e4e;
  font-weight: 700px;
  font-size: 20px;
  margin-top: 60px;
  margin-bottom: 40px;
}
.comment_section {
  margin-top: 30px;
  position: relative;
}

.post_comments img {
  width: 85px;
  height: 85px;
  margin-top: 35px;
}

.post_reply_comments {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 30px;
}

.post_reply_comments:before {
  border-color: transparent #f0f0f0 transparent transparent;
  border-style: solid;
  border-width: 15px;
  content: " ";
  height: 0;
  left: 75px;
  position: absolute;
  top: 20px;
}

.post_reply_comments h3,
.post_reply_content h3 {
  margin-top: 0;
}

.post_reply_comments h1 a:hover {
  color: #c52d2f;
}

.post_reply_comments h4 {
  color: #c4c4c5;
  font-weight: 400;
}

.post_reply_comments p {
  padding-bottom: 30px;
}

.post_reply_comments a {
  bottom: 15px;
  position: absolute;
  right: 30px;
  background: #c52d2f;
  color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
}

.post_reply_comments a:before {
  border-color: #c52d2f transparent transparent;
  border-style: solid;
  border-width: 16px;
  bottom: -11px;
  content: "";
  height: 0;
  left: -12px;
  position: absolute;
  z-index: 99999;
}

.post_reply_comments h2 a {
}

.message_heading {
  margin-bottom: 50px;
  margin-top: 60px;
}

/******************
 404 page css
 ******************/

#error .btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success:hover {
  background-color: #ebebeb;
  border-color: #ebebeb;
  color: #4e4e4e;
}

#error h1 {
  color: #4e4e4e;
  text-transform: uppercase;
}

/******************
shortcodes page css
******************/

.shortcode-item {
  padding-bottom: 0;
}

.shortcode-item h2 {
  color: #4e4e4e;
  font-size: 24px;
  margin-bottom: 22px;
  margin-top: 0;
  font-weight: 600;
}

/***********************
********* Footer ******
************************/
#bottom {
  background: #33284c;
  border-bottom: 1px solid #533891;
  font-size: 16px;
}

#bottom h3 {
  margin-top: 0;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-size: 20px;
  color: #c3a8ff;
}

#bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#bottom ul li {
  display: block;
  padding: 8px 0;
}

#bottom ul li a {
  color: #fff;
}

#bottom ul li a:hover {
  color: #af98e3;
}

#bottom .widget {
  margin-bottom: 0;
}

#footer {
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer a {
  color: #000;
}

#footer a:hover {
  color: #000000a4;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer ul > li {
  display: inline-block;
  margin-left: 15px;
}

/* Custom CSS */

/* text */
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-white {
  color: #fff !important;
}
.text-grey {
  color: #707070 !important;
}
.text-black {
  color: #262b35 !important;
}
.text-blue {
  color: #343863 !important;
}
.text-breeze {
  color: #c3a8ff !important;
}
.text-breeze-dark {
  color: #7159a8 !important;
}

.heading-contact {
  color: #262b35;
  font-size: 2.5rem;
  font-weight: 600;
}

/* Section Background */
.bg-gray {
  background-color: #707070;
}

.heading-container {
  border-radius: 15px;
  background-color: #f5f5ff;
  color: #5b5bf5;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.heading1 {
  font-size: 3.5rem;
}

.heading-side {
  font-size: 4.5rem;
}
.heading3 {
  color: #262b35;
  font-size: 3.5rem;
  margin: 0 0 2.5rem 0 !important;
  letter-spacing: 0px;
  font-weight: 600;
}

.heading4 {
  color: #262b35;
  font-size: 2.25rem;
  margin: 0 0 1.5rem 0 !important;
  letter-spacing: 0px;
  font-weight: 500;
}
.heading5 {
  font-size: 1.8rem;
  margin: 0.5rem 0 0rem 0 !important;
  letter-spacing: 0px;
}

.paragraph {
  font-size: 1.75rem;
  line-height: 2.75rem;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: #707070;
}
.paragraph-side {
  font-size: 2rem;
  line-height: 2.75rem;
  letter-spacing: 0.2px;
  color: #707070;
}
.text-points {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #707070;
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
    padding: 0 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .navbar-nav {
    padding: 0px 0 20px 0;
    margin: 0;
    width: 100%;
  }

  .navbar-nav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav > li > a {
    padding: 15px;
    color: #fff;
  }

  .dropdown-menu {
    background-color: #444;
    border: none;
  }
}

.bg-breeze-light {
  background-color: #af98e3;
}
.bg-breeze-strong {
  background-color: #7159a8;
}
.w-100 {
  width: 100%;
}
.w-85 {
  width: 85%;
}
.w-75 {
  width: 75%;
}
.w-50 {
  width: 50%;
}
.w-25 {
  width: 25%;
}
.w-10 {
  width: 100%;
}

/* width */
/* Base widths */
.w-0 {
  width: 0 !important;
}
.w-px {
  width: 1px !important;
}
.w-0\.5 {
  width: 0.125rem !important;
}
.w-1 {
  width: 0.25rem !important;
}
.w-1\.5 {
  width: 0.375rem !important;
}
.w-2 {
  width: 0.5rem !important;
}
.w-2\.5 {
  width: 0.625rem !important;
}
.w-3 {
  width: 0.75rem !important;
}
.w-3\.5 {
  width: 0.875rem !important;
}
.w-4 {
  width: 1rem !important;
}
.w-5 {
  width: 1.25rem !important;
}
.w-6 {
  width: 1.5rem !important;
}
.w-7 {
  width: 1.75rem !important;
}
.w-8 {
  width: 2rem !important;
}
.w-9 {
  width: 2.25rem !important;
}
.w-10 {
  width: 2.5rem !important;
}
.w-11 {
  width: 2.75rem !important;
}
.w-12 {
  width: 3rem !important;
}
.w-14 {
  width: 3.5rem !important;
}
.w-16 {
  width: 4rem !important;
}
.w-20 {
  width: 5rem !important;
}
.w-24 {
  width: 6rem !important;
}
.w-28 {
  width: 7rem !important;
}
.w-32 {
  width: 8rem !important;
}
.w-36 {
  width: 9rem !important;
}
.w-40 {
  width: 10rem !important;
}
.w-44 {
  width: 11rem !important;
}
.w-48 {
  width: 12rem !important;
}
.w-52 {
  width: 13rem !important;
}
.w-56 {
  width: 14rem !important;
}
.w-60 {
  width: 15rem !important;
}
.w-64 {
  width: 16rem !important;
}
.w-72 {
  width: 18rem !important;
}
.w-80 {
  width: 20rem !important;
}
.w-96 {
  width: 24rem !important;
}

/* Percentage widths */
.w-1\/2 {
  width: 50% !important;
}
.w-1\/3 {
  width: 33.333333% !important;
}
.w-2\/3 {
  width: 66.666667% !important;
}
.w-1\/4 {
  width: 25% !important;
}
.w-2\/4 {
  width: 50% !important;
}
.w-3\/4 {
  width: 75% !important;
}
.w-1\/5 {
  width: 20% !important;
}
.w-2\/5 {
  width: 40% !important;
}
.w-3\/5 {
  width: 60% !important;
}
.w-4\/5 {
  width: 80% !important;
}
.w-1\/6 {
  width: 16.666667% !important;
}
.w-2\/6 {
  width: 33.333333% !important;
}
.w-3\/6 {
  width: 50% !important;
}
.w-4\/6 {
  width: 66.666667% !important;
}
.w-5\/6 {
  width: 83.333333% !important;
}

/* Special widths */
.w-full {
  width: 100% !important;
}
.w-screen {
  width: 100vw !important;
}
.w-min {
  width: min-content !important;
}
.w-max {
  width: max-content !important;
}
.w-fit {
  width: fit-content !important;
}
.w-auto {
  width: auto !important;
}

/* Grid System */
.grid {
  display: grid;
  gap: 1rem;
}

/* Basic grid columns */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* Column spans */
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.col-span-12 {
  grid-column: span 12 / span 12;
}

/* Grid gaps */
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

/* Responsive breakpoints */
@media (min-width: 640px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .sm\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .sm\:col-span-4 {
    grid-column: span 4 / span 4;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }
}

/* Small screens (sm) */
@media (min-width: 640px) {
  .sm\:w-auto {
    width: auto !important;
  }
  .sm\:w-full {
    width: 100% !important;
  }
  .sm\:w-1\/2 {
    width: 50% !important;
  }
  .sm\:w-1\/3 {
    width: 33.333333% !important;
  }
  .sm\:w-2\/3 {
    width: 66.666667% !important;
  }
  .sm\:w-1\/4 {
    width: 25% !important;
  }
  .sm\:w-3\/4 {
    width: 75% !important;
  }
  /* Add other width utilities as needed */
}

/* Medium screens (md) */
@media (min-width: 768px) {
  .md\:w-auto {
    width: auto !important;
  }
  .md\:w-full {
    width: 100% !important;
  }
  .md\:w-1\/2 {
    width: 50% !important;
  }
  .md\:w-1\/3 {
    width: 33.333333% !important;
  }
  .md\:w-2\/3 {
    width: 66.666667% !important;
  }
  .md\:w-1\/4 {
    width: 25% !important;
  }
  .md\:w-3\/4 {
    width: 75% !important;
  }
  /* Add other width utilities as needed */
}

/* Large screens (lg) */
@media (min-width: 1024px) {
  .lg\:w-auto {
    width: auto !important;
  }
  .lg\:w-full {
    width: 100% !important;
  }
  .lg\:w-1\/2 {
    width: 50% !important;
  }
  .lg\:w-1\/3 {
    width: 33.333333% !important;
  }
  .lg\:w-2\/3 {
    width: 66.666667% !important;
  }
  .lg\:w-1\/4 {
    width: 25% !important;
  }
  .lg\:w-3\/4 {
    width: 75% !important;
  }
  .w-40 {
    width: 10rem !important;
  }
}

/* margin */
.m-0 {
  margin: 0 !important;
}
/* Margin Top (mt) */
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 0.75rem !important;
}
.mt-4 {
  margin-top: 1rem !important;
}
.mt-5 {
  margin-top: 1.25rem !important;
}
.mt-10 {
  margin-top: 2.5rem !important;
}

/* Margin Bottom (mb) */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 0.75rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-5 {
  margin-bottom: 1.25rem !important;
}
.mb-10 {
  margin-bottom: 2.5rem !important;
}
.mb-15 {
  margin-bottom: 4rem !important;
}

/* Margin Left (ml) */
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.ml-3 {
  margin-left: 0.75rem !important;
}
.ml-4 {
  margin-left: 1rem !important;
}
.ml-5 {
  margin-left: 1.25rem !important;
}
.ml-10 {
  margin-left: 2.5rem !important;
}

/* Margin Right (mr) */
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-3 {
  margin-right: 0.75rem !important;
}
.mr-4 {
  margin-right: 1rem !important;
}
.mr-5 {
  margin-right: 1.25rem !important;
}
.mr-10 {
  margin-right: 2.5rem !important;
}

/* Responsive Margins for different breakpoints */
@media (min-width: 576px) {
  .sm\:mt-0 {
    margin-top: 0 !important;
  }
  .sm\:mb-0 {
    margin-bottom: 0 !important;
  }
  .sm\:ml-0 {
    margin-left: 0 !important;
  }
  .sm\:mr-0 {
    margin-right: 0 !important;
  }
  /* Add other sizes as needed */
}

@media (min-width: 768px) {
  /* Margin Top */
  .md\:mt-0 {
    margin-top: 0 !important;
  }
  .md\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .md\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .md\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .md\:mt-4 {
    margin-top: 1rem !important;
  }
  .md\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .md\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .md\:mt-8 {
    margin-top: 2rem !important;
  }
  .md\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .md\:mt-12 {
    margin-top: 3rem !important;
  }
  .md\:mt-16 {
    margin-top: 4rem !important;
  }

  /* Margin Bottom */
  .md\:mb-0 {
    margin-bottom: 0 !important;
  }
  .md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .md\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .md\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .md\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .md\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .md\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .md\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .md\:mb-16 {
    margin-bottom: 4rem !important;
  }

  /* Margin Left */
  .md\:ml-0 {
    margin-left: 0 !important;
  }
  .md\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .md\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .md\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .md\:ml-4 {
    margin-left: 1rem !important;
  }
  .md\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .md\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .md\:ml-8 {
    margin-left: 2rem !important;
  }
  .md\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .md\:ml-12 {
    margin-left: 3rem !important;
  }
  .md\:ml-16 {
    margin-left: 4rem !important;
  }

  /* Margin Right */
  .md\:mr-0 {
    margin-right: 0 !important;
  }
  .md\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .md\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .md\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .md\:mr-4 {
    margin-right: 1rem !important;
  }
  .md\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .md\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .md\:mr-8 {
    margin-right: 2rem !important;
  }
  .md\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .md\:mr-12 {
    margin-right: 3rem !important;
  }
  .md\:mr-16 {
    margin-right: 4rem !important;
  }
}

@media (min-width: 992px) {
  /* Margin Top */
  .lg\:mt-0 {
    margin-top: 0 !important;
  }
  .lg\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .lg\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .lg\:mt-3 {
    margin-top: 0.75rem !important;
  }
  .lg\:mt-4 {
    margin-top: 1rem !important;
  }
  .lg\:mt-5 {
    margin-top: 1.25rem !important;
  }
  .lg\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .lg\:mt-8 {
    margin-top: 2rem !important;
  }
  .lg\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .lg\:mt-12 {
    margin-top: 3rem !important;
  }
  .lg\:mt-16 {
    margin-top: 4rem !important;
  }

  /* Margin Bottom */
  .lg\:mb-0 {
    margin-bottom: 0 !important;
  }
  .lg\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .lg\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .lg\:mb-3 {
    margin-bottom: 0.75rem !important;
  }
  .lg\:mb-4 {
    margin-bottom: 1rem !important;
  }
  .lg\:mb-5 {
    margin-bottom: 1.25rem !important;
  }
  .lg\:mb-6 {
    margin-bottom: 1.5rem !important;
  }
  .lg\:mb-8 {
    margin-bottom: 2rem !important;
  }
  .lg\:mb-10 {
    margin-bottom: 2.5rem !important;
  }
  .lg\:mb-12 {
    margin-bottom: 3rem !important;
  }
  .lg\:mb-16 {
    margin-bottom: 4rem !important;
  }

  /* Margin Left */
  .lg\:ml-0 {
    margin-left: 0 !important;
  }
  .lg\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .lg\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .lg\:ml-3 {
    margin-left: 0.75rem !important;
  }
  .lg\:ml-4 {
    margin-left: 1rem !important;
  }
  .lg\:ml-5 {
    margin-left: 1.25rem !important;
  }
  .lg\:ml-6 {
    margin-left: 1.5rem !important;
  }
  .lg\:ml-8 {
    margin-left: 2rem !important;
  }
  .lg\:ml-10 {
    margin-left: 2.5rem !important;
  }
  .lg\:ml-12 {
    margin-left: 3rem !important;
  }
  .lg\:ml-16 {
    margin-left: 4rem !important;
  }

  /* Margin Right */
  .lg\:mr-0 {
    margin-right: 0 !important;
  }
  .lg\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .lg\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .lg\:mr-3 {
    margin-right: 0.75rem !important;
  }
  .lg\:mr-4 {
    margin-right: 1rem !important;
  }
  .lg\:mr-5 {
    margin-right: 1.25rem !important;
  }
  .lg\:mr-6 {
    margin-right: 1.5rem !important;
  }
  .lg\:mr-8 {
    margin-right: 2rem !important;
  }
  .lg\:mr-10 {
    margin-right: 2.5rem !important;
  }
  .lg\:mr-12 {
    margin-right: 3rem !important;
  }
  .lg\:mr-16 {
    margin-right: 4rem !important;
  }
}

/* Line Height */
.leading-none {
  line-height: 1 !important;
}
.leading-tight {
  line-height: 1.25 !important;
}
.leading-snug {
  line-height: 1.375 !important;
}
.leading-normal {
  line-height: 1.5 !important;
}
.leading-relaxed {
  line-height: 1.625 !important;
}
.leading-loose {
  line-height: 2 !important;
}

/* Padding */
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 0.75rem !important;
}
.p-4 {
  padding: 1rem !important;
}
.p-5 {
  padding: 1.25rem !important;
}
.p-10 {
  padding: 2.5rem !important;
}

/* Padding Right (pr) */
.pr-0 {
  padding-right: 0;
}
.pr-1 {
  padding-right: 0.25rem; /* 4px */
}
.pr-2 {
  padding-right: 0.5rem; /* 8px */
}
.pr-3 {
  padding-right: 0.75rem; /* 12px */
}
.pr-4 {
  padding-right: 1rem; /* 16px */
}
.pr-5 {
  padding-right: 1.25rem; /* 20px */
}
.pr-6 {
  padding-right: 1.5rem; /* 24px */
}
.pr-8 {
  padding-right: 2rem; /* 32px */
}
.pr-10 {
  padding-right: 2.5rem; /* 40px */
}
.pr-12 {
  padding-right: 3rem; /* 48px */
}
.pr-16 {
  padding-right: 4rem; /* 64px */
}
.pr-20 {
  padding-right: 5rem; /* 80px */
}
.pr-24 {
  padding-right: 6rem; /* 96px */
}
.pr-32 {
  padding-right: 8rem; /* 128px */
}

/* Padding Bottom (pb) */
.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 0.25rem; /* 4px */
}
.pb-2 {
  padding-bottom: 0.5rem; /* 8px */
}
.pb-3 {
  padding-bottom: 0.75rem; /* 12px */
}
.pb-4 {
  padding-bottom: 1rem; /* 16px */
}
.pb-5 {
  padding-bottom: 1.25rem; /* 20px */
}
.pb-6 {
  padding-bottom: 1.5rem; /* 24px */
}
.pb-8 {
  padding-bottom: 2rem; /* 32px */
}
.pb-10 {
  padding-bottom: 2.5rem; /* 40px */
}
.pb-12 {
  padding-bottom: 3rem; /* 48px */
}
.pb-16 {
  padding-bottom: 4rem; /* 64px */
}
.pb-20 {
  padding-bottom: 5rem; /* 80px */
}
.pb-24 {
  padding-bottom: 6rem; /* 96px */
}
.pb-32 {
  padding-bottom: 8rem; /* 128px */
}

/* Padding Top (pt) */
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 0.25rem; /* 4px */
}
.pt-2 {
  padding-top: 0.5rem; /* 8px */
}
.pt-3 {
  padding-top: 0.75rem; /* 12px */
}
.pt-4 {
  padding-top: 1rem; /* 16px */
}
.pt-5 {
  padding-top: 1.25rem; /* 20px */
}
.pt-6 {
  padding-top: 1.5rem; /* 24px */
}
.pt-8 {
  padding-top: 2rem; /* 32px */
}
.pt-10 {
  padding-top: 2.5rem; /* 40px */
}
.pt-12 {
  padding-top: 3rem; /* 48px */
}
.pt-16 {
  padding-top: 4rem; /* 64px */
}
.pt-20 {
  padding-top: 5rem; /* 80px */
}
.pt-24 {
  padding-top: 6rem; /* 96px */
}
.pt-32 {
  padding-top: 8rem; /* 128px */
}

/* Responsive Breakpoints for Padding Bottom (pb) */
@media (min-width: 640px) {
  .sm\:pb-4 {
    padding-bottom: 1rem; /* 16px */
  }
}
@media (min-width: 768px) {
  .md\:pb-6 {
    padding-bottom: 1.5rem; /* 24px */
  }
}
@media (min-width: 1024px) {
  .lg\:pb-8 {
    padding-bottom: 2rem; /* 32px */
  }
  .lg\:pr-32 {
    padding-right: 8rem; /* 128px */
  }
}
@media (min-width: 1280px) {
  .xl\:pb-10 {
    padding-bottom: 2.5rem; /* 40px */
  }
}

/* Responsive Breakpoints for Padding Top (pt) */
@media (min-width: 640px) {
  .sm\:pt-4 {
    padding-top: 1rem; /* 16px */
  }
}
@media (min-width: 768px) {
  .md\:pt-6 {
    padding-top: 1.5rem; /* 24px */
  }
}
@media (min-width: 1024px) {
  .lg\:pt-8 {
    padding-top: 2rem; /* 32px */
  }
}
@media (min-width: 1280px) {
  .xl\:pt-10 {
    padding-top: 2.5rem; /* 40px */
  }
}

/* Padding X-axis */
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.px-10 {
  padding-left: 11.25rem !important;
  padding-right: 11.25rem !important;
}

/* Padding Y-axis */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.py-6 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-8 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}
.py-10 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

/* Gap (for flex and grid) */
.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 0.75rem !important;
}
.gap-4 {
  gap: 1rem !important;
}
.gap-5 {
  gap: 1.25rem !important;
}

/* Space Between */
.space-x-1 > * + * {
  margin-left: 0.25rem !important;
}
.space-x-2 > * + * {
  margin-left: 0.5rem !important;
}
.space-x-3 > * + * {
  margin-left: 0.75rem !important;
}
.space-x-4 > * + * {
  margin-left: 1rem !important;
}

.space-y-1 > * + * {
  margin-top: 0.25rem !important;
}
.space-y-2 > * + * {
  margin-top: 0.5rem !important;
}
.space-y-3 > * + * {
  margin-top: 0.75rem !important;
}
.space-y-4 > * + * {
  margin-top: 1rem !important;
}

/* Responsive variants */
@media (min-width: 576px) {
  .sm\:leading-normal {
    line-height: 1.5 !important;
  }
  .sm\:p-4 {
    padding: 1rem !important;
  }
  .sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .sm\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sm\:gap-4 {
    gap: 1rem !important;
  }
}

@media (min-width: 768px) {
  .md\:leading-normal {
    line-height: 1.5 !important;
  }
  .md\:p-4 {
    padding: 1rem !important;
  }
  .md\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .md\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .md\:gap-4 {
    gap: 1rem !important;
  }
}

@media (min-width: 992px) {
  .lg\:leading-normal {
    line-height: 1.5 !important;
  }
  .lg\:p-4 {
    padding: 1rem !important;
  }
  .lg\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .lg\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .lg\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lg\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .lg\:gap-4 {
    gap: 1rem !important;
  }
}

/* flex */
/* Flex Container */
.flex {
  display: flex !important;
}
.inline-flex {
  display: inline-flex !important;
}

/* Flex Direction */
.flex-row {
  flex-direction: row !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-col-reverse {
  flex-direction: column-reverse !important;
}

/* Flex Wrap */
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* Flex Grow & Shrink */
.flex-1 {
  flex: 1 1 0% !important;
}
.flex-auto {
  flex: 1 1 auto !important;
}
.flex-initial {
  flex: 0 1 auto !important;
}
.flex-none {
  flex: none !important;
}
.grow {
  flex-grow: 1 !important;
}
.grow-0 {
  flex-grow: 0 !important;
}
.shrink {
  flex-shrink: 1 !important;
}
.shrink-0 {
  flex-shrink: 0 !important;
}

/* Justify Content */
.justify-start {
  justify-content: flex-start !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.justify-around {
  justify-content: space-around !important;
}
.justify-evenly {
  justify-content: space-evenly !important;
}

/* Align Items */
.items-start {
  align-items: flex-start !important;
}
.items-end {
  align-items: flex-end !important;
}
.items-center {
  align-items: center !important;
}
.items-baseline {
  align-items: baseline !important;
}
.items-stretch {
  align-items: stretch !important;
}

/* Align Self */
.self-auto {
  align-self: auto !important;
}
.self-start {
  align-self: flex-start !important;
}
.self-end {
  align-self: flex-end !important;
}
.self-center {
  align-self: center !important;
}
.self-stretch {
  align-self: stretch !important;
}

/* Align Content */
.content-center {
  align-content: center !important;
}
.content-start {
  align-content: flex-start !important;
}
.content-end {
  align-content: flex-end !important;
}
.content-between {
  align-content: space-between !important;
}
.content-around {
  align-content: space-around !important;
}
.content-evenly {
  align-content: space-evenly !important;
}

/* Order */
.order-first {
  order: -9999 !important;
}
.order-last {
  order: 9999 !important;
}
.order-none {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
  .sm\:flex {
    display: flex !important;
  }
  .sm\:flex-row {
    flex-direction: row !important;
  }
  .sm\:flex-col {
    flex-direction: column !important;
  }
  .sm\:justify-start {
    justify-content: flex-start !important;
  }
  .sm\:justify-center {
    justify-content: center !important;
  }
  .sm\:justify-between {
    justify-content: space-between !important;
  }
  .sm\:items-center {
    align-items: center !important;
  }
  .sm\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .sm\:order-1 {
    order: 1 !important;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex !important;
  }
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:flex-col {
    flex-direction: column !important;
  }
  .md\:justify-start {
    justify-content: flex-start !important;
  }
  .md\:justify-center {
    justify-content: center !important;
  }
  .md\:justify-between {
    justify-content: space-between !important;
  }
  .md\:items-center {
    align-items: center !important;
  }
  .md\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .md\:order-1 {
    order: 1 !important;
  }
}

@media (min-width: 992px) {
  .lg\:flex {
    display: flex !important;
  }
  .lg\:flex-row {
    flex-direction: row !important;
  }
  .lg\:flex-col {
    flex-direction: column !important;
  }
  .lg\:justify-start {
    justify-content: flex-start !important;
  }
  .lg\:justify-center {
    justify-content: center !important;
  }
  .lg\:justify-between {
    justify-content: space-between !important;
  }
  .lg\:items-center {
    align-items: center !important;
  }
  .lg\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .lg\:order-1 {
    order: 1 !important;
  }
}

/* Elements */

/* Card */
.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 1rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-icon {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  color: #3498db;
  /* transform: scale(1.1); */
}

.card-title {
  font-size: 1.55rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.card-text {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-link {
  color: #7159a8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #af98e3;
}

.card-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.card-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .service-card {
    margin-bottom: 2rem;
  }
}
/* End of Card */

/* Button */
/* Shared Button Icon Styles */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-icon .icon-wrapper {
  background-color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 13px;
  transition: all 0.3s ease;
  filter: drop-shadow(5px 3px 20px black);
}
.btn-icon .icon-wrapper i {
  color: #7159a8;
  transition: transform 0.3s ease;
}
/* Button 1: Elegant Gradient Glow */
.btn-1 {
  background: linear-gradient(45deg, #7159a8, #af98e3);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
}
.btn-1:hover .icon-wrapper {
  transform: translateX(5px);
}
.btn-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-2 {
  background-color: #4b5188;
  color: white !important;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.btn-3 {
  background-color: #343863;
  color: white !important;
  border: none;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

/* Visiblity */
/* Visibility Classes */
/* .hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .sm\:hidden {
    display: none !important;
  }
  .sm\:visible {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none !important;
  }
  .md\:visible {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .lg\:hidden {
    display: none !important;
  }
  .lg\:visible {
    display: block !important;
  }
} */

/* Text alignment */
/* Text Alignment Base Classes */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/* Responsive Text Alignment */
@media (min-width: 576px) {
  .sm\:text-left {
    text-align: left !important;
  }
  .sm\:text-center {
    text-align: center !important;
  }
  .sm\:text-right {
    text-align: right !important;
  }
}

@media (min-width: 768px) {
  .md\:text-left {
    text-align: left !important;
  }
  .md\:text-center {
    text-align: center !important;
  }
  .md\:text-right {
    text-align: right !important;
  }
}

@media (min-width: 992px) {
  .lg\:text-left {
    text-align: left !important;
  }
  .lg\:text-center {
    text-align: center !important;
  }
  .lg\:text-right {
    text-align: right !important;
  }
}

.bg-white {
  background-color: #fff;
}
.bg-section-gray {
  background-color: #f5f5f5;
}
.bg-light-blue {
  background-color: #eff1ff;
}
.bg-section-purple {
  /* background-color: #eae6f2; */
  background: linear-gradient(135deg, #eae6f2, #eae6f213);
}

.icon-bg {
  background-color: #f5f5f561;
  border: 2px solid #7159a8;
  padding: 15px;
  border-radius: 20px;
  margin: 0 15px 0 0;
}
.shadow-md {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.icon-circle {
  /* background-color: #f5f5f561; */
  /* border: 3px solid #7159a8; */
  padding: 0px;
}
.icon-circle-contact {
  /* background-color: #f5f5f561; */
  /* border: 1.5px solid #7159a8; */
  background-color: #fff;
  padding: 20px;
  border-radius: 70%;
}

.rounded {
  border-radius: 50% !important;
}
.rounded-md {
  border-radius: 20% !important;
}

.horizontal-card {
  border-radius: 20px;
  transition: all 0.3s ease;
  transform: translateY(0);
  background: white;
  box-shadow: 0 2px 13px #f0f2ff;
}

.horizontal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px #f0f2ff;
}

.stat-icon {
  transition: all 0.3s ease;
}

/* Stats Section Responsive Styles */
.bg-section-purple {
  padding: 4rem 0;
}

.horizontal-card {
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
  margin: 1rem 0;
}

/* Testimonial Section */
.testimonial-container {
  margin: 15px auto;
  padding: 0 20px;
  position: relative;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%; /* Full width for single card */
  padding: 40px;
  background: rgba(247, 247, 247, 0.9);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.quote-left {
  font-size: 30px;
  color: #8f78c3;
  margin-right: 8px;
}
.quote-right {
  font-size: 30px;
  color: #8f78c3;
  margin-left: 8px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0 auto;
}

.navigation-buttons {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #8f78c3;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #a692d6;
}

.nav-button:active {
  transform: scale(0.95);
}

.nav-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #f7f0f0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lh-4 {
  line-height: 4rem;
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 40px 10px;
  }
  .testimonial-container {
    padding: 0;
  }
}

/* Form */
.bg-contact {
  background-color: #b6a0e47c;
}
.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-full-width {
  grid-column: 1 / -1;
}

.form-group {
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #000;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  background: white;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #1c204f;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  text-shadow: 1px 2px 2px #287ace;
}

.required::after {
  content: "*";
  color: #000;
  margin-left: 2px;
}

@media (max-width: 768px) {
  .form-container {
    grid-template-columns: 1fr;
  }
}

/* Services Slider */
.bg-service {
  background: #9280bc;
}
.custom-slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2rem;
  flex-wrap: wrap;
}

.static-text {
  flex: 1;
  padding-right: 2rem;
  text-align: left;
}

.custom-slider {
  flex: 2;
  overflow: hidden;
  position: relative;
}

.custom-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-slide {
  min-width: 100%;
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .custom-slide {
    min-width: 100%;
    padding: 0;
  }
  .custom-slider-container {
    display: block;
    position: relative;
    padding: 2rem;
    flex-wrap: wrap;
  }
  .static-text {
    padding-right: 0;
    text-align: center;
  }
  .custom-slider-container .custom-slider-nav {
    position: static;
    top: auto;
    bottom: 10px;
    transform: none;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .custom-slide {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .custom-slide {
    min-width: 50%;
  }
}

.custom-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #fafdff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.custom-card img {
  width: 30%;
  height: auto;
  transition: all 0.3s ease;
}

.custom-card-content {
  padding: 1.5rem;
  text-align: center;
}

.category {
  font-size: 18px;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.title {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.custom-slider-nav {
  position: absolute;
  left: 8px;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  gap: 3rem;
  pointer-events: none;
  z-index: 20;
  margin-top: 20px;
}

.custom-nav-btn {
  position: relative;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgb(0 0 0 / 40%);
  z-index: 10;
}

.custom-prev {
  left: 1rem;
  font-size: 30px;
}

.custom-next {
  right: 1rem;
  font-size: 30px;
}
/* END Services Slider */

/* BreadCrumbs */
/* Breadcrumbs Container */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
}

/* Breadcrumb Items */
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: 5px;
}

.breadcrumbs a:hover {
  color: #b392ff;
}

/* Separator */
.breadcrumbs span {
  color: #fff;
  margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 12px;
  }
}
/* END BreadCrumbs */

/* Parallax */
.parallax-bg {
  /* background-image: url('path/to/your/background-image.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: -1;
}

.bg-dark-purple {
  background-color: #2c1e4d;
}
.text-drop-shadow {
  filter: drop-shadow(2px 4px 16px black);
}

/* Forms CSS */
.form-group input,
.form-group textarea {
  transition: all 0.3s ease-in-out;
  border: 1px solid #e0e0e0;
  background: #76767601;
  color: #7159a8;
  padding: 10px 20px;
  border-radius: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
  transform: translateY(-2px);
  border-color: #7159a8;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
  outline: none;
}

.form-group label {
  transition: all 0.3s ease-in-out;
  display: block;
  transform-origin: left;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  transform: translateY(-5px) scale(0.95);
  color: #007bff;
}
/* END Forms CSS */

/* Banner button trial */

.expert-contact-btn {
  width: 230px;
  height: 60px;
  min-width: 210px;
  min-height: 60px;
  border: 0;
  position: relative;
  border-radius: 60px;
  color: #fff;
  background: #342557;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  padding: 12px 20px;
}

.expert-contact-btn .text {
  font-size: 16px;
}

.expert-contact-btn .text,
.expert-contact-btn .icon-container {
  position: relative;
  z-index: 2;
}

.expert-contact-btn .icon-container {
  --icon-size: 25px;
  position: relative;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-left: 10px;
  transition: transform 500ms ease;
}

.expert-contact-btn .icon-container .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  transition: transform 500ms ease, opacity 250ms ease;
  font-size: 22px;
}

.expert-contact-btn .icon-container .icon--left {
  transform: translateX(-200%);
  opacity: 0;
}

.expert-contact-btn .icon-container .icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.expert-contact-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #7159a8, #af98e3);
  border-radius: 60px;
  z-index: 1;
  transition: transform 500ms ease;
}

.expert-contact-btn:hover::after {
  transform: translateX(73%);
}

.expert-contact-btn:hover .icon-container {
  transform: translateX(65%);
}

.expert-contact-btn:hover .icon-container .icon--left {
  transform: translateX(0);
  opacity: 1;
}

.expert-contact-btn:hover .icon-container .icon--right {
  transform: translateX(200%);
  opacity: 0;
}
/* END Banner button trial */

/* Adapt cloud ops */
.nav-active {
  color: #414573 !important;
}
.hero-section {
  padding: 14rem 0;
  height: fit-content;
  background-color: #eff1ff;
  display: flex;
  align-items: center;
}
.highlight {
  background: rgb(44, 47, 77);
  background: linear-gradient(
    0deg,
    rgba(44, 47, 77, 1) 0%,
    rgba(103, 109, 179, 1) 100%
  );
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  display: inline-block;
}

/* shivani edits */

.bold-color {
  color: #343863;
}

.cards-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.cards-wrapper {
  display: flex;
  gap: 20px;
  padding: 0 10px;
  min-width: min-content;
}

.card {
  flex: 0 0 300px; /* Fixed width for mobile scrolling */
  min-height: 300px;
  border-radius: 15px;
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.15) 2px,
    transparent 0
  );
  background-size: 20px 20px;
}

.card:hover {
  transform: translateY(-5px);
}

.card:nth-child(1) {
  background: url(../images/bg1.webp);
}

.card:nth-child(2) {
  background: url(../images/bg2.webp);
}

.card:nth-child(3) {
  background: url(../images/bg3.webp);
}

.card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: white;
  line-height: 1.3;
}

.card-description {
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 24px;
}

.know-more-btn {
  background: white;
  color: #4668d9;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.2s ease;
}

.know-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Hide scrollbar but keep functionality */
.cards-container::-webkit-scrollbar {
  display: none;
}

.cards-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Desktop layout */
@media (min-width: 1024px) {
  .cards-container {
    overflow-x: visible;
  }

  .cards-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
  }
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px 0;
  display: grid;
}

.link-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link-text {
  font-size: 16px;
  color: #666;
}

.arrow-icon {
  width: 35px;
  height: 35px;
  transform: rotate(-45deg);
  margin-left: 10px;
  color: #360fab;
}

@media (max-width: 768px) {
  .link-cards {
    grid-template-columns: 1fr;
  }

  .link-card {
    margin-bottom: 10px;
  }
}

.vertical-card {
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 20px #f0f0f0cc;
}

/* .vertical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
} */

.vertical-card {
  background: white;
  border-radius: 15px;
  /* transition: all 0.3s ease; */
  margin: 1rem 0;
  padding: 3rem 2.5rem;
}
.h-100 {
  height: 100px;
}
.padding-footer {
  padding-top: 5.5rem;
  padding-bottom: 1.5rem;
}

/* Metrics Bar */
.metrics-container {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: -4rem auto 0;
  box-shadow: 0 4px 6px #f0f2ff;
  max-width: 1200px;
  width: 98%;
}

.metrics-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.metric-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.metric-item img {
  width: 20%;
  margin-right: 1rem;
}

.icon-wrapper {
  flex-shrink: 0;
}

.metric-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.metric-number {
  font-size: clamp(1.5rem, 2vw, 3.5rem);
  font-weight: bold;
  color: #343863;
  white-space: nowrap;
}

.metric-label {
  color: #718096;
  font-size: clamp(0.875rem, 1.5vw, 1.6rem);
  margin-top: 1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .metrics-container {
    padding: 1.5rem 1rem;
  }

  .metrics-wrapper {
    gap: 0.5rem;
  }

  .metric-item img {
    width: 40%;
    margin-right: 0;
  }

  .metric-label {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .metrics-container {
    padding: 1rem 3rem;
    margin-top: -2rem;
  }
}
/* END Metrics Bar */

/* CRP Timeline */
.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
}
#timeline .timeline-item:after,
#timeline .timeline-item:before {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
#timeline {
  width: 100%;
  margin: 0px auto;
  position: relative;
  padding: 0 20px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#timeline:before {
  content: "";
  width: 3px;
  height: 77%;
  background: #9093c7;
  left: 50%;
  top: 0;
  position: absolute;
}
#timeline:after {
  content: "";
  clear: both;
  display: table;
  width: 100%;
}
#timeline .timeline-item {
  margin-bottom: 50px;
  position: relative;
}
#timeline .timeline-item .timeline-icon {
  background: #eaebfe;
  width: 50px;
  height: 50px;
  position: absolute;
  border: 2px solid #9093c7;
  top: 0;
  left: 50%;
  overflow: hidden;
  margin-left: -23px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#timeline .timeline-item .timeline-icon svg,
#timeline .timeline-item .timeline-icon .fa {
  position: relative;
  top: 13px;
  left: 14px;
  font-size: 24px;
  color: #fff;
}
#timeline .timeline-item .timeline-content {
  width: 45%;
  padding: 0px 25px 0px 25px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#timeline .timeline-item .timeline-content h3 {
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 1.5rem 0;
}
#timeline .timeline-item .timeline-content p {
  padding: 0px 0px 5px 0px;
  padding-bottom: 15px;
  font-family: "stolzl-400";
  font-size: 15px;
  line-height: 27px;
  color: #707070;
}
#timeline .timeline-item .timeline-content.right {
  float: right;
}
@media screen and (max-width: 768px) {
  #timeline {
    margin: 30px;
    padding: 0px;
    width: 90%;
  }
  #timeline:before {
    left: 0;
  }
  #timeline .timeline-item .timeline-content {
    width: 90%;
    float: right;
  }
  #timeline .timeline-item .timeline-content:before,
  #timeline .timeline-item .timeline-content.right:before {
    left: 10%;
    margin-left: -6px;
    border-left: 0;
    border-right: 7px solid #2f1428;
  }
  #timeline .timeline-item .timeline-icon {
    left: 0;
  }
}
.process-img {
  margin: 9px 0 0 10px;
  width: 28px;
}
/* END CRP Timeline */

/* FAQs */
/* FAQs */
.link-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.faq-item {
  background: white;
  border-radius: 8px;
  border: 2px solid #e2e2e2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: auto;
  position: relative;
  align-self: flex-start;
  margin-bottom: 15px;
}

.faq-question {
  position: relative;
  padding: 20px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 500;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #333;
  font-weight: 300;
  transition: transform 0.1s ease;
}

.faq-toggle {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.1s ease;
  opacity: 0;
  color: #707070;
  line-height: 1.6;
  padding: 0 20px;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 1000px;
  padding: 0 20px 20px;
  margin-top: -10px;
  opacity: 1;
}

.faq-toggle:checked + .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .link-cards {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 15px;
    padding: 15px 50px 15px 15px;
  }

  .faq-answer {
    font-size: 14px;
  }
}
