/* ===================================================
   ALFALIFE ACADEMY - Ana Stil Dosyası
   =================================================== */

/* ===================================================
   CSS DEĞİŞKENLERİ (Renk Paleti & Spacing)
   =================================================== */
:root {
  /* Ana Renkler */
  --color-cream:        #F5F0DC;        /* Ana arka plan - krem */
  --color-cream-light:  #FAF7ED;        /* Açık krem */
  --color-white:        #FFFFFF;
  --color-off-white:    #F0EDE4;        /* Hafif kırık beyaz */
  --color-gray-light:   #EDEBE5;        /* Açık gri bölümler */
  --color-gray-bg:      #E8E5DC;        /* Gri arka plan */

  /* Metin Renkleri */
  --color-text-dark:    #2C2B29;        /* Ana koyu metin */
  --color-text-medium:  #4A4845;        /* Orta ton metin */
  --color-text-light:   #7A7770;        /* Açık ton metin */

  /* Vurgu Renkleri */
  --color-gold:         #E8C96A;        /* Altın sarısı - butonlar, vurgu */
  --color-gold-light:   #F5DFA0;        /* Açık altın */
  --color-gold-bg:      #FBF3D5;        /* Altın arka plan tonu */

  /* Adım İkon Renkleri */
  --color-step1:        #B8D98D;        /* Adım 1 - açık yeşil */
  --color-step2:        #7FA88C;        /* Adım 2 - orta yeşil */
  --color-step3:        #4A7A62;        /* Adım 3 - koyu yeşil */
  --color-step4:        #E8C96A;        /* Adım 4 - altın */

  /* Section Arka Plan Renkleri */
  --section-bg-lyellow:     #faeed2;
  --section-bg-white:       #FFFFFF;
  --section-bg-white-2:     #f8f9f2;
  --section-bg-lgreen:      #edece5;
  --section-bg-gray:        #e7e7e7;
  --section-bg-lgray:       #f3f3f3;
  --section-bg-purple:      #64004d;

  /* Tipografi */
  --font-display:       'Poppins', sans-serif;
  --font-body:          'Poppins', sans-serif;

  /* Border Radius */
  --radius-card:        20px;
  --radius-btn:         50px;
  --radius-sm:          12px;

  /* Gölge */
  --shadow-card:        0 8px 32px rgba(44, 43, 41, 0.08);
  --shadow-card-hover:  0 16px 48px rgba(44, 43, 41, 0.14);

  /* Transition */
  --transition:         all 0.3s ease;
}

/* ===================================================
   RESET & GENEL
   =================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: var(--font-body), serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================================
   TİPOGRAFİ
   =================================================== */
h1, h2, h3, h4 {
  line-height: 1.15;
  color: var(--color-text-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
}
h2 {
  font-size: 2rem;
  font-weight: 300;
}
h3 {
  font-size: 1.75rem;
  font-weight: 300;
}
h4 {
  font-size: 1.5rem;
  font-weight: 300;
}

p {
  color: var(--color-text-medium);
  line-height: 1.5;
}

ul {
  margin: 0;
  list-style-type: none;
}
.section-standard {
  h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--section-bg-purple);
  }
  h2 {
    font-size: 1.8rem;
    font-weight: 300;
    strong {
      color: var(--section-bg-purple);
    }
  }
  h3 {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6rem;
  }
  h4 {
    font-size: 1.2rem;
    font-weight: 300;
  }
  p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3rem;
  }
}
/* ===================================================
   BUTONLAR
   =================================================== */
.btn-primary {
  display: inline-block;
  background-color: var(--section-bg-purple);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  /* text-transform: uppercase; */
  padding: 8px 40px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--section-bg-purple);
  color: var(--color-white);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-white {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-text-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-white:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 201, 106, 0.4);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  /* text-transform: uppercase; */
  padding: 8px 40px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--color-text-dark);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover {
  background-color: var(--color-text-dark);
  color: var(--color-white);
  text-decoration: none;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}
.shadow {
  position: relative;
  z-index: 1;
  box-shadow: inherit !important;
}
.shadow.dark::after {
  /*background: #000000 none repeat scroll 0 0;*/
  background-color: rgba(68, 17, 56, 0.85);
  content: "";
  height: 100%;
  left: 0;
  /*opacity: 0.5;*/
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.shadow.dark-hard::after {
  /*background: #000000 none repeat scroll 0 0;*/
  background-color: rgba(68, 17, 56, 0.85);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.75;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.shadow.theme::after {
  background: var(--theme-main-color) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.shadow.theme-hard::after {
  background: var(--theme-main-color) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}


/* ===================================================
   SECTION STANDARD
   =================================================== */
.section-standard {
  background-color: var(--section-bg-lgray);
  padding: 40px 0;
}
.section-standard ul {
  list-style: disc;
  margin-bottom: 10px;
  li {
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 400;
  }
}
.section-standard .text-box {
  padding: 15px 30px;
  margin-bottom: 10px;
}
.section-standard .text-box p{
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
}
.section-standard .text-box.bg-gray {
  background-color: var(--section-bg-gray);
  p {
    color: var(--color-text-dark);
  }
}
.section-standard .text-box.bg-purple {
  background-color: var(--section-bg-purple);
  p {
    color: var(--color-white);
  }
}

/* ===================================================
   SECTION 1: HERO
   =================================================== */
.section-hero {
  background-color: var(--section-bg-lgray);
  padding: 40px 0;
}

.hero-subtitle {
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--color-text-medium);
  text-align: center;
  margin-bottom: 20px;
}

.hero-title {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.1;
  font-size: 2.5rem;
  font-weight: 300;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 14px 24px;
}

.hero-overlay .academy-label {
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0px;
  font-size: .5rem;
}

.hero-overlay h2 {
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-overlay .btn-white {
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  font-size: 0.5rem;
  padding: 6px 10px;
}

.hero-overlay .deco-line {
  width: 100px;
  margin-bottom: 10px;
}

.hero-overlay .hero-tagline {
  color: var(--color-white);
  margin-bottom: 10px;
}

/* ===================================================
   SECTION 2: 4 BASAMAK İNFOGRAPHİC
   =================================================== */
.section-infographic {
  background-color: var(--section-bg-lgray);
}
.section-infographic img {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  display: block;
}
.section-infographic p {
  font-weight: 300;
}
/* ===================================================
   ADIM KARTLARI (Genel)
   =================================================== */
.step-label {
  object-fit: contain;
  position: absolute;
  z-index: 99999;
  right: 0;
  top: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  width: 150px;
  max-height: 150px;
  opacity: 0.5;
}
.step-icon {
  width: 90px;
  height: 90px;
  margin-left: -10px;
}
.step-card {
  background-color: var(--section-bg-lgray);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 0 0 50px 0;
  box-shadow: 10px 10px 10px 0px rgba(217,217,217,0.75);
  -webkit-box-shadow: 10px 10px 10px 0px rgba(217,217,217,0.75);
  -moz-box-shadow: 10px 10px 10px 0px rgba(217,217,217,0.75);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card h2 {
  margin-bottom: 8px;
  line-height: 1.05;
}

.step-card .step-subtitle {
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  font-style: italic;
}

.step-card p {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.3;
}

/* ===================================================
   SECTION 3 & 4: ADIM 1 & 2
   =================================================== */
.section-steps {
  background-color: var(--section-bg-lgray);
  padding: 30px 0;
}

.section-adim1 {
  background-color: var(--section-bg-white);
  padding: 60px 0;
}

.section-adim2 {
  background-color: var(--section-bg-lyellow);
  padding: 60px 0;
}

.section-adim3 {
  background-color: var(--section-bg-white);
  padding: 60px 0;
}

.section-adim4 {
  background-color: var(--section-bg-lgreen);
  padding: 60px 0;
}

/* ===================================================
   SECTION: 4 BASAMAKLI DÖNÜŞÜM SİSTEMİ
   =================================================== */
.section-donusum {
  background-color: var(--section-bg-white-2);
  padding: 60px 0;
}

.donusum-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.donusum-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.donusum-list li {
  background-color: var(--color-gray-light);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  color: var(--color-text-medium);
  transition: var(--transition);
  cursor: default;
}

.donusum-list li:hover {
  background-color: var(--color-gold-light);
  color: var(--color-text-dark);
}

.donusum-list li.highlighted {
  background-color: var(--color-gold-light);
  color: var(--color-text-dark);
}

.donusum-infographic {
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* ===================================================
   SECTION: NEDEN TAKILI KALIYORSUN
   =================================================== */
.section-neden {
  background-color: var(--section-bg-lyellow);
  padding: 60px 0;
}

.problem-list {
  list-style: none;
  margin: 20px 0 20px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.problem-list li {
  background-color: var(--color-gray-light);
  border-radius: 8px;
  padding: 13px 18px;
  margin-bottom: 10px;
  color: var(--color-text-medium);
  transition: var(--transition);
}

.problem-list li.active {
  background-color: var(--color-gold-light);
  color: var(--color-text-dark);
}

.neden-photo {
  border-radius: var(--radius-card);
}

.neden-photo img {
  width: 100%;
}

.neden-note {
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 8px;
}

/* ===================================================
   SECTION: SORUN SENDE DEĞİL
   =================================================== */
.section-sorun {
  background-color: var(--section-bg-white);
  padding: 60px 0;
}

.sorun-tag {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.sorun-box {
  background-color: var(--color-gold-bg);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  margin-top: 20px;
  position: relative;
}

.sorun-box p {
  line-height: 1.75;
}

.sorun-box strong {
  color: var(--color-text-dark);
}

.sorun-photo {
  border-radius: var(--radius-card);
}

.sorun-photo img {
  width: 100%;
}

.btn-text-link {
  color: var(--color-text-dark);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 30px;
  transition: var(--transition);
  font-size: .7rem;
  justify-content: flex-end;
  flex-direction: row;
  align-self: flex-end;
  text-align: right;
  width: 100%;
}

.btn-text-link:hover {
  color: var(--section-bg-purple);
  text-decoration: none;
}

.btn-text-link::after {
  content: '→';
}

/* ===================================================
   SECTION: KENDİNİ İFADE ET (Siluet)
   =================================================== */
.section-ifade {
  background-color: var(--section-bg-white-2);
  padding: 60px 0;
  text-align: center;
}

.ifade-silhouette {
  max-width: 280px;
  margin: 0 auto 24px;
}

.ifade-caption {
  font-style: italic;
  color: var(--color-text-medium);
  background-color: var(--section-bg-white-2);
  padding: 15px 0;
}

/* ===================================================
   SECTION: NLP ZİHİN YÖNETİMİ (Detay)
   =================================================== */
.section-nlp {
  background-color: var(--section-bg-white);
  padding: 60px 0;
}

/* ===================================================
   SECTION: VARLIK BİLİNCİ
   =================================================== */
.section-varlik {
  background-color: var(--section-bg-white-2);
  padding: 60px 0;
}

.section-varlik .step-subtitle {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.varlik-pyramid {
  max-width: 280px;
  margin: 32px auto 0;
}

/* ===================================================
   SECTION: DUYGUSAL ARINMA (Detay)
   =================================================== */
.section-duygusal-detail {
  background-color: var(--section-bg-white-2);
  padding: 40px 0;
}

.choice-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.choice-list li {
  background-color: var(--color-gray-light);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  color: var(--color-text-medium);
}

.choice-list li.selected {
  background-color: var(--color-gold-light);
  color: var(--color-text-dark);
}

.duygusal-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 32px;
}

.duygusal-photo img {
  width: 100%;
}

/* ===================================================
   SECTION: CONTACT / CTA
   =================================================== */
.section-contact {
  background-color: var(--section-bg-lgray);
  padding: 30px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-contact h2 {
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-contact p {
  margin-bottom: 32px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.contact-deco-wave {
  margin-top: -40px;
  text-align: right;
  width: auto;
  max-width: 220px;
  z-index: -1;
  position: absolute;
  right: 30px;
}


/* ==============================================================
     # Testimonials
=================================================================== */
.testimonials-area {
  background-color: var(--section-bg-lgray);
}
.testimonials-area .fixed-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 80%;
  width: 50%;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.testimonials-area .testimonial-items {
  position: relative;
  z-index: 1;
}
.testimonials-area .testimonial-items::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  height: 100%;
  width: 60%;
  z-index: -1;
  background: rgba(0, 0, 0, 0) linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 96%) repeat scroll 0 0;
  border-radius: 10px;
}
.testimonials-area .item {
  padding: 50px 20px 0 20px;
  position: relative;
  z-index: 1;
}
.testimonials-area .item::after {
  position: absolute;
  left: 20px;
  top: 25px;
  content: "\f10d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  font-size: 40px;
  opacity: 0.2;
  z-index: -1;
  line-height: 50px;
  color: var(--theme-secondary-color);
}
.testimonials-area .item p {
  font-size: 18px;
  line-height: 22px;
  display: inline;
}
.testimonials-area .item a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  font-style: italic;
}
.testimonials-area .item .provider {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.testimonials-area .item .provider img {
  height: 40px;
  width: 40px;
  margin-right: 15px;
  border-radius: 50%;
}
.testimonials-area .item .provider h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
}
.testimonials-area .item .provider .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonials-area .item .provider span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--section-bg-purple);
  font-size: 12px;
  line-height: 12px;
}

.testimonials-area .row > .info {
  padding-left: 50px;
  border-left: 1px solid #c7c7c7;
}
.testimonials-area .row > .info h4 {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--theme-main-color);
}
.testimonials-area .row > .info h2 {
  font-weight: 600;
  margin-bottom: 25px;
}
.testimonials-area .row > .info p {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  display: inline;
}

.testimonials-area .testimonials-carousel .owl-nav {
  position: absolute;
  right: 30px;
  bottom: 0px;
}
.testimonials-area .testimonials-carousel .owl-nav .owl-prev,
.testimonials-area .testimonials-carousel .owl-nav .owl-next {
  background: transparent;
  color: #232323;
  font-size: 25px;
  margin: 0;
}
/* ===================================================
   DEKORATİF ELEMENTLER
   =================================================== */
.deco-img {
  pointer-events: none;
  user-select: none;
}
.deco-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ===================================================
   UTILITY CLASSES
   =================================================== */
.text-gold { color: var(--color-gold); }
.bg-cream { background-color: var(--color-cream); }
.bg-gold-light { background-color: var(--color-gold-bg); }
.section-padding {
  padding: 60px 0;
}

/* ===================================================
   SCROLL ANİMASYONLARI
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
}



/* ==============================================================
     # Bradcrumb
=================================================================== */
.breadcrumb-area {
  padding: 150px 0 50px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-position: center center !important;
  background-size: cover !important;
}
.breadcrumb-area.top-pad-extra {
  padding-top: 240px;
}
.breadcrumb-area .row {
  position: relative;
  z-index: 1;
}
.breadcrumb-area .breadcrumb {
  background: transparent none repeat scroll 0 0;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.breadcrumb-area h1 {
  display: block;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 40px;
  margin-top: -10px;
  margin-bottom: 20px;
  color: #fff;
}
.breadcrumb > li + li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  padding: 0 5px;
  color: #ffffff;
  display: none;
}
.breadcrumb-area .breadcrumb li i {
  margin-right: 5px;
}
.breadcrumb-area .breadcrumb li {
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.breadcrumb-area .breadcrumb li::after {
  content: "";
  height: 2px;
  left: -10px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  background: #ffffff;
  width: 15px;
}
.breadcrumb-area .breadcrumb li:first-child::after {
  display: none;
}
.breadcrumb-area .breadcrumb a,
.breadcrumb-area .breadcrumb li {
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}



/* ==============================================================
     # About Us
=================================================================== */
.about-us-area .about-items .info ul {
  margin-top: 30px;
}
.about-us-area .about-items .info ul li {
  display: block;
  padding-left: 25px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  color: #232323;
  font-weight: 500;
}
.about-us-area .about-items .info ul.list-style-none li {
  padding-left: 0px;
}
.about-us-area .about-items .info ul:not(.list-style-none) li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "N";
  font-family: 'ElegantIcons';
  height: 100%;
  width: auto;
  color: var(--theme-main-color);
}

.terms-policy-area.corporate-page p {
  font-size: 18px;
}
.terms-policy-area.corporate-page ul {
  margin: 25px 0;
}
.terms-policy-area.corporate-page ul li {
  display: flex;
}
.terms-policy-area.corporate-page ul li:first-child {
  margin: 0;
}
.terms-policy-area.corporate-page ul li span {
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  background: var(--section-bg-purple);
  color: #ffffff;
  font-weight: 600;
  min-width: 30px;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 12px;
}
.terms-policy-area.corporate-page ul li span i {
  position: relative;
}





/* ===================================================
   MOBİL / RESPONSIVE
   =================================================== */
@media (min-width: 768px) {
  .hero-image-wrapper {
    margin: 0 32px;
  }
  .step-card {
    padding: 48px 40px 40px;
  }
}

@media (min-width: 992px) {
  .section-hero {
    padding: 60px 0 0;
  }

  .step-card h2 {
  }
}

@media screen AND (max-width: 1180px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .default-padding.bottom-less {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  footer {
    background-position: left center !important;
  }
}

@media only screen and (max-width: 767px) {

  .breadcrumb-area {
    padding: 90px 0 20px 0;
  }
  .breadcrumb-area h1 {
      font-size: 30px;
      margin-bottom: 5px;
  }
  .breadcrumb-area .breadcrumb li {
        font-size: 12px;
        padding: 0 12px;
  }
  .default-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .default-padding.bottom-less {
    padding-bottom: 20px;
    padding-top: 50px;
  }
  .default-padding-bottom {
    padding-bottom: 50px;
  }
  .default-padding-top {
    padding-top: 50px;
  }
  .top_footer {
    padding: 30px 0px;
  }
}
