
/* --- Base Reset and Variables --- */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #CD1312;
    --menu-width: 19rem;
    --sticky-top: 5rem; /* Header height */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    background-color: #F7F7F7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}



/* --- Navigation Bar --- */
.main-header {
    background-color: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--sticky-top); 
    padding: 0 1.5rem;
    margin-top: 20px;
    margin-right: 40px;
    margin-left: 40px;
}

.nav-logo img {
    margin-top: 10px;
  height: auto;
  width: 220px;
}


@media (max-width: 768px) {
  .nav-logo img {
  height: 50px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--sticky-top); 
    padding: 0 1.5rem;
    margin-top: 20px;
    margin-right: 0px;
    margin-left: 0px;
}
.nav-logo img {
    margin-top: 10px;
  height: auto;
  width: 140px;
}


}




.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Button ES */

.btn-eng-spa {
	
	color: var(--primary-color);
    font-size: 1.375rem;
    width: 70px;
    height: 54px;
	padding: 0.5rem 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
    justify-content: center;
	border-radius: 99px;
	transition: background-color 0.3s ease, color 0.3s ease;
}


.btn-eng-spa:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);}

/* --- "Hire Us" Button Styling --- */
.btn-hire-us {
    
    background-color: #292929;
    font-size: 1.375rem;
    color: var(--secondary-color);
    width: 200px;
    height: 54px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-hire-us svg{
  margin-left: 15px;
  }

.btn-hire-us:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-hire-us .arrow-right {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

/* --- Hamburger Menu Icon --- */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
     gap: 5px;
    width: 54px;
    height: 54px;
    background: transparent;
    border: 1px solid var(--primary-color); 
    cursor: pointer;
    padding: 10px;
    border-radius: 30px;
}

.hamburger-menu .bar {
    display: block;
    
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
    
}

/* --- Side Menu --- */
.side-menu {
    position: fixed;
    top: 1rem; 
    right: 1rem;
    width: var(--menu-width);
    height: auto;
    max-height: 0;
    overflow: hidden;
    
    
    background-color: var(--secondary-color);
    color: var(--primary-color);
    z-index: 1100;
    
    transform: translateX(100%);
    transition: transform 0.4s ease-out, max-height 0.4s ease-out;
    
    padding: 0 1.5rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border-radius: 40px;
}

.side-menu.is-open {
    transform: translateX(0);
    max-height: 90vh; 
    padding: 1.5rem;
    overflow-y: auto;
}

.close-menu {
    position: absolute;
    top: 0rem;
    right: 1.5rem;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0;
    line-height: 1;
}

.menu-items {
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.menu-items li {
    
    padding: 0.5rem 0;
    font-size: 1.4rem;     
    font-weight: 500;
}

@media (max-width: 768px) {

.btn-eng-spa {
    margin-right: -1rem; /* pulls it closer */
}
.btn-hire-us {
    
    background-color: #292929;
    font-size: 1rem;
    color: var(--secondary-color);
    width: 150px;
    height: 54px;
    padding: 0.5rem 1rem;
    
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-eng-spa {
	
	color: var(--primary-color);
    font-size: 1rem;
   
    width: 60px;
    height: 54px;
	padding: 0.5rem 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
    justify-content: center;
	border-radius: 99px;
	transition: background-color 0.3s ease, color 0.3s ease;
}


}

/* --- Submenu Styling --- */


.has-submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.has-submenu .arrow-right {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.has-submenu.submenu-open .arrow-right {
    transform: rotate(45deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.submenu li {
    margin-top: 8px;
    padding: 0.25rem 0;
    border-bottom: none;
    font-size: 1rem;
    
}

.has-submenu.submenu-open .submenu {
    max-height: 200px;
}

/* --- "Start your project" Button Styling --- */
.btn-start-project {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    transition: border-color 0.3s ease;
    border-radius: 100px;
}

.btn-start-project .arrow-right {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    border: 2px solid transparent; 
    padding: 0 1rem;
    line-height: 1;
    border-radius: 100px;
    transition: border 0.3s ease, transform 0.3s ease-out;
}

.btn-start-project:hover {
    border-color: transparent; 
}

.btn-start-project .btn-text {
    display: inline-block;
    transition: transform 0.3s ease-out;
}

.btn-start-project:hover .btn-text,
.btn-start-project:hover .arrow-right {
    transform: translateX(5px);
}

.btn-start-project:hover .arrow-right {
    border: 2px solid var(--primary-color);  
}


/* HERO HOME */

.hero-section {
margin-top: 250px;


}

.hero-content {
   font-size: 4.438rem; 
   text-align: center;
   margin-bottom: 50px;
   color: #292929;
}

.line-2  {
 font-weight: bolder;
 letter-spacing: -1px;
 color: #292929;

}

@media (max-width: 768px) {
.hero-content {
   font-size: 2.438rem; 
   
}

}


/* SWIPER */
.swiper {
  width: 100%;
  padding: 30px 0;
}

/* SLIDES */
.swiper-slide {
  width: auto; /* 🔥 let swiper control it */
}

/* IMAGE */
.image-wrapper {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 12px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(100%);
  transition: 0.4s ease;
}

/* HOVER */
.image-wrapper:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* TEXT */
.swiper-slide a {
  text-decoration: none;
  color: black;
  display: block;
}

.caption {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
}

.caption-detail {
  margin-top: 6px;
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.4;
}

/* 🔥 MOBILE (REAL FIX) */
@media (max-width: 768px) {

   .hero-section {
    margin-top: 150px;


}

  .swiper {
    padding: 20px 0;
  }

  .image-wrapper {
    height: 55vh; /* big, not tiny */
  }

  .caption {
    font-size: 18px;
  }

  .caption-detail {
    font-size: 14px;
  }

  /* No grayscale on mobile */
  .image-wrapper img {
    filter: grayscale(0%);
  }


}


.who-we-are {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 120px;
    margin-bottom: 120px;
}

.whowearetitle h1 {
   font-size: 1.813rem;
   color: #292929;
   margin-bottom: 40px;
   
}
.whowearetitlep{
text-align: end;
   font-size:2.188rem ;
   color: #292929;
   
}

.negrita {
    font-weight: bold;
}


/* 🔥 MOBILE (REAL FIX) */
@media (max-width: 768px) {

.whowearetitle h1 {
   font-size: 1.813rem;
   color: #292929;
   
}
.whowearetitlep{
text-align: start;
   font-size:1.5rem ;
   color: #292929;
}

}








 
 /* Section Styling */
#brand-led-section {    
    margin-left: 10%;
    margin-right: 10%;
}



/* Title Container */
.title-container {    
    margin-bottom: 62px; /* mb-16 */
    margin-top:119px ;
}

.main-title {
    font-family: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
    font-size: 1.813rem;    
    line-height: 1;
}

.subtitle {
    font-family: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
    font-size: clamp(2.5rem,7.1vw,7.5rem);
    font-weight: 500;
    color: #292929;
    line-height: 1;
    letter-spacing: calc(-20em / 1000);
}

/* Media Query for Medium (md) devices and up (768px+) */
@media (min-width: 768px) {
    .main-title {
        font-size: 1.813rem;
    }
}

/* Feature Items Wrapper */
.feature-wrapper {
    
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #e5e7eb; /* border-t border-gray-200 */
}

/* Feature Item Container */
.feature-item-container {
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1; 
}

.feature-content {
    display: flex;
    flex-direction: column; /* flex-col */
    padding-top: 2.5rem;    /* py-10 */
    padding-bottom: 2.5rem; /* py-10 */
}

@media (min-width: 768px) {
    .feature-content {
        flex-direction: row; /* md:flex-row */
        padding-top: 4rem;    /* md:py-16 */
        padding-bottom: 4rem; /* md:py-16 */
    }
}

/* Left Side (Title) */
.left-side {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 500;    /* font-extrabold */
    transition: color 300ms;
}

@media (min-width: 768px) {
    .left-side {
        width: 50% ; /* md:w-1/3 */
        font-size: 2.25rem; /* md:text-4xl */
    }
}

/* Right Side (Body Text) */
.right-side {
    margin-top: 1rem; /* mt-4 */
}

@media (min-width: 768px) {
    .right-side {
        width: 50%; /* md:w-2/3 */
        margin-top: 0;   /* md:mt-0 */
        padding-left: 4rem; /* md:pl-16 */

    }
    
}

.right-side p {
        font-family: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
    font-size: 2.25rem;
}

/* Hover effects */
.left-side-title {
    color: #d1d5db; /* Default light gray */
    font-family: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
    font-size: 2.938rem;
}

.feature-item-container:hover .left-side-title {
    color: #292929; /* Dark text on hover */
}

.right-side-text {
    color: transparent; /* Default transparent */
    transition: color 300ms;
    
}

.feature-item-container:hover .right-side-text {
    color: #292929; /* Gray text on hover */
}

/* Custom spacing class for mobile */
@media (max-width: 768px) {

  /* Container spacing */
  #brand-led-section {
    margin-left: 10%;
    margin-right: 10%;
  }

  /* Stack everything cleanly */
  .feature-item-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
  }

  .feature-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  /* TITLE */
  .left-side-title {
    color: #000 !important;
    font-size: 1.7rem;
    margin-bottom: 5px;
  }

  /* TEXT */
  .right-side {
    width: 100%;
    padding: 0;
  }

  .right-side-text {
    color: #000 !important;
    font-size: 1.5rem!important;
    line-height: 1.5;
  }

  /* IMAGE — NORMAL FLOW */
  .feature-image-ghost {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;

    width: 100%;
    height: auto;

    display: block !important;
    opacity: 1 !important;

    margin: 10px 0 5px 0;
    z-index: 1;
  }

  /* REMOVE weird spacing hack */
  .espacio {
    margin-bottom: 0;
  }

}

/* Image Ghost Styling - CRITICAL FOR MOVEMENT & POSITIONING */
.feature-image-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 300px;
    border-radius: 8px;
    pointer-events: none; /* Allows mouse events to pass through to the container */
    will-change: transform, opacity; 
    z-index: -1; 
    
    
    /* This makes the center of the image follow the cursor */
    transform: translate(-50%, -50%); 
}



/* SECTION */
.our-work {
  padding: 80px 5%;
}

.our-work-title {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ITEM */
.work-item {
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.work-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(100%);
  transition: 0.4s ease;
}

/* HOVER */
.work-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* TEXT */
.work-caption {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.work-detail {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.4;
}

/* 🔥 MOBILE */
@media (max-width: 768px) {

  .work-grid {
    grid-template-columns: 1fr; /* 1 per row */
    gap: 30px;
  }

  .work-image {
    height: 300px;
  }

  .our-work {
    padding: 60px 20px;
  }

}

.ourwork {
    margin-left: 10%;
    margin-right: 10%;
}






/* SECTION  testimonials */
.testimonial-section {
  padding: 80px 0;
}

.view-proyect-button {
  background-color: white;
  font-size: 1.375rem;
  color: var(--secondary-color);
  width: 263px;
  height: 54px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 99px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.view-proyect-button:hover {
  background-color: #292929;
  color: var(--secondary-color);
}


/* SWIPER */
.testimonial-swiper {
  width: 100%;
  padding: 50px 0;
}


/* SLIDES */
.testimonial-swiper .swiper-slide {
  width: 627px;
  height: 777px;

  display: flex;
  justify-content: center;
  align-items: center;
   
  
}

/*image */ 

.testimonial-image {
  width: 180px;
  height: auto;
  margin-bottom: 50px;
  margin-top: 25px;
  filter: grayscale(100%) brightness(0) invert(0.2);
    opacity: 0.7;
  transition: 0.3s ease;
  
}

.testimonial-image:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* CARD */
.testimonial-card {
  width: 100%;
  height: 100%;
  padding: 45px;
  border-radius: 16px;

  display: flex;
  flex-direction: column;

  
  transition: 0.3s ease;
  
}

/* ACTIVE SLIDE */
.testimonial-swiper .swiper-slide-active .testimonial-card {
  transform: scale(1.05);
}

/* TEXT */
.company-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.comment {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #292929;
  flex-grow: 1;
}

.person-name {
  margin-top: auto;
  font-size: 1.125rem;
  color: #292929;
 font-style: italic;
  
}

/* PAGINATION */
.testimonial-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 0.6;
  
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {

  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-swiper {
    padding: 30px 0;
  }

  .testimonial-swiper .swiper-slide {
    width: 95%;
    height: auto;
  }

  .testimonial-card {
    
    border-radius: 12px;
  }

  /* 🔥 Typography fix */
  .company-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .comment {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .person-name {
    font-size: 0.9rem;
    line-height: 1.4;
  }

}


/* FOOTER */
.footer {
  
  padding-right: 91px;
  padding-left: 91px;
  padding-bottom: 95px;
  background: #292929;
  color: #fff;
}

/* LAYOUT */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* LEFT SIDE */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
}

.footer-links {
 display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap; 
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.813rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
 
  font-size: 14px;
  color: #777;
}

/* RIGHT SIDE */
.footer-right {
  max-width: 1400px;
  margin-left: auto;
  text-align: right;
  margin-top: 75px;
}

.footer-title {
  font-size: 2.938rem;
  margin-bottom: 10px;
}

.footer-subtitle {
   font-size: 2.938rem;
  margin-bottom: 30px;
  color: #FFFFFF;
  font-weight: bold;
  
}

/* FORM */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 420px;

  margin-left: auto; 
}

.footer-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  padding: 10px 5px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.footer-form input::placeholder {
  color: #D4D4D4;
  font-size: 1.375rem;
}

/* BUTTON */
.footer-form button {

  background-color: #EAEAEA;
  font-size: 1.375rem;
  color: #292929;
  font-weight: 600;
  width: 201px;
  height: 54px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-form button {
  align-self: flex-end;
}

.footer-form button:hover {
  background: #ccc;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  width: 100%;
}

.footer-logo {
    width: 225px;
    height: auto;
}

.footer-links {
    gap: 90px;
}

.footer-links svg {
  width: 20px;   /* 👈 control size here */
  height: 20px;
  margin-left: 6px; /* space from text */
}

.footer-links a {
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover svg {
  transform: translateX(3px);
  transition: 0.3s;
}

.footer-copy{
font-size: 1.813rem;
color: #ffffff;
}



/* 🔥 MOBILE */
@media (max-width: 768px) {
  .footer{
    padding-left: 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 50px;
  }

  .footer-right {
    text-align: left;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .footer-title {
    font-size: 26px;
  }

    .form-row {
    flex-direction: column;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 👈 keeps everything left-aligned */
    gap: 15px; /* tighter spacing for mobile */
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px; /* 👈 FIX: remove that huge 90px gap */
    width: 100%;
  }

 .footer-links a {
    width: 100%; /* 👈 prevents side-by-side wrapping */
  }
}




/* DEFAULT HIDDEN STATE */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-img {
  opacity: 0;
  transform: scale(0.95);
}

/* OPTIONAL DELAYS */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }


/* Logo section * /

/* SECTION logo section */
.logo-section {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 88px;
  margin-bottom: 85px;

}

/* SWIPER */
.logo-swiper {
  width: 100%;
}

/* SLIDES */
.logo-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGOS */
.logo-img {
  width: auto;
  height: 75px;

  
}


/* ===== SERVICES SECTION ===== */
.services-section-new {
  background: #ffffff;
  padding: 120px 10%;
  margin-right: 50px;
  margin-left: 50px;
  border-radius: 99px;
}

/* HEADER (TOP TEXT) */
.services-header-new {
  margin-bottom: 70px;
}

.services-title-new {
  font-size: 1.813rem;
  color: #292929;
  margin-bottom: 72px;
  font-family: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
}

.services-subtitle-new {
  font-size: 47px;
  font-weight: 400;
  color: #292929;
  font-family: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;

}

/* LAYOUT */
.services-container-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin-bottom: 88px;
}

/* LEFT */
.services-left-new {
  width: 50%;
}

.services-image-wrapper-new {
  width: 100%;
  height: 483px;
  border-radius: 16px;
  overflow: hidden;
}

.services-image-wrapper-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT */
.services-right-new {
  width: 50%;
  
}

/* PILLS */
.services-tags-new {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;

  justify-content: flex-end;
}

.service-pill-new {
  padding: 12px 20px;
  border: 1px solid #707070;
  color: #292929;
  border-radius: 99px;
  font-size: 22px;
}

/* TEXT */
.services-description-new {
  font-size: 36px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: right;
  color: #292929;
}

/* BUTTON */
.services-button-new {
    display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  
  background: #292929;
  color: #fff;
  border-radius: 99px;
  font-weight: 600;
  font-size: 22px;
  transition: 0.3s ease;
  width: 286px;
  height: 54px;
  margin-left: auto;
  
}

.services-button-new svg {
  margin-left: 18px;
  color: #FFFFFF;
}



.services-button-new:hover {
  background: #CD1312;
}

/* MOBILE */
@media (max-width: 768px) {

  .services-container-new {
    flex-direction: column;
    gap: 40px;
  }

  .services-left-new,
  .services-right-new {
    width: 100%;
  }

  .services-image-wrapper-new {
    height: 280px;
  }

  .services-subtitle-new {
    font-size: 2rem;
  }

  .services-description-new {
    font-size: 1.3rem;
  }

  .service-pill-new {
    font-size: 16px;
  }


  .services-section-new {

  padding: 120px 10%;
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 50px;
}

}