
   /* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 30px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Header - Only this section changed for the gray color */
header {
    background-color: #7c7c7c; /* Only this line changed */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white; /* Changed to white for contrast with gray header */
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white; /* Changed to white for contrast with gray header */
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */

.hero {
    background: linear-gradient(to right, #000000, #0d0d0d);
    color: white;
    padding: 80px 0 40px;
    overflow: hidden;
}

.hero-wrapper {
   display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
    gap: 0; /* Ya no hay gap */
    position: relative;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    z-index: 2;
    margin-right: -60px; /* SUPERPOSICIÓN: este valor ajusta la superposición */
}

.hero-image {
    flex: 1;
    min-width: 300px;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transform: rotate(-10deg);
    filter: drop-shadow(0 0 30px rgba(0, 180, 255, 0.2));
    position: relative;
    z-index: 0;
}
.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #ffa05d;
    font-style: italic;
}

.hero-text p {
    font-size: 1.2rem;
    color: #d1d1d1;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-text .btn {
    background-color: #00b4ff;
    color: #fff;
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

.hero-text .btn:hover {
    background-color: #009fd1;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transform: rotate(-10deg);
    filter: drop-shadow(0 0 30px rgba(0, 180, 255, 0.2));
}

/* Responsive */
@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
    .hero-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-text, .hero-image {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
}


/* About Section */
.about {
    background: #000;
    color: white;
    padding: 60px 0;
    position: relative;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h2 span {
    color: #ffa05d;
    font-style: italic;
    font-size: 2.4rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.15);
}

/* Fondo tipo patrón digital opcional */
.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('Home_ About Us.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

/* Texto sobre el fondo */
.about-wrapper {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 span {
        font-size: 2rem;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image {
        margin-top: 30px;
    }
}


.section-label {
    display: inline-block;
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}

/* Animación al mockup */
.about-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 180, 255, 0.25);
    animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}


/* Services Section */
.services {
    background: #000;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.services .section-label {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.services h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
    color: white; /* 👈 Esto lo fuerza a blanco */
}

.services h2 span {
    color: #ffa05d;
    font-style: italic;
    font-weight: 700;
    font-size: 1.6rem;
    display: block;
    margin-bottom: 5px;
}

.services-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.services-cta {
    font-style: italic;
    color: #ffa05d;
    font-weight: 500;
    margin-top: 40px;
    font-size: 1.1rem;
}

/* Fondo tipo circuitos oscuros, opcional */
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('490fafe5-e362-4157-910d-9e96d7f942d9.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
    .services h2 {
        font-size: 2rem;
    }

    .services-content {
        font-size: 1rem;
    }

    .services-cta {
        font-size: 1rem;
    }
}


/* Training Section */
.training {
    background-color: #000;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.training .section-label {
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.7;
}

.training h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.training-card {
    background-color: #111;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 180, 255, 0.2);
}

.training-card img {
    width: 100%;
    display: block;
    border-bottom: 1px solid #222;
}

.card-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffa05d;
    padding: 16px 20px 5px;
    text-align: left;
}

.card-desc {
    font-size: 0.95rem;
    color: #ccc;
    padding: 0 20px 20px;
    text-align: left;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
    .training h2 {
        font-size: 1.8rem;
    }
}


/* Repricer Section */
.repricer {
    background-color: #000;
    padding: 60px 20px;
    text-align: center;
}

.repricer-description {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.glass-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05),
                0 0 8px rgba(0, 180, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00c3ff;
    transform: translateY(-2px);
}


/* Footer - Exactly as in the original design */
.site-footer {
background-color: #000;
color: #ccc;
padding: 60px 20px;
font-size: 0.95rem;
border-top: 1px solid #222;
background-image: url('3388cca4-d26d-4e07-ab53-5d729d5cc80b.png');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 40px;
align-items: flex-start;
}

.footer-left,
.footer-center,
.footer-right {
flex: 1;
min-width: 260px;
}

.footer-left a,
.footer-left p {
display: block;
margin-bottom: 8px;
color: #ccc;
text-decoration: none;
}

.footer-left a:hover {
color: #ffa05d;
}

.footer-left strong {
color: #ffa05d;
}

.footer-center {
text-align: center;
}


.footer-center p {
margin-bottom: 6px;
font-size: 0.95rem;
}

.design-credit {
font-size: 0.8rem;
opacity: 0.6;
}

.design-credit span {
color: #ff497c;
font-weight: 600;
}

.footer-right {
text-align: right;
}

.footer-right p {
margin-bottom: 10px;
}

.social-icons {
display: flex;
justify-content: flex-end;
gap: 12px;
}

.social-icons a {
color: white;
font-size: 1.4rem;
transition: color 0.3s ease;
}

.social-icons a:hover {
color: #ffa05d;
}

@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-right,
.footer-left {
    text-align: center;
}

.social-icons {
    justify-content: center;
}
}

.footer-left {
border-top: 2px solid #ccc;
padding-top: 15px;
margin-top: 10px;
}

.footer-center img {
height: 110px;
margin-bottom: 10px;
}
.footer-center p {
color: #ccc;
font-size: 0.95rem;
}


.footer-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}


/* Responsive Design */
@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
    .nav-links {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .footer-column {
        width: 100%;
    }
}

/* Header nuevo */
header {
    background: linear-gradient(to bottom, #111111, #000000);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid #222;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-left {
    flex: 1;
}

.header-logo {
    height: 80px; /* antes estaba en 40px */
    object-fit: contain;
}

@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
    .header-logo {
        height: 40px;
    }
}

.nav-capsule {
    display: flex;
    background: #1e1e1e;
    border-radius: 30px;
    padding: 10px 30px;
    list-style: none;
    gap: 30px;
    box-shadow: inset 0 0 6px #444;
}

.nav-capsule li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-capsule li a:hover {
    color: #e07b29;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffb86c;
}

.social-icons img.social-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    }

    .social-icons a:hover img.social-img {
    transform: scale(1.1);
    filter: brightness(1.2);
    }

        
/* ====================== */
/* === MOBILE FIXES ==== */
/* ====================== */
@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
    /* NAVBAR */
    .header-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-capsule {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
        gap: 10px;
    }

    .header-right {
        justify-content: center;
    }

    .btn-glass {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* SECTIONS */
    section { padding: 40px 20px; }

    .hero-wrapper,
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .about-text {
        margin-right: 0 !important;
    }

    .hero-text h1,
    .about-text h2 span {
        font-size: 2rem;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Hamburger button */
.hamburger {
  color: white !important;
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
  section { padding: 40px 20px !important; }
  .hamburger {
  color: white !important;
    display: block;
  }

  .nav-capsule {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    gap: 15px;
    background: #1e1e1e;
    border-radius: 20px;
    margin-top: 10px;
  }

  .nav-capsule.active {
    display: flex;
  }

  .header-right {
    justify-content: center;
    margin-top: 10px;
  }
}  
  
.section-title {
  padding-top: 80px;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}

.orange-title {
  color: #FDA267 !important;
}

@media (max-width: 768px) {
  .section-title {
    scroll-margin-top: 100px;
  }
}


html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.intro img,
.revolut img {
  max-width: 100%;
  height: auto;
}

.application {
  width: 100%;
}

.intro, .revolut {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .intro, .revolut {
    flex-direction: column;
    gap: 20px;
  }

  .content-container {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .application {
    padding: 10px;
  }
}

/* Ajuste del padding del header para responsive */
@media (max-width: 768px) {
  header {
    padding: 20px;
  }
}

/* Alineación de imágenes .intro y .revolut */
.intro img,
.revolut img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* En vista web: centrar verticalmente la imagen en .intro */
@media (min-width: 769px) {
  .intro {
    align-items: center;
  }
}

.application {
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.icon-container {
  flex: 0 0 auto;
}

.text-container {
  flex: 1;
}

@media (min-width: 769px) {
  .intro img:not(.app-icon) {
    transform: translateY(80px);
  }
}

@media (max-width: 768px) {
  .app-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .intro img,
  .revolut img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .intro img:not(.app-icon),
  .revolut img:not(.app-icon) {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  .app-icon {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
  }
}
  
@media (min-width: 769px) {
  .intro img:not(.app-icon) {
    transform: translateY(200px);
  }
}

@media (max-width: 768px) {
  .intro img:not(.app-icon) {
    margin-top: 200px !important;
  }
}

@media (max-width: 768px) {
  section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin-bottom: 30px !important;
  }

  .app-icon {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
    margin-top: 4px;
  }

  .application {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .text-container {
    flex: 1;
  }
}

@media (min-width: 769px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }

  .intro img:not(.app-icon) {
    transform: translateY(200px);
  }

  .app-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-top: 4px;
  }

  .application {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .icon-container {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .text-container {
    flex: 1;
  }
}

   body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #121212;
color: white;
text-align: center;
}

header {
background-color: #FDA267;
color: white;
padding: 40px;
}

header h1 {
font-size: 6em;
margin-bottom: 10px;
font-family: 'Helvetica Neue', sans-serif;
}

header h2 {
font-size: 3em;
margin-top: 0;
font-weight: lighter;
color: #FDA267;
font-family: 'Helvetica Neue', sans-serif;
}


.intro,
.revolut {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0px 40px;
  background-color: #121212;
  color: white;
  gap: 40px;
  flex-wrap: wrap;
}

.intro {
  padding: 120px 0px 0px 0px;
}

.intro .content-container,
.revolut .content-container {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.intro img,
.revolut img {
  max-width: 500px;
  border-radius: 15px;
  margin-right: 20px;
}

.intro p,
.revolut p {
  font-size: 1.5em;
  color: white;
  font-weight: normal;
}

.intro .content-container p:first-child,
.intro .content-container p:nth-child(2),
.revolut .content-container p:first-child,
.revolut .content-container p:nth-child(2) {
  font-size: 2.5em;
}

.intro .content-container p:nth-child(2),
.intro .content-container p:nth-child(3),
.intro .content-container p:nth-child(4),
.intro .content-container p:nth-child(5),
.revolut .content-container p:nth-child(2),
.revolut .content-container p:nth-child(3),
.revolut .content-container p:nth-child(4),
.revolut .content-container p:nth-child(5) {
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .intro, .revolut {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px !important;
  }

  .intro .content-container,
  .revolut .content-container {
    padding: 10px;
  }

  .intro img,
  .revolut img {
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .application {
    align-items: center;
  }

  .text-container {
    text-align: left;
  }
}


.intro .content-container {
flex: 1;
text-align: left;
padding: 20px;
}

.revolut .content-container {
flex: 1;
text-align: left;
padding: 20px;
}

.intro img {
max-width: 500px;
border-radius: 15px;
margin-right: 20px;
}

.revolut img {
max-width: 500px;
border-radius: 15px;
margin-right: 20px;
}

.intro p {
font-size: 1.5em;
color: white;
font-weight: normal;
}

.revolut p {
font-size: 1.5em;
color: white;
font-weight: normal;
}
.intro .content-container p:first-child,
.intro .content-container p:nth-child(2) {
font-size: 2.5em;
}

.revolut .content-container p:first-child,
.revolut .content-container p:nth-child(2) {
font-size: 2.5em;
}

.intro .content-container p:nth-child(2),
.intro .content-container p:nth-child(3),
.intro .content-container p:nth-child(4), 
.intro .content-container p:nth-child(5) {
font-size: 1.2em;
}

.revolut .content-container p:nth-child(2),
.revolut .content-container p:nth-child(3),
.revolut .content-container p:nth-child(4), 
.revolut .content-container p:nth-child(5) {
font-size: 1.2em;
}

.applications {
background-color: #121212;
padding: 40px 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
justify-content: center;
}

.applications h2 {
font-size: 3.5em;
color: #FDA267;
margin-bottom: 20px;
}

.application {
display: flex;
flex-direction: column;
align-items: left;
background-color: transparent;
border-radius: 10px;
padding: 20px;
margin-bottom: 40px;
width: 100%;
text-align: left;
}

.icon-container {
margin-bottom: 15px;
}

.app-icon {
width: 50px;
height: 50px;
background-color: transparent;
border-radius: 0;
padding: 0;
}

.text-container {
width: 100%;
}

h3 {
font-size: 1.2em;
color: white;
margin-bottom: 10px;
}

ul {
padding-left: 0;
list-style-type: none;
}

ul li {
color: #ccc;
font-size: 0.95em;
line-height: 1.4em;
}

footer {
background-color: #1f1f1f;
padding: 15px 0;
color: white;
font-size: 1em;
}

footer p {
margin: 0;
}

.orange-title {
color: #FDA267!important;
}


  
.section-title {
  padding-top: 80px;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}

.orange-title {
  color: #FDA267 !important;
}

@media (max-width: 768px) {
  .section-title {
    scroll-margin-top: 100px;
  }
}