@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --bs-primary: #222;
  --bs-secondary: #f5e96e;
  --bs-success: #198754;
  --bs-danger: #dc3545;
  --bs-primary-rgb: #333333;
  --bs-body-bg: #f4f4f2;
  --bs-body-color: #212529;
  --theme: #222;
  --secondary: #f5e96e;
  --black: #000;
  --gray: #353535;
  --gray-500: #878787;
  --gray-400: #9c9c9c;
  --gray-200: #f8f8f8;
  --gray-100: #fbfbfb;
  --white: #ffffff;
  --rounded-6: 0.375rem;
  --rounded-10: 0.625rem;
  --rounded-16: 1rem;
  --rounded-20: 1.25rem;
  --rounded-30: 1.875rem;
  --rounded-50: 3rem;
  --transition: all 0.4s linear;
  --font-sm: 0.75rem;
  --font-md: 0.875rem;
  --font-lg: 1rem;
  --font-xl: 1.125rem;
  --font-2xl: 1.25rem;
  --font-3xl: 1.375rem;
  --font-4xl: 1.5rem;
  --font-5xl: 2rem;
  --font-6xl: 2.5rem;
  --font-xxl: 3rem;
}

.gradient-light {
  background: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(244, 247, 255, 1) 100%
  );
}

/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-style: 400;
  background: #f4f4f2;
  color: #222;
  overflow-x: hidden;
}
.icon {
  width: 4rem;
}
/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.813rem;
  color: var(--white);
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.375rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  line-height: 1.5;
}
h2 {
  font-size: 3rem;
  color: #222;
  font-weight: 400;
}
h2 strong {
  font-weight: 700;
}
h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.font-sm {
  font-size: var(--font-sm);
}

.font-md {
  font-size: var(--font-md);
}

.font-lg {
  font-size: var(--font-lg);
}

.font-xl {
  font-size: var(--font-xl);
}

.font-2xl {
  font-size: var(--font-2xl);
}

.font-3xl {
  font-size: var(--font-3xl);
}

.font-4xl {
  font-size: var(--font-4xl);
}

.font-5xl {
  font-size: var(--font-5xl);
}

.font-6xl {
  font-size: var(--font-6xl);
}

.font-xxl {
  font-size: var(--font-xxl);
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

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

ul li a {
  text-decoration: none;
}

a {
  text-decoration: none;
  transition: var(--transition);
  color: var(--primary);
  font-weight: 500;
}

a:hover {
  color: var(--theme);
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-50 {
  padding-bottom: 50px;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-100 {
  padding-top: 100px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.w-16 {
  width: 16px !important;
}

.h-16 {
  height: 16px !important;
}

.top--50 {
  top: -50px;
}

.bg-dark {
  background: var(--gray);
}

.bg-theme {
  background: var(--theme);
}

.bg-gray-200 {
  background: var(--gray-200);
}
.bg-gray-100 {
  background: var(--gray-100);
}
.text-blue {
  color: var(--blue);
}
.text-theme {
  color: var(--theme);
}
.border.border-color {
  border-color: var(--warning) !important;
}
.list-styled {
  list-style: disc;
  padding-left: 1.5rem;
}
#scrollTop {
  z-index: 99;
  cursor: pointer;
  border: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: var(--theme);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  display: none;
  transition: 0.6s all ease-in-out;
  -moz-transition: 0.6s all ease-in-out;
  -ms-transition: 0.6s all ease-in-out;
  -webkit-transition: 0.6s all ease-in-out;
  border-radius: 50%;
}

#scrollTop i {
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTop:hover {
  background-color: var(--black);
}

a.link-blue {
  color: #0f1d56;
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #d9d9d9 !important;
  margin: 0 0.25rem;
}
.owl-dots .owl-dot.active {
  background: #555555 !important;
}
.contentBlock ul {
  margin-bottom: 20px !important;
}
.contentBlock li {
  padding-left: 30px;
  position: relative;
  line-height: 2;
}
.contentBlock li::before {
  width: 1.125rem;
  height: 1.125rem;
  border: 50%;
  content: "";
  display: block;
  position: absolute;
  background: url(../images/bullet.svg) no-repeat;
  left: 0px;
  top: 0.5rem;
}
/*--------------------------------------*/

/*Buttton
/*--------------------------------------*/
.btn {
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: var(--rounded-10);
  display: inline-flex;
  align-items: center;
  transition: all 0.4s;
  font-size: 1.125rem;
  line-height: 1.5;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}
.btn.btn-white {
  background-color: #fff;
}
.btn span {
  background: #f5e96e;
  width: 2rem;
  height: 2rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-white:hover {
  background: #f5e96e;
  color: #222;
}
.btn.btn-white:hover span {
  background: #fff;
}

.primary {
  background-color: #f5e96e !important;
}

.primary:hover {
  background: #fff !important;
  color: #222 !important;
}
.primary:hover span {
  background: #f5e96e !important;
}
.secondary {
  margin-left: 10px;
}

.btn-close {
  position: absolute;
  z-index: 1;
  opacity: 1;
  color: #fff;
  right: 1rem;
  top: 1rem;
  padding: 0.25rem !important;
  background: url(../images/close-icon.svg) no-repeat center;
  background-color: var(--secondary);
  border-radius: 0.25rem;
  background-size: 100%;
}

.btn img {
  transition: all 0.4s;
}

.btn.btn-outline-primary {
  border: 1px solid var(--theme);
  color: var(--theme) !important;
}

.btn.btn-outline-primary:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}

.btn-close:hover {
  opacity: 0.8;
}

.form-select,
.form-control {
  padding: 0.65rem 1rem;
  border-radius: 0;
}

.input-group > .form-control {
  border-radius: 0.45rem;
}

.sepration {
  padding-top: 80px;
}

.sepration-y {
  padding: 70px 0;
}

.z-index-9 {
  z-index: 9;
}

.text-justify {
  text-align: justify;
}

.img-fluid {
  object-fit: cover;
}

.modal-content {
  border-radius: var(--rounded-20);
  box-shadow: 0px 0px 20px 1px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  border: 4px solid var(--white);
}

.rounded-0 {
  border-radius: 0;
}

.rounded-6 {
  border-radius: var(--rounded-6);
}

.rounded-10 {
  border-radius: var(--rounded-10);
}

.rounded-16 {
  border-radius: var(--rounded-16);
}

/*.rounded-20 {
    border-radius: var(--rounded-20);
}
*/
.rounded-50 {
  border-radius: var(--rounded-50);
}

.rounded-30 {
  border-radius: var(--rounded-30);
}

.bg-theme {
  background: var(--theme);
}

.height-auto {
  height: auto !important;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
}

.max-width-900 {
  max-width: 900px;
}

/*--------------------------------------*/

/*Header
/*--------------------------------------*/
header .header-top {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 1;
  transition: all 0.4s linear;
}
header .btn-wrap {
  right: 1rem;
  top: 0;
}

header .btn.btn-primary {
  background-color: var(--theme);
  font-size: 12px;
  font-weight: 400;
  border-color: var(--theme);
}

header .btn.btn-primary:hover {
  color: var(--theme);
  border-color: var(--theme);
}

.navbar-brand img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: all 0.4s linear;
}

.navbar-toggler-icon {
  width: 2em;
}
.navbar-toggler-icon svg {
  width: 100%;
}
.fixed-top.sticky .navbar-toggler svg path {
  fill: #000 !important;
}
.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 105;
}

.navbar-brand {
  height: 50px;
  width: auto;
  transition: all 0.4s linear;
  padding: 0;
}
.navbar-brand .logo {
  height: 50px;
}
.navbar-brand .scroll {
  display: none;
  opacity: 0;
}
.navbar {
  padding: 0.75rem 0;
  justify-content: center;
  background: transparent;
  transition: all 0.4s linear;
  background: #fff;
  max-width: 1384px;
  margin: auto;
  border-radius: var(--rounded-10);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
  font-size: 1rem;
  opacity: 1;
  font-weight: 600;
  padding: 0.35rem 1.25rem !important;
  transition: all 0.5s;
  position: relative;
  color: var(--theme);
  border-radius: 0.25rem;
}

.nav-item.dropdown:hover > .nav-link,
.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--theme);
  background: var(--secondary);
}

.navbar-nav .nav-link.show {
  color: var(--theme);
}

.fixed-top.sticky .navbar-brand .logo,
.fixed-top.sticky .navbar-brand {
  height: 40px;
}
.fixed-top.sticky .navbar-brand .noScroll {
  display: none;
  opacity: 0;
}
.fixed-top.sticky .navbar-brand .scroll {
  display: block;
  opacity: 1;
}

.fixed-top.sticky .navbar {
  padding: 1rem 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -ms-backdrop-filter: blur(4px);
  -moz-backdrop-filter: blur(4px);
}

.fixed-top.sticky .navbar .nav-link {
  color: var(--black);
}
.nav-item.dropdown:hover > .nav-link,
.fixed-top.sticky .navbar .nav-link.active,
.fixed-top.sticky .navbar .nav-link:hover {
  color: var(--theme);
}

.fixed-top.sticky .offcanvas-backdrop,
.fixed-top.sticky .offcanvas {
  top: -2.5rem;
  left: -1rem;
}

.dropdown-toggle::after {
  background: url(../images/arrow-down.svg) no-repeat;
  width: 12px;
  height: 6px;
  background-position: center;
  background-size: 10px;
  position: relative;
  top: 3px;
  border: 0;
}

.dropdown-menu {
  padding: 0rem 0rem;
  border: 0;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  margin: 0;
  margin-left: 0.1rem;
  width: 15rem;
}

.dropdown-item {
  white-space: unset;
}

.dropdown-menu li:hover:first-child .dropdown-item {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.dropdown-menu li:hover:last-child .dropdown-item {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.dropdown-menu li:last-child {
  border: 0;
}

.dropdown-menu li .dropdown-item {
  padding: 0.65rem 1rem;
}

.dropdown-menu li .dropdown-item:hover {
  background: var(--theme);
  color: var(--white);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  margin-left: 1rem;
}
.navbar-toggler:focus {
  box-shadow: none;
  padding: 0;
}
.navbar-toggler-icon {
  background-size: 80%;
}

header .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0px;
}

/*--------------------------------------*/

/*Hero Banner Section
/*--------------------------------------*/

.hero-slider {
  margin-bottom: 2rem;
  height: 100vh;
  width: 100%;
}

.hero-carousel {
  width: 100% !important;
  display: block !important;
}

.hero-carousel .owl-stage-outer {
  width: 100% !important;
  height: 100vh;
}

.hero-carousel .owl-stage {
  width: 100% !important;
  height: 100vh;
}

.hero-carousel .item {
  width: 100%;
  height: 100vh;
}

.hero-slider .img-banner {
  height: 100vh;
  object-fit: cover;
  width: 100%;
}
.hero-slider .caption {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 99;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0);
}

.hero-slider .caption .caption-widget {
  max-width: 800px;
  margin: auto;
  color: var(--theme);
  text-align: center;
  padding-top: 5rem;
  width: 100%;
}

.hero-slider .caption h1 {
  font-size: 3.625rem;
  line-height: 1.1;
  color: var(--theme);
  font-weight: 400;
}
.hero-slider .caption h1 strong {
  font-weight: 700;
}

.hero-slider .caption p {
  font-size: 1.125rem;
  margin: 4rem 0 5rem;
}
.hero-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.hero-slider .owl-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  box-sizing: border-box;
}

.hero-slider .owl-nav button.owl-prev span,
.hero-slider .owl-nav button.owl-next span {
  display: none;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  background-color: var(--theme);
  display: inline-block;
  width: 3.25rem;
  height: 3.25rem;
  line-height: 1;
  border-radius: 3rem;
  margin-left: 0.75rem;
  font-size: 2rem;
  transition: all 0.4s;
}

.hero-slider .owl-nav button.owl-prev {
  background-image: url(../images/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next {
  background-image: url(../images/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
  background: var(--primary);
  opacity: 0.7;
}

.hero-slider .owl-nav button.owl-prev:hover {
  background-image: url(../images/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next:hover {
  background-image: url(../images/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slider .owl-dots {
  position: absolute;
  z-index: 99;
  width: 100%;
  bottom: 34px;
  text-align: center;
}

.hero-slider .owl-dots .owl-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 1rem;
  background-color: #fff;
  margin: 0 0.15rem;
}

.hero-slider .owl-dots .owl-dot.active {
  background-color: var(--theme);
}

.hero-banner .caption .caption-widget h1 {
  font-size: 3rem;
}

.max-width-500 {
  max-width: 600px;
}

.heading-widget {
  position: relative;
  margin-bottom: 3ewm;
}

.heading-widget::before {
  content: "";
  background: #f5e96e;
  height: 0.25rem;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
}

.heading-widget h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  background: #f4f4f2;
  padding-right: 2rem;
}

.work-block {
  border-radius: 0.625rem;
  min-height: 28.75rem;
  padding: 4rem 3rem;
  transition: all 0.4s;
}
#services .work-block {
  cursor: pointer;
}
#services .work-block:hover {
  background: #f5e96e !important;
}
.work-block .icon-widget {
  width: 4.5rem;
  height: 4.5rem;
}
.measure-block {
  min-height: auto !important;
  padding: 3rem;
}
.measure-block h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
.measure-block p {
  margin-bottom: 0;
}

.subscribe-form {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 4px;
}
.subscribe-form .form-control::placeholder {
  color: #222;
}
.send-btn {
  background: rgba(245, 233, 110, 1);
  border-radius: 6px;
  font-weight: 500;
  color: 000;
  transition: all 0.4s;
}
.send-btn:hover {
  background: #222;
  color: #fff;
}
.lets-build-section h2 strong {
  border-bottom: 4px solid var(--secondary);
}
.lets-build-section .btn {
  margin: 0 1rem;
}

footer a {
  color: #555;
  font-weight: 500;
}
footer li {
  line-height: 2;
}
footer a:hover {
  color: #000;
}
footer h5 {
  margin-bottom: 1.15rem;
}
.social-widget li {
  transition: all 0.4s linear;
}
.social-widget li:hover {
  opacity: 0.5;
}
.copryright a,
.copryright {
  color: #777;
}

.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.no-shadow {
  box-shadow: none;
}
.btn.btn-outline-dark:hover {
  color: #fff;
}

.btn.btn-warning {
  border: 2px solid #f5e96e !important;
  background: #f5e96e !important;
  color: #222;
}
.btn.btn-warning:hover {
  border: 2px solid #222 !important;
  background: #222 !important;
  color: #fff;
}
.link {
  font-size: 1.125rem;
}
.link .link-icon {
  background: #f5e96e;
  width: 2rem;
  height: 2rem;
  border-radius: 3px;
  display: inline-block;
  border: 0;
  transition: all 0.4s;
  font-size: 1.5rem;
}
.link .link-icon img {
  transform: rotate(-135deg);
  transition: all 0.4s;
}
.link:hover img {
  transform: rotate(-90deg);
}
.link .line {
  position: relative;
}
.link .line::before {
  width: 100%;
  height: 1px;
  background: #222;
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  display: block;
  transition: all 1s;
}
.link:hover .line::before {
  width: 0%;
}
.link:hover .link-icon {
  background: #ccc;
  color: #fff;
}
.hero-slider.inner-banner .caption,
.hero-slider.inner-banner .img-banner,
.hero-slider.inner-banner {
  height: 80vh;
  background: rgba(0, 0, 0, 0.5);
}

.work-block-2 {
  padding: 3rem;
  min-height: 35rem;
}

.user-widget h5 {
  margin-bottom: 0.25rem;
}
.user-widget p {
  font-size: var(--font-md);
}
.user-widget .avatar {
  min-width: 3rem;
  height: 3rem;
  background: #ededed;
  border-radius: var(--rounded-6);
  margin-right: 0.75rem;
}
.testimonial-section .work-block {
  min-height: 24rem;
}
.rating {
  color: var(--secondary);
}
.rating i {
  margin-right: 0.25rem;
}
.testimonial-section h3 {
  font-weight: 400;
}

footer {
  margin-top: 70px;
}
/*--------------------------------------*/

/*Responsive
/*--------------------------------------*/

@media all and (max-width: 1480px) {
  .navbar {
    max-width: 1332px;
  }
  .hero-slider .caption h1 {
    font-size: 3rem;
  }
}
@media all and (max-width: 1199px) {
  .navbar {
    max-width: 100%;
    margin: 0 1rem;
  }
  .hero-slider .caption h1 {
    font-size: 2.5rem;
  }
}

@media all and (max-width: 991px) {
  .navbar-brand,
  .navbar-brand .logo {
    height: 40px;
  }
  .offcanvas {
    background: #fff;
    height: 100vh;
    box-shadow: 40px 0 80px rgba(0, 0, 0, 0.1);
    top: 0;
    width: 300px !important;
  }
  .sepration-y {
    padding: 50px 0;
  }
  h2 {
    font-size: 2.25rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  .navbar .nav-item {
    line-height: 2;
  }
  .fixed-top.sticky .navbar .nav-link {
    color: #222;
  }
  .dropdown-menu {
    min-width: 100%;
    margin: 0;
  }
  .navbar-nav .nav-link.show {
    color: var(--warning);
  }

  .fixed-top.sticky .navbar {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }
  .hero-slider .caption p {
    font-size: 1.125rem;
    margin: 2rem 0 3rem;
  }

  .work-block {
    margin-bottom: 1.5rem;
    padding: 4rem 2rem;
  }
  .measure-block h2 {
    font-size: 3rem;
  }
  .lets-build-section h2 {
    line-height: 1.5;
  }
  .hero-slider.inner-banner .caption,
  .hero-slider.inner-banner .img-banner,
  .hero-slider.inner-banner {
    height: 100vh;
  }
  .hero-slider.inner-banner .caption {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media all and (max-width: 767px) {
  .btnMobile {
    margin-bottom: 20px;
    display: block;
  }
  .secondary {
    margin-left: 0px;
    margin-top: 10px;
  }
  h2 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }

  h3 {
    font-size: 1.5rem;
  }
  .hero-slider .caption h1 {
    font-size: 2rem;
    line-height: 1.25;
  }
  .measure-block h2 {
    font-size: 2.5rem;
  }
  .hero-slider.inner-banner .caption {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-slider.inner-banner .caption p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .sepration-y {
    padding: 30px 0;
  }
}

@media (max-width: 567px) {
  .navbar-brand,
  .navbar-brand .logo {
    height: 40px;
  }
  .footer-logo {
    height: 32px;
  }
}
@media (max-width: 474px) {
  .lets-build-section .btn {
    margin: 0 0rem 1rem;
    width: 100%;
    text-align: center;
    display: inline-block;
  }
}
/*FAQ*/
.accordion-button:not(.collapsed) {
  background-color: #f5e96e !important;
}
.accordion-button {
  background-color: #fff !important;
}
/*--------------------------------------*/

/*Growth & Process Page
/*--------------------------------------*/

.growth-card {
  transition: var(--transition);
  border: 1px solid #eee;
}

.growth-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: transparent;
  background: #f5e96e !important;
}

.growth-card .icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--rounded-10);
  margin-bottom: 1.5rem;
}

.growth-card .icon-md {
  width: 24px;
  height: 24px;
}

.process-card {
  transition: var(--transition);
  border: 1px solid transparent;
}

.process-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.process-card .icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  /* Light blue background */
}

.process-card .icon-sm {
  width: 24px;
  height: 24px;
}

.bg-blue-light {
  background-color: #eef2ff;
}

.object-fit-cover {
  object-fit: cover;
}
/* Enhanced Hover Effects for Growth Services */
#growth-consulting-services .growth-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #eee;
  position: relative;
  z-index: 1;
}

#growth-consulting-services .growth-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  border-color: var(--secondary);
}

#growth-consulting-services .growth-card .icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--rounded-10);
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#growth-consulting-services .growth-card:hover .icon-wrapper {
  background: var(--secondary);
  transform: scale(1.1) rotate(5deg);
}

#growth-consulting-services .growth-card .icon-md {
  width: 24px;
  height: 24px;
  transition: all 0.4s ease;
}

.hero-carousel .owl-item {
  width: 100% !important;
}

.service-slider .owl-item:last-child {
  margin-right: 0 !important;
}

/* Responsive margins for service slider */
@media (max-width: 766px) {
  .service-slider .owl-item {
    margin-right: 10px !important;
  }
}

.testimonial-slider .owl-item {
  margin-right: 0 !important;
}
