/*!
Theme Name: StarlitDevs
Theme URI: http://underscores.me/
Author: StarlitDevs
Author URI: https://starlitdevs.com/
Description: This is a custom theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: starlitdevs
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

StarlitDevs is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root{
  --color-white-color: #FFFFFF;
  --color-black-color: #000000;
	--color-light-gray: #F7F7F7;
	--color-dark-light: #F3F5F7;
	--color-dark-blue: #143D59;
	--color-dark-blue-light: #143D590D;
	--color-yellow-orange: #F4B41A;
	--color-yellow-light: #F4B41A4F;
	--color-heading-color-1: linear-gradient(90deg, #143D59, #02233A);
	--color-heading-color-2: linear-gradient(90deg, #143D59, #2B83BF);
	--color-heading-color-2: linear-gradient(90deg, #143D59, #021C2FA8);
	--color-button-bg: linear-gradient(90deg, #143D59, #012137);
	--color-text-color: #00192A;
	--color-card-bg: #F4F4F4;
	--color-border-color: #143D592E;
  --color-input-border: #c8c8c8;
	--primary-font: 'Poppins';
	--secondary-font: 'Gabarito';
	--button-font: 'Century Gothic';
}

body{
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
	font-family: var(--primary-font);
	line-height: 1.35;
	font-size: 20px;
	font-weight: 400;
	color: var(--color-black-color);
}
body, html {
	scroll-behavior: smooth;
	scroll-padding-top: 180px;
}
.btn{
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 20px;
	line-height: 1.35;
	font-family: var(--button-font);
	font-weight: 700;
	letter-spacing: 5%;
	border: none;
	background: var(--color-button-bg);
	color: var(--color-white-color);
	transition: .3s;
	text-transform: capitalize;
}
.btn:hover{
	transform: translate(-3px, -3px);
	box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
	color: var(--color-yellow-orange);
}
h1, h2, h3, h4, h5, h6{
	line-height: 1;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-family: var(--secondary-font);
}
h1{
	font-size: 45px;
	font-weight: 500;
	background: var(--color-heading-color-1);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	color: transparent;
	background-clip: text;
}
h2{
	font-size: 45px;
	font-family: var(--secondary-font);
	font-weight: 800;
	background: var(--color-heading-color-1);
	--webkit-background-clip: text;
	--webkit-text-fill-color: transparent;
	color: transparent;
	background-clip: text;
}
p{
	margin: 0;
}
p:not(:last-child){
	margin-bottom: 20px;
}
img{
	max-width: 100%;
	height: auto;
}
ul{
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
	transition: .4s;
}
a:focus{
	outline: none;
}
textarea, input, select{
	box-sizing: border-box;
	width: 100%;
	border: 1px solid var(--color-input-border);
	border-radius: 10px;
	padding: 15px 18px;
	color: var(--color-black-color);
	background: transparent;
	font-size: 16px;
	font-weight: 400;
  margin-bottom: 14px;
}
input, select{
	height: 50px;
}
textarea{
  max-height: 102px;
}
input:focus, textarea:focus{
	outline: none;
}
input::placeholder, textarea::placeholder, select {
  color: #0A0A0A80;
	opacity: 1;
}
.bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.py-120{
	padding-top: 120px;
	padding-bottom: 120px;
}
.py-85{
	padding-top: 85px;
	padding-bottom: 85px;
}
.pb-100{
	padding-bottom: 100px;
}
.pb-85{
	padding-bottom: 85px;
}
.pt-120{
	padding-top: 120px;
}
.container{
	transition: .4s;
	max-width: 1345px;
	padding: 0 24px;
	margin-left: auto;
	margin-right: auto;
}

/* header */

.header-wrapper {
  padding: 20px 0;
  background-color: var(--color-white-color);
  transition: all .3s ease;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  max-width: 165px;
  transition: all .3s ease;
}
.header-button .btn{
	text-transform: uppercase;
}
.header-sec{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all .3s ease;
}
.header-logo img {
	width: 165px;
}
.header-nav {
  list-style: none;
  display: flex;
  gap: 30px;
}
.header-nav li a {
  display: block;
  padding: 4px 0;
  color: var(--color-text-color);
  font-size: 18px;
  text-transform: uppercase;
  font-family: var(--secondary-font);
  font-weight: 500;
	position: relative;
}
.header-nav li a::before {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-yellow-orange);
  content: '';
  transition: all .4s ease;
}
.header-nav li a:hover::before {
  width: 100%;
}

.header-button {
  gap: 10px;
}
.menu-open {
  width: 50px;
  border: none;
  background-color: var(--color-dark-blue);
  height: 55px;
  border-radius: 8px;
  color: var(--color-white-color);
}
.menu-open svg {
  width: 32px;
}
body:has(#wpadminbar) .header-sec {
	top: 32px;
}
.header-sec.sticky-active .header-wrapper {
	padding: 15px 0;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
}
.header-sec.sticky-active .header-logo {
  max-width: 130px;
}
.overflow-hidden{
	overflow: hidden;
}

/* mobile menu */

.left-0{
	left: 0;
}
.left-60{
	left: -60%;
}
.mobile-menu {
  background-color: var(--color-dark-blue);
  width: 60%;
  position: absolute;
  top: 0;
  height: 100vh;
  padding: 24px;
	transition: all .6s ease;
}
.mobile-menu-inner {
  position: relative;
  padding-top: 40px;
}
.menu-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: var(--color-black-color);
  color: var(--color-white-color);
  position: absolute;
  right: 0;
  top: 0;
}
.mobile-header-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-header-nav li a {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--color-white-color);
  padding: 5px 0;
  display: inline-block;
}
.mobile-header-nav li a:hover {
  color: var(--color-yellow-orange);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 40;
  display: none;
}
.menu-overlay.active {
  display: block;
}

/* hero section */


.hero-wrapper {
  padding: 40px 50px;
  background-color: var(--color-light-gray);
  border-radius: 20px;
}
.hero-text-content h1 {
  margin-bottom: 22px;
}
.hero-text-content h1 span, .heading-box h3 span {
  	text-decoration: underline;
	text-decoration-color: var(--color-yellow-orange);
}

/*
.hero-text-content h1 span, .heading-box h3 span {
  position: relative;
}
.hero-text-content h1 span::before, 
.heading-box h3 span::before, 
.cta-text p span::before {
  content: '';
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 5px;
  left: 0;
  display: block;
  background-color: var(--color-yellow-orange);
}
*/
.cta-text p span::before {
  content: '';
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 5px;
  left: 0;
  display: block;
  background-color: var(--color-yellow-orange);
}

.hero-text-content p {
	width: 86%;
}
.hero-image {
  text-align: end;
  max-width: 490px;
  margin-left: auto;
  position: relative;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 490 / 548;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.hero-btn {
  margin-top: 36px;
}
.hero-row{
	align-items: center;
}

.review-box {
  background-color: var(--color-white-color);
  position: absolute;
  left: -90px;
  top: 40%;
  bottom: 0;
  width: 220px;
  transform: translateY(-50%);
  padding: 10px 20px;
  border-radius: 10px;
  height: fit-content;
  transform: skewX(-3deg);
}

.review-box p {
  font-size: 15px;
  text-align: start;
  font-weight: 300;
}
.review-icon {
  position: absolute;
  right: 29px;
  bottom: 25%;
}
.review-box p strong {
  font-weight: 700;
}
.quote {
  width: fit-content;
  margin-top: -24px;
  margin-bottom: 24px;
}

/* ai services agency */

.ai-services-wrapper {
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
}
.heading-and-image {
  width: 45%;
}
.heading-box h3 span {
  z-index: 1;
}
.heading-box h3 span::before {
  z-index: -1;
  bottom: 3px;
}
.heading-box {
	width: 80%;
	margin-bottom: 25px;
}
.ai-services-description p strong {
	font-weight: 500;
}
.ai-services-description {
  width: 55%;
}
.heading-box h3 {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.35;
}
.image-box img {
	max-width: 444px;
	width: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 444 / 249;
	border-radius: 20px;
}

/* what-we-work */

.what-we-work-row{
	align-items: center;
}

.what-we-work-wrapper {
  padding: 40px;
  border-radius: 20px;
  background-color: var(--color-light-gray);
}
.what-we-work-image img {
  border-radius: 20px;
  aspect-ratio: 490 / 707;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.what-we-work-image {
  max-width: 490px;
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
}
.what-we-work-heading {
  background-color: var(--color-white-color);
  padding: 12px 22px;
  width: fit-content;
  border-radius: 10px;
  border: 1px solid var(--color-light-gray);
  margin-bottom: 35px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}
.what-we-work-heading h2 {
  font-weight: 800;
}
.what-we-work-text h3 {
  color: var(--color-dark-blue);
  font-size: 35px;
  margin-bottom: 15px;
}
.what-we-work-text h4 {
  font-weight: 600;
  font-family: var(--primary-font);
  margin-bottom: 16px;
  color: var(--color-text-color);
}
.what-we-work-text p {
  color: var(--color-text-color);
  font-weight: 300;
}
.what-we-work-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 300;
}

/* services */

.services-heading-box {
  height: 215px;
  border-radius: 25px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.services-heading-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-dark-blue);
  opacity: .6;
}
.services-heading-box h2 {
  color: var(--color-white-color);
  position: relative;
}
.services-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 46px;
  border-radius: 20px;
  background-color: var(--color-dark-blue);
}
.service-card {
  background-color: var(--color-card-bg);
  padding: 11px;
  padding-top: 16px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  height: 100%;
}
.service-card:hover {
	transform: translateY(-4px);
}
.service-card .number {
  background-color: var(--color-yellow-orange);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid var(--color-white-color);
  line-height: 1;
}
.services-card-heading {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  align-items: center;
}
.services-card-heading .heading-text {
  width: 80%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-dark-blue);
  font-family: var(--secondary-font);
}
.service-info {
  padding: 15px;
  background-color: var(--color-white-color);
  border-radius: 6px;
  height: 100%;
}
.service-accordion-description{
	display: none;
}
.service-info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

/* outcome */

.outcome-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px;
  border-radius: 20px;
  background-color: var(--color-dark-light);
  gap: 50px;
}
.outcome-image {
  border-radius: 20px;
  overflow: hidden;
  width: 40%;
}
.outcome-text-content {
  width: 60%;
  background-color: var(--color-white-color);
  border-radius: 13px;
}
.outcome-heading {
  width: 65%;
  background-color: var(--color-dark-light);
  padding: 15px 0;
  border-radius: 0 0 13px 0;
  padding-left: 38px;
}
.outcome-list-content {
  padding: 0 38px;
  margin-bottom: 50px;
}
.outcome-list-content ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
}
.outcome-description {
  padding-bottom: 54px;
  padding-top: 0;
  padding-left: 38px;
  padding-right: 38px;
}
.outcome-list-content p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 27px;
  padding-top: 10px;
  color: var(--color-text-color);
}
.outcome-description p {
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  color: var(--color-dark-blue);
}

/* work-with-me */

.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  flex-direction: column;
  list-style: none;
}
@keyframes scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-100% - var(--gap)));
  }
}
/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 40s linear infinite;
}

/* Reverse animation */
.marquee--reverse .marquee__content {
  animation-direction: reverse;
}

/* Pause on hover */
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

.qth-row{
  align-items: center;
}
.image-marquee {
  display: flex;
  gap: 20px;
}
.marquee__content li img {
  max-width: 289px;
  width: 100%;
  aspect-ratio: 289 / 300;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.gallery-1, .gallery-2 {
  max-height: 1097px;
  overflow: hidden;
  width: 50%;
}
.qth-title {
  margin-bottom: 38px;
}
.qth-title h2 {
  font-size: 40px;
  margin-bottom: 26px;
}
.qth-title p {
  font-weight: 500;
  font-size: 23px;
}
.qth-text-content {
  padding-right: 110px;
}
.qth-description h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--primary-font);
  margin-bottom: 20px;
}
.qth-description ul {
  padding-left: 40px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
}
.qth-description p {
  font-size: 25px;
}

/* proof */

.proof-wrapper {
  padding: 48px 40px;
  border-radius: 20px;
  background-color: var(--color-dark-light);
}
.proof-title {
  text-align: center;
  margin-bottom: 60px;
}
.proof-title h4 {
  font-size: 30px;
  font-style: italic;
  margin-top: 4px;
  margin-bottom: 14px;
  line-height: 1.35;
  font-weight: normal;
  font-family: var(--primary-font);
}
.proof-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.proof-text-box {
  width: 60%;
  background-color: var(--color-white-color);
  padding: 42px;
  border-radius: 20px;
}
.proof-image {
  width: 40%;
  border-radius: 20px;
  overflow: hidden;
}
.proof-image img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	max-height: 710px;
}
.proof-accordion-title {
  font-size: 32px;
  line-height: 1.35;
  margin-bottom: 14px;
  font-weight: 700;
}
.proof-accordion-heading {
	cursor: pointer;
}
.proof-accordion-description {
	padding-left: 20px;
	padding-top: 10px;
	display: none;
}
.proof-accordion-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.proof-normal-text {
  margin-top: 24px;
}
.proof-normal-text h3 {
  font-size: 26px;
  font-family: var(--primary-font);
  line-height: 1.35;
  margin-bottom: 10px;
}
.proof-normal-text p {
  font-weight: 300;
}

/* reviews */


.reviews-image-bg {
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}
.reviews-image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: .4;
}
.testimonial-carousel-pagination {
  text-align: center;
  margin-bottom: 34px;
}
.testimonial-carousel-pagination .swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  background-color: var(--color-white-color);
  opacity: 0.5;
}
.testimonial-carousel-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-yellow-orange);
  opacity: 1;
}

.reviews-wrapper {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--color-yellow-orange);
}
.reviews-text {
  margin-inline: auto;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 34px;
  padding-inline: 30px;
  position: relative;
}
.rating-star {
  margin-bottom: 30px;
}
.reviews-text-content p {
  font-size: 24px;
  line-height: 1.31;
  font-weight: 400;
}
.reviwers-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-top: 30px;
}

/* opening space for */

.osf-title {
  text-align: center;
  margin-bottom: 80px;
}
.osf-title h2 {
  font-weight: 500;
  background: var(--color-heading-color-2);
  --webkit-background-clip: text;
  --webkit-text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.osf-title p {
  font-family: var(--secondary-font);
  font-size: 66px;
  font-weight: 700;
  background: var(--color-heading-color-2);
  --webkit-background-clip: text;
  --webkit-text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  line-height: 1;
  text-transform: uppercase;
}
.osf-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.osf-left-text-box {
  width: 45%;
}
.osf-right-text-box {
  width: 45%;
}
.cta-text {
  text-align: center;
  margin-top: 50px;
}
.osf-left-text-box p {
  font-weight: 300;
  line-height: 1.5;
}
.osf-left-text-box p strong {
  font-weight: 500;
}
.osf-right-text-box h3 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 12px;
}
.osf-right-text-box p {
  font-weight: 500;
}
.osf-right-text-box ul {
  padding-left: 30px;
  font-weight: 300;
  line-height: 1.7;
}
.osf-right-text-box ul li strong {
  font-weight: 500;
}
.cta-text p {
  font-size: 35px;
  font-weight: 300;
}
.cta-text p span{
  position: relative;
  z-index: 1;
} 
.cta-text p span::before {
  z-index: -1;
  bottom: 3px;
}

/* work with me */

.work-with-me-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-with-me-text {
  width: 50%;
}
.work-with-me-img {
  width: 40%;
  border-radius: 20px;
  overflow: hidden;
}
.work-with-me-img img {
  aspect-ratio: 484 / 434;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
.work-with-me-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.work-with-me-tag-item {
  border: 1px solid var(--color-dark-blue);
  background-color: var(--color-light-gray);
  padding: 9px 18px;
  border-radius: 5px;
  color: var(--color-dark-blue);
  font-weight: 600;
}
.highlight-text {
  padding: 6px 11px;
  background-color: var(--color-yellow-light);
  border-radius: 7px;
  color: var(--color-dark-blue);
  font-weight: 700;
  font-size: 23px;
  width: fit-content;
  margin-bottom: 13px;
}
.work-with-me-description p {
  line-height: 1.53;
}
.work-with-me-description p strong {
  font-weight: 600;
}

.next-step-wrapper {
  padding: 48px;
  border-radius: 20px;
  background-color: var(--color-dark-light);
}
.next-step-title-box {
  padding-right: 60px;
}
.contact-form {
  background-color: var(--color-white-color);
  padding: 24px;
  border-radius: 20px;
}
.next-step-title-box h2 {
  margin-bottom: 9px;
  color: var(--color-black-color);
}
.next-step-title-box p {
  font-size: 25px;
  line-height: 1.26;
}
.next-step-content p {
  font-size: 20px;
  font-weight: 300;
}
.next-step-content p strong {
  font-weight: 500;
}
.next-step-content ul {
  padding-left: 36px;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 20px;
}
.next-step {
  padding-bottom: 25px;
}
.contact-form form p {
	margin: 0;
}
.contact-form form p .wpcf7-spinner {
  display: none;
}
.contact-form form p input.send-btn {
  margin-bottom: 0;
}
.send-btn {
  background-color: var(--color-dark-blue);
  color: var(--color-white-color);
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
}
.send-btn:hover {
  background-color: var(--color-dark-blue-light);
  color: var(--color-black-color);
  border-color: var(--color-dark-blue);
}


/* footer */

.footer-bg {
  background-color: var(--color-dark-blue);
  color: var(--color-white-color);
  text-align: center;
  padding: 32px 0;
  border-radius: 20px 20px 0 0;
}
.footer-text p {
  font-weight: 300;
}


/* Responsive */

@media (max-width: 1199.98px){
	.header-nav {
		gap: 20px;
	}
	.header-nav li a{
		font-size: 16px;
	}
  h1 {
    font-size: 36px;
  }
  .hero-wrapper {
    padding: 30px 40px;
  }
  .hero-image {
    max-width: 100%;
  }
  .ai-services-wrapper {
    width: 100%;
    gap: 50px;
  }
  .heading-box {
    width: 100%;
  }
  h2 {
    font-size: 38px;
  }
  .what-we-work-heading {
    margin-bottom: 20px;
  }
  h3 {
    font-size: 30px !important;
  }
  .services-content {
    grid-template-columns: repeat(3, 1fr);
  }
  .outcome-heading {
    width: 75%;
    padding-left: 24px;
  }
  .outcome-list-content {
    padding: 24px;
    padding-top: 0;
    margin-bottom: 24px;
  }
  .outcome-description {
    padding-bottom: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .outcome-wrapper {
    gap: 30px;
  }
  .reviews-text-content p {
    font-size: 25px;
  }
  .reviwers-name {
    font-size: 20px;
    margin-top: 20px;
  }
  .work-with-me-img {
    width: 45%;
  }
  .highlight-text{
    font-size: 20px;
  }
  .next-step-title-box {
    padding-right: 40px;
  }
  .py-120 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pt-120{
    padding-top: 100px;
  }
  .qth-text-content {
    padding-right: 0;
    padding-bottom: 50px;
  }
  .image-marquee {
    flex-direction: column;
	margin-inline: -24px;
  }
  .gallery-1, .gallery-2 {
    width: 100%;
    height: auto;
  }
  .marquee {
    flex-direction: row;
  }
  .marquee__content {
    flex-direction: row;
  }
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  .hero-text-content p {
    width: 83%;
  }
}
@media (max-width: 991.98px){
  .hero-row {
    gap: 30px;
  }
  .ai-services-wrapper {
    flex-direction: column;
  }
  .heading-and-image {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .heading-box {
    width: 58%;
    margin-bottom: 0;
  }
  .ai-services-description {
    width: 100%;
  }
  .what-we-work-row {
    gap: 34px;
  }
  .what-we-work-image {
    max-width: 100%;
  }
  .services-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .outcome-wrapper {
    flex-direction: column;
  }
  .outcome-text-content {
    width: 100%;
  }
  .outcome-heading {
    width: 60%;
  }
  .outcome-image {
    width: 100%;
  }
  .proof-content {
    flex-direction: column;
  }
  .proof-text-box {
    width: 100%;
    padding: 20px;
  }
  .proof-image {
    width: 100%;
  }
  .reviews-text-content p {
    font-size: 20px;
  }
  .rating-star {
    margin-bottom: 14px;
  }
  .osf-title p {
    font-size: 55px;
  }
  .osf-title {
    margin-bottom: 60px;
  }
  .osf-left-text-box {
    width: 50%;
  }
  .osf-right-text-box {
    width: 50%;
  }
  .osf-content {
    gap: 40px;
  }
  .work-with-me-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .work-with-me-text {
    width: 100%;
  }
  .work-with-me-img {
    width: 100%;
  }
  .next-step-title-box {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .next-step-wrapper {
    padding: 30px;
  }
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pt-120{
    padding-top: 80px;
  }
  .pb-100{
    padding-bottom: 80px;
  }
  .review-box {
    left: 0;
  }
}
@media (max-width: 782px){
  body:has(#wpadminbar) .header-sec {
    top: 46px;
  }
}
@media (max-width: 767.98px){
  .header-logo{
    max-width: 120px;
  }
  .header-sec.sticky-active .header-logo {
	max-width: 120px;
  }
  .header-wrapper {
    padding: 20px 0;
  }
  .header-content {
    gap: 30px;
  }
	.menu-open {
	  height: 45px;
	}
	.mobile-menu{
		width: 100%;
	}
	.left-60{
		left: -100%;
	}
	.mobile-header-button a.btn {
		background: var(--color-text-color);
	}
  .btn {
    font-size: 16px;
    padding: 12px 22px;
  }
  .hero-wrapper {
    padding: 20px 24px;
  }
  h1 {
    font-size: 28px;
  }
  .hero-text-content h1 {
    text-align: center;
  }
  .hero-text-content {
    text-align: center;
  }
  body {
    font-size: 16px;
  }
  .hero-btn {
    margin-top: 24px;
  }
  .heading-and-image {
    flex-direction: column;
  }
  .heading-box {
    width: 100%;
  }
  h3 {
    font-size: 26px !important;
  }
  .ai-services-wrapper {
    gap: 30px;
  }
  .what-we-work-wrapper {
    padding: 20px 24px;
  }
  h2 {
    font-size: 30px;
  }
	.outcome-heading {
		padding-left: 0;
	}
  .what-we-work-heading h2 {
	font-size: 27px;
  }
  .what-we-work-heading {
    text-align: center;
  }
  .service-card:hover {
    transform: translateY(0);
  }
  .service-carousel {
    background-color: var(--color-dark-blue);
    padding: 20px;
    border-radius: 20px;
  }
  .service-accordion-content {
	  display: flex;
	  flex-direction: column;
	  gap: 20px;
	}
	.service-accordion-heading {
	  margin-bottom: 0;
	  cursor: pointer;
	}
	.service-accordion-description {
		margin-top: 10px;
	}
  .services-heading-box {
    padding: 30px;
    height: 160px;
    border-radius: 12px;
  }
  .outcome-wrapper {
    padding: 20px 24px;
  }
  .outcome-heading {
    width: 100%;
    border-radius: 0;
  }
  .outcome-list-content p {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .outcome-list-content ul {
    font-size: 18px;
  }
  .outcome-list-content {
    margin-bottom: 10px;
  }
  .outcome-description p {
    font-size: 19px;
  }
	.qth-description p br {
		display: none;
	}
  .proof-title {
    margin-bottom: 40px;
  }
  .proof-wrapper {
    padding: 20px 24px;
  }
  .proof-title p {
    font-size: 22px;
    margin-top: 10px;
  }
  .proof-accordion-title {
    font-size: 26px;
  }
	.proof-accordion-heading h4 {
		font-size: 18px;
	}
	.proof-accordion-description {
		padding-left: 14px;
	}
  .proof-normal-text {
    margin-top: 16px;
  }
  .reviews-wrapper {
    padding: 10px;
  }
  .reviews-image {
    width: 100%;
  }
  .reviews-text {
    width: 100%;
	padding-top: 40px;
	padding-inline: 10px;
  }
  .reviews-text-content p {
	font-size: 16px;
  }
  .osf-title p {
    font-size: 45px;
  }
  .osf-title {
    margin-bottom: 36px;
  }
  .osf-content {
    flex-direction: column;
  }
  .osf-left-text-box {
    width: 100%;
  }
  .osf-right-text-box {
    width: 100%;
  }
  .cta-text {
    margin-top: 20px;
  }
  .cta-text p {
    font-size: 26px;
  }
  .work-with-me-tag-item {
    font-size: 16px;
  }
  .contact-form{
    padding: 20px;
  }
  .next-step-title-box p {
    font-size: 18px;
  }
  .footer-text {
    padding: 0 20px;
  }
  .py-120{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .py-85{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pb-100{
    padding-bottom: 60px;
  }
  .pb-85{
    padding-bottom: 60px;
  }
  .pt-120{
    padding-top: 60px;
  }
  .marquee__content li img{
    max-width: 180px;
  }
	
	.hero-text-content p {
		width: 100%;
	}	
	
	
	
}
@media (max-width: 600px){
  body:has(#wpadminbar) .header-sec.sticky-active {
    top: 0;
  }
}
@media (max-width: 575.99px){
 .hero-image {
	display: flex;
	flex-direction: column-reverse;
 }
 .review-box {
	left: 0;
	top: 0;
	position: unset;
	margin-bottom: -110px;
    margin-left: -40px;
 }
 .btn {
	font-size: 14px;
	padding: 12px 15px;
 }
 .header-logo {
	max-width: 110px;
 }
 .header-sec.sticky-active .header-logo {
	max-width: 110px;
 }
}