:root{
    --star-bg-color:#FFFFFF;
--star-primary-color:#F6217E;
--star-primary-light-color:#FEE1EE;
--star-secondary-color:#229CDD;
--star-secondary-light-color:#E2F2FA;
--star-tertiary-color:#012437;
--star-title-color:#133141;
--star-title-color2:#05486B;
--star-secondary-text-color:#536974;
--star-main-gradient:linear-gradient(135deg,  var(--star-secondary-light-color) 0%,var(--star-primary-light-color) 100%);
--star-main-gradient-90:linear-gradient(90deg,  var(--star-secondary-light-color) 0%,var(--star-primary-light-color) 100%);
--star-main-gradient-reverse:linear-gradient(135deg, var(--star-primary-light-color) 0%,var(--star-secondary-light-color)  100%);
--star-font-family:"Lato", sans-serif;
--star-font-400:400;
--star-font-900:900;	
--star-white-color:#ffffff;	
}
@media (prefers-color-scheme: dark) {}
   .dark-theme { 
   --star-bg-color: #05141c;
    --text-color: #ffffff;
    --primary-color: #3399ff;
    --star-primary-light-color: #400A22;
    --star-secondary-light-color: #003E5E;
    --star-title-color2: #A6DFFD;
    --star-title-color: #a0daf9;
    --star-secondary-text-color: #a9bbc4;
  }

*{
    box-sizing: border-box;
}
html,body{
  margin: 0;
  padding: 0;
}
img{
  max-width: 100%;
}
ul, li{
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    font-weight: var(--star-font-400);
}
body{
    background: var( --star-bg-color);
	font-style: normal;
	font-family: var(--star-font-family);
	font-weight: var(--star-font-400);
}
.container {
    max-width: 1090px;
}
.content__par {
  font-size: 1rem;
  color: var(--star-secondary-text-color);
  line-height: 1.5;
}
.star-button {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: middle;
    border: 3px solid;
    color: var(--star-title-color);
    text-decoration: none;
}
.star-button__primary {
    background-color: var(--star-primary-color);
    color: var(--star-white-color);
    border-color: var(--star-primary-light-color);
}
.star-button__secondary {
    background-color: var(--star-secondary-color);
    color: var(--star-white-color);
    border-color: var(--star-secondary-light-color);
}
.hero-section{
  max-width: calc(100vw - 40px);
  background: var(--star-main-gradient);
  margin-left: auto;
  margin-right: auto;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.hero-section:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-image: url(../images/hero-bg.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 100% auto;
}
.hero-section .container{
position: relative;
z-index: 2;
}
.main-header__logo {
    max-width: 300px;
    width: 100%;
        padding: 25px 0 0;
}
.main-header__logo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    width: 130%;
    height: 230px;
    filter: blur(101px);
    z-index: -1;
}
.main-header__nav {
    background-color: var( --star-bg-color);
    position: relative;
    border-radius: 0 0 0 30px;
    align-self: flex-start;
    padding: 20px 0 20px 20px;

}
.main-header__nav-bg {
   
    position: absolute;
    width: calc((100vw - 1100px) / 2);
    height: 100%;
    right: calc((1100px - 100vw) / 2);
    background: var(--star-bg-color);
    top: 0;
}
.main-header__nav:before {
    content: "";
    width: 80px;
    height: 30px;
    position: absolute;
    left: -80px;
    top: 0;
    border-radius: 0 40px 0 0;
    box-shadow: 40px 0px 0px var(--star-bg-color);
}

.main-header__nav::after {
  content: "";
  width: 90px;
  height: 40px;
  position: absolute;
  right: calc((1106px - 100dvw) / 2);
  bottom: -39px;
  border-radius: 0 50px 0 0;
  box-shadow: 40px 0px 0px var(--star-bg-color);
}
nav.main-nav {
    position: relative;
    z-index: 1;
}
ul.main-nav__ul {
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.main-nav__li {
    padding: 0 10px;
}
.main-nav__li:last-child {
    padding-right: 0;
}
.main-nav__li-a {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px;
    color: var(--star-title-color2);
    text-decoration: none;
    position: relative;
}
.main-nav__li-a:hover, .main-nav__li-a.active {
color: var(--star-primary-color);
}
.main-nav__li-a.active::before, .main-nav__li-a.active::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--star-primary-color);
  display: block;
  position: absolute;
  left: -5px;
  top: 50%;
  margin-top: -2px;
  border-radius: 50%;
}
.main-nav__li-a.active::after {
  right: -5px;
  left: inherit;
}
.hero-block__left{
    align-self: center;
    padding-bottom: 80px;
}
.hero-block__left h1{
  font-size: 2.8125rem;
  color: var(--star-title-color2);
  font-weight: var(--star-font-900);
}
.hero-block__left h1 span{
  font-weight: var(--star-font-400);
}
.hero-block__left p{
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--star-title-color);
  font-weight: var(--star-font-400);
  margin-top: 25px;
}
.hero-block__right {
    padding-left: 25px;
    text-align: right;
    align-self: flex-end;
    padding-top: 10px;
}
.hero-block__right img{
  display: block;
}
.top-section {
    padding: 10px 0;
    font-size: .875rem;
    color: var(--star-secondary-text-color);
}
.top-section__text {
    color: var(--star-secondary-text-color);
    text-decoration: none;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    padding: 0 10px;
}
.top-section__text span{
    display: inline-block;
    margin-left: 4px;
}
.hero__clients-imgBlk {
    display: flex
;
}
.hero__clients-list {
    display: flex;
    align-items: center;
      position: relative;
    z-index: 1;
}
.hero__clients-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--star-bg-color);
    flex-shrink: 0;
    margin-left: -15px;
}
.hero__clients-img:first-child{
    margin-left: 0;
}
.hero__clients {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--star-bg-color);
    padding: 20px 20px 10px 0;
    border-radius: 0 30px 0 0;
}
.hero__clientsTxt {
    flex: 1;
    min-width: 0;
    margin-left: 10px;
  
}
h3.hero__clientsTxttlte {
    margin: 0 0 10px;
    font-weight: var(--star-font-400);
    color: var(--star-title-color);
    font-size: .875rem;
}
.hero__clientsTxttlte span {
  color: var(--star-secondary-color);
  font-weight: var(--star-font-900);
}
.hero__clientsStr {
  display: flex;
  gap: 2px;
  font-size: 1.125rem;
  color: #FFD814;
}
.hero__clients-bg {
  position: absolute;
  width: calc((100vw - 1090px) / 2);
  height: 100%;
  left: calc((1130px - 100vw) / 2);
  background: var(--star-bg-color);
  top: 0;
}

.hero__clients::before {
  content: "";
  width: 80px;
  height: 40px;
  position: absolute;
  right: -80px;
  bottom: 0;
  border-radius: 0 0 0 40px;
  box-shadow: -40px 0px 0px var(--star-bg-color);
}
.hero__clients::after {
  content: "";
  width: 90px;
  height: 40px;
  position: absolute;
  left: calc((1130px - 100vw) / 2);
  top: -40px;
  border-radius: 0 0 0 50px;
  box-shadow: -40px 0px 0px var(--star-bg-color);
}

.why-star__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.why-star__li {
  display: flex;
   width: calc(25% - 11.25px);
}
.why-star__item {
  background: var(--star-main-gradient-reverse);
  position: relative;
  margin-top: 30px;
  padding: 0 20px 20px;
  border-radius: 20px;
  width: 100%;
}
.why-star__icon {
  width: 56px;
  height: 56px;
  background: var(--star-primary-color);
  color: var(--star-white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  border-radius: 10px;
  margin-top: -23px;
  margin-bottom: 15px;
}
.why-star__iconBg {
  font-size: 50px;
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 0;
  color: var(--star-bg-color);
  text-shadow: 1px 0px 0px #fff;
  mix-blend-mode: soft-light;
}
.why-star__content {
  position: relative;
  z-index: 1;
}
.why-star-section .section-title__block {
  text-align: center;
}
.content__title {
  font-size: 1.125rem;
  font-weight: var(--star-font-900);
  color: var(--star-title-color);
  margin-bottom: 10px;
}
.prmoBlock {
  background: var(--star-main-gradient);
  padding: 30px 30px;
  border-radius: 16px;
  align-items: center;
}
.prmoleft .section-title__block{
  margin-bottom: 0;
}
.our-fact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.fact-box-1 .fact-item {
  background-color: var(--star-primary-color);
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--star-white-color);
}
.fact-item-content h2 {
  font-size: 60px;
  font-weight: var(--star-font-900);
  margin-bottom: 5px;
}
.fact-item-content p {
  margin: 0;
  font-size: 1rem;
}
.fact-box-1, .fact-box-3 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
.fact-box-1 {
  width: calc(25% - 10px);
}
.fact-box-2 {
  width: calc(38% - 20px);
}
.fact-box-3 {
  width: calc(37% - 10px);
  flex-direction: initial;
}
.fact-image-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.fact-item{
    flex-grow: 1;
   
}
.fact-image-content .fact-item{
  
  background-color: var(--star-secondary-color);
}
.fact-image figure {
  display: block;
  border-radius: 20px;
    margin: 0;
  padding: 0;
}
.fact-image figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.fact-box-1 .fact-image figure img {
  aspect-ratio: 1 / 0.74;
}
.fact-box-2 .fact-image figure img {
  aspect-ratio: 1 /1.19;
}
.fact-box-3 .fact-image figure img {
  aspect-ratio: 1 / 0.667;
  display: block;
}
.fact-box-3 .fact-image-content .fact-image img {
  aspect-ratio: 1 / 1.05;
}
.fact-box-2 .fact-image, .fact-box-2 .fact-image figure, .fact-box-2 .fact-image figure img {
  height: 100%;
}
.fact-image-content .fact-item, .fact-image-content .fact-image {
  width: calc(50% - 10px);
}
.fact-image-content .fact-item {
  background-color: var(--star-secondary-color);
  border-radius: 20px;
  color: var(--star-white-color);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.text-center{
  text-align: center;
}
.section-title {
  font-size: 2.25rem;
  font-weight: var(--star-font-900);
  color: var(--star-title-color2);
  margin-bottom: 5px;
}
.section-title span {
  font-weight: var(--star-font-400);
}
.section-title__block {
  width: 100%;
  margin-bottom: 20px;
}
.section-title__sub {
  color: var(--star-secondary-text-color);
  font-size: 1rem;
}
.secondary__title {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: var(--star-font-900);
  color: var(--star-secondary-color);
}
.section-gap-30 {
  padding: 30px 0;
}
.tailerd__title {
  text-align: center;
  font-weight: var(--star-font-900);
  font-size: 2.315rem;
   color: var(--star-title-color2);
   width: fit-content;
  margin: 0 auto;
  position: relative;
}
.tailerd__title::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  height: 1px;
  background-color: var(--star-secondary-color);
  top: 25px;
}

.tailerd__title .span2 {
  display: block;
  font-weight: var(--star-font-400);
 
}
.tailerd__titletp {
  width: fit-content;
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 0 20px;
  background-color: var( --star-bg-color);
}
.about-section__left .content__par {
  margin-bottom: 20px;
}
.star-offer .content__title {
  color: var(--star-secondary-color);
  margin-bottom: 15px;
}
.star-offer__icon {
  width: 20px;
  height: 20px;
  background-color: var(--star-secondary-color);
  color: var(--star-white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  flex-shrink: 0;
}
.star-offer__li {
  display: flex;
}
.star-offer__title {
  font-weight: var(--star-font-400);
  font-size: 1.125rem;
  color: var(--star-tertiary-color);
  margin-left: 10px;
}
.star-offer__ul {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal columns */
  gap: 15px; /* spacing between items */
  padding: 0;
  list-style: none;
}
.star-offer {
  margin-top: 30px;
}
.about-right-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto 16% auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.about-right-col__item.about-right-col__img1 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}
.about-right-col__img2{
  grid-area: span 2 / span 1 / span 2 / span 1;
}
.about-value {
  background: var(--star-main-gradient);
  padding: 20px;
  border-radius: 20px;
  color: var(--star-title-color2);
}
.about-value__icon {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background-color: var(--star-secondary-color);
  color: var(--star-white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  font-size: 1.125rem;
  margin-bottom: 15px;
}
.about-value__title {
  font-size: 1.125rem;
  font-weight: var(--star-font-900);
  margin-bottom: 10px;
  color: var(--star-title-color);
}
.about-value__par {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--star-title-color2);
}
.about-section__right {
  position: relative;
}
.about-circle {
  width: 120px;
  height: 120px;
  position: absolute;
  left: -60px;
}
.about-section__left {
  padding-right: 70px;
  position: relative;

}
.about-section__left .about-circle.rotate-me {
  left: inherit;
  right: 40px;
}
.main-footer {
  background-color: var(--star-tertiary-color);
  max-width: calc(100vw - 40px);
  margin: 40px auto 20px;
  border-radius: 32px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
}
.footer-col {
  width: 25%;
  flex-shrink: 0;
  padding: 30px 0 30px;
}
.footer-col.footer-col1 {
  padding-top: 0;
}
.footer-logo {
  position: relative;
  max-width: 250px;
  width: 100%;
  background-color: var(--star-bg-color);
  padding: 10px 20px;
  border-radius: 0px 0px 30px 0px;
}
.footer-logo__bg {
  position: absolute;
  background: var(--star-bg-color);
  top: 0;
  bottom: 0;
  width: calc((100vw - 1060px) / 2);
  left: calc((1100px - 100vw) / 2);
  z-index: 0;
}
.footer-logo a {
  z-index: 1;
  position: relative;
}
.footer-logo::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;

  right: -50px;
  top: -1px;
  border-radius: 30px 0 0 0;
  box-shadow: -28px 0px 0 var(--star-bg-color);
}
.footer-logo::after {
  content: "";
  width: 50px;
  left: calc((1106px - 100vw) / 2);
  position: absolute;
  height: 50px;
  display: block;
  z-index: 1;
  border-radius: 30px 0 0;
  bottom: -49px;
  box-shadow: -23px 0 0 var(--star-bg-color);
}
.footer-col.footer-col2   {
  padding-left: 50px;
}
.footer-col3{
  width: 20%;
   padding-left: 60px;
}
 .footer-col4 {
  padding-left: 30px;
  width: 30%;
 }
 .footer-social {
  display: flex;
  gap: 10px;
}
.footer-social__a {
  width: 31px;
  height: 31px;
  text-align: center;
  line-height: 28px;
  background-color: #00000054;
  color: var(--star-white-color);
  border-radius: 6px;
}
.footer-col1 .footer-text {
  margin-top: 30px;
  
}
.footer-text {
  font-size: 1rem;
  color: var(--star-white-color);
  opacity: .55;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer_headtlte {
  color: var(--star-white-color);
  font-weight: var(--star-font-900);
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.footer-list-item {
  font-size: 1rem;
  color: var(--star-white-color);
  
  margin-bottom: 10px;
  font-style: normal;
}
.footer-contact__text, .footer-list__a {
  color: var(--star-white-color);
  font-style: normal;
  font-size: 1rem;
  opacity: .55;
  padding: 5px 0;
  display: block;
  width: fit-content;
}
 .footer-contact {
  display: flex;
}
.footer-contact__text {
  align-self: center;
}
.footer-contact__icon {
  margin-top: 5px;
  margin-right: 9px;
  font-size: 1rem;
  color: var(--star-secondary-color);
}

.footer-newsletter {
  position: relative;
}
.newsleeterInput {
  border: 1px solid var(--star-secondary-text-color);
  background: var(--star-tertiary-color);
  height: 45px;
  width: 100%;
  border-radius: 16px;
  padding: 0 50px 0 10px;
  color: var(--star-white-color);
}
.newsletter-btn {
  width: 37px;
  height: 37px;
  border: none;
  background: var(--star-secondary-color);
  color: var(--star-white-color);
  border-radius: 12px;
  position: absolute;
  top: 4px;
  right: 4px;
}
.footer__bottom {
  width: 100%;
  border-top: 1px solid #ffffff1f;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  color: var(--star-secondary-light-color);
  font-size: .875rem;
}
.footer__bottom-a {
  color: var(--star-secondary-light-color);
  padding-right: 30px;
}
.testimon-section.section-gap-30 {
  padding: 50px;
  background-image: url(../images/test-bg.svg), url(../images/test-bg.svg);
 background-position: 120% 80%, -30% 0%;
  background-repeat: no-repeat;
  background-size: auto 120%;
  overflow: hidden;
}
.star-testi-sliderBlk {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
  
}
.star-testi-slider.swiper {
padding-bottom: 40px;
}
.star-testi-slider  .swiper-pagination{
bottom: 15px !important;
}
.testi-image {
    width: 85px;
    height: 85px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
}
.testi-image img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.testi-content {
  border: 1px solid var(--star-secondary-light-color);
  border-radius: 30px;
  padding: 50px 30px 30px;
  text-align: center;
  color: var(--star-title-color);
  font-style: italic;
  margin-top: -43px;
  background-color: var(--star-bg-color);
}
.testi__name {
  font-weight: var(--star-font-900);
  font-style: normal;
  font-size: 1rem;
  margin-top: 10px;
}
.test-dummy {
  width: 85px;
  height: 85px;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  filter: blur(6px);
  animation-name: floatUpDown;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  display: inline-block;
  /* Optional styling */
  transition: transform 0.3s ease;
}
.test-dummy1.test-dummy {
  left: 0;
  top: 50%;
  animation-delay: 0s;

}
.test-dummy2.test-dummy {
  right: 0;
  top: 50%;
  animation-delay: 0.5s;
}
.test-dummy3.test-dummy {
  width: 65px;
  height: 65px;
  bottom: 15px;
  left: 30px;
  animation-delay: 1s; 
}
.test-dummy4.test-dummy {
  width: 65px;
  height: 65px;
  top: 15px;
  right: 30px;
  animation-delay: 1.5s; 
}
.test-dummyStr {
  color: #FFD814;
  font-size: 100px;
  filter: blur(5px);
 
  top: 50%;
  position: absolute;
  width: auto;
  height: auto;
}
.test-dummyStr.test-dummyStr1 {
  left: -60px;
}
.test-dummyStr.test-dummyStr2 {
  right: -60px;
}
.testimon-section .container, .testimon-section {
  position: relative;
}
.main-header__nav.stickyFixed::before, .main-header__nav.stickyFixed::after, .main-header__nav.stickyFixed .main-header__nav-bg {
  display: none;
}
.rotate-me {
   
  animation: rotate 10s linear infinite;
}

.hero-block__inner .hero-block__left{
padding-top: 40px;
text-align: center;
padding-bottom: 60px;
}
.breadcrumb-listItem {
  
  margin: 15px auto 0;
  background-color: var(--star-bg-color);
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 7px 17px;
    color: var(--star-tertiary-color);
    overflow: hidden;
  
    background-color: var(--star-bg-color);
    width: fit-content;
}
.breadcrumbs-item {
  display: block;
 color: var(--star-secondary-text-color);
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: var(--star-font-900);
  padding: 0 4px;
}
.breadcrumbs-item a {
color: var(--star-title-color2);
}
.breadcrumbs-separator {
  font-size: 3px;
  padding: 0 5px;
}
.about_page-img {
  border-radius: 16px;
  overflow: hidden;
}
.about_page-img img{
 display: block;
}
.gradient-icon {
 
  background: var(--star-main-gradient-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
 
.about-page__detlIcon {
  
  flex-shrink: 0;
  margin-right: 20px;
  z-index: 1;
  position: relative;
}
.about-page__detldispn {
  position: relative;
  z-index: 1;
}
.about-page__detl-itm {
  display: flex;
  
  padding: 20px 0;
  
  
  position: relative;
}
.about-page__detl-itm::after {
  content: "";
  position: absolute;

  height: 1px;
  left: 0px;
  bottom: 0px;
  right: 0px;
background: var(--star-main-gradient-90);
  z-index: 0;
}
.about-page__detlTitle {
  font-weight: var(--star-font-900);
  color: var(--star-title-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.about-page__detlTitleSb {
  font-weight: var(--star-font-900);
  font-size: 1rem;
  color: var(--star-title-color2);
  margin-bottom: 10px;
}
.about-page__detl-ul {
  padding-left: 25px;
}
.about-page__detl-li {
  list-style: disc;
  color: var(--star-secondary-text-color);
  margin-bottom: 14px;
}

.about-page__detl.about-section__sticky {
  position: sticky;
  top: 10px;
  background: var(--star-main-gradient-90);
  padding: 20px;
  border-radius: 20px;
}
.about-page__detlIconIn {
  width: 70px;
  height: 70px;
  text-align: center;
  color: var(--star-secondary-color);
  background-color: var(--star-bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 29px;
}
.bigTitle {
  color: var(--star-title-color2);
  font-size: 4.5rem;
  font-weight: var(--star-font-900);
  line-height: 1;
}
.bigTitle span{
  color: var(--star-secondary-color);
}
.clearfix{
  clear: both;
}

.services-list_item  {
 
  padding: 25px 15px;
  /* border-top: 1px solid rgba(0,0,0,.4); */
  position: relative;

}
.services-list_item:after{
  transition: all .3s ease .0s;
  top: 0;
  left: 0;
  right: 0;
  bottom: 100%;
  content: "";
  position: absolute;
}
.services-list_item .title {
  font-weight: var(--star-font-900);
  text-transform: uppercase;
  font-size: 2.5rem;
  color: var(--star-title-color2);
  padding: 20px 0px 20px 0px;
  text-align: left;
  text-shadow: 2px 2px 0px var(--star-bg-color);
}
.services-list_item .content__par{
  text-align: left;
}
.services-list_item::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: var(--star-main-gradient-90);
}
 .services-list_item.active:after {
 background: var(--star-main-gradient-90);
 bottom: 0;
 transition: all .3s ease .0s;
}
.services-list_col {
  z-index: 1;

  position: relative;
}
.services-list_count {
  text-align: left;
  font-weight: var(--star-font-900);
  color: var(--star-secondary-color);
  padding-left: 20px;
}
.services-list_item {
background-repeat: no-repeat;
  background-position: right center;
  border-radius: 20px;
  overflow: hidden;
  margin: 10px 0;
}
.services-list_item:nth-child(2n+2) .services-list_count{
order: -2;
}
.services-list_item:nth-child(2n+2) .services-list_colTitle{
order: -1;
}
.services-list_item:nth-child(2n+2) > .services-list_col > .d-flex{
    justify-content: flex-end;
    }
    .services-list_colImg {
    position: absolute;
    top: 1px;
    bottom: 1px;
    right: 0;
}
.services-list_item:nth-child(2n+2) .services-list_colImg{
right: inherit;
left: 0;
}

.services-list_colImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.services-list_colImg:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.26) 100%);
}
.services-list_item:nth-child(2n+2) .services-list_colImg:before {
 background: linear-gradient(to right,  rgba(255,255,255,0.26) 0%,rgba(255,255,255,1) 70%);

}
.why-star__ul.contactInfoBoxUl {
  margin-top: 40px;
}
.contactInfoBoxUl .why-star__iconBg {
  right: 10px;
}
.contactInfoBoxUl .why-star__icon{
background: var(--star-secondary-color);
}
.contactInfoBoxUl .why-star__item {
  background: var(--star-main-gradient);
}
.contactForm {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #bbb;
  background-color: var(--star-bg-color);
  color: var(--star-secondary-text-color);
  padding: 0 12px;
}
.contactForm:focus, .contactForm:active{
  outline: none;
  border-color: var(--star-secondary-color);
}
.contactFormCol {
  margin: 10px 0px;
}
.contactLabel {
  color: var(--star-title-color);
  font-weight: var(--star-font-900);
  margin-bottom: 5px;
  font-size: .875rem;
}
.contactImage {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.contactFormSection {
  width: 100%;
  margin: 30px 0;
}
.contactFormBlk {
  border-radius: 20px;
  background: var(--star-bg-color);
  border: 1px solid var(--star-secondary-light-color);
  padding: 30px;
  margin-left: -110px;
  box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
}
textarea.contactForm {
  resize: vertical;
  height: 90px;
}
/*..................... Dark theme ................*/
.dark-theme .star-button__primary, .dark-theme .star-button__secondary{
  border-color: transparent;
}
.dark-theme .main-header__logo::after{
  background: #00233e;
  display: none;
}
.dark-theme .why-star__iconBg{
  opacity: .5;
}
.logo-dark, .dark-theme .logo-light{
  display: none;
}
.dark-theme .logo-dark{
  display: block;
}
.dark-theme .star-offer__title {
  color: var(--star-secondary-text-color);
}
.dark-theme .main-footer {
  background: var(--star-main-gradient);
}
.dark-theme .newsleeterInput{
  background-color: transparent;
}
.dark-theme .footer__bottom-a, .dark-theme .footer__bottom {
  color: var(--star-secondary-text-color);
}
.dark-theme .services-list_colImg:before {
    
    background: linear-gradient(to right, rgba(5,20,28, 1) 10%, rgba(5,20,28, 0.26) 100%);
}
.dark-theme .services-list_item:nth-child(2n+2) .services-list_colImg:before {
 background: linear-gradient(to right,  rgba(5,20,28,0.26) 0%,rgba(5,20,28,1) 70%);

}
/* Animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50px); } /* Move up slightly */
}