/***Typo Css Start****/
:root {
  --page-width: 1400px;
  --base-fm: Nunito Sans, system-ui, sans-serif;
  --hd-fm: Lora, Georgia, serif;
  --base-size: 16px;
  --h1-size: 60px;
  --h2-size: 48px;
  --h3-size: 36px;
  --h4-size: 28px;
  --h5-size: 20px;
  --h6-size: 18px;
  --base-clr: #476a85;
  --base-clr1:#e0eef1;
 --base-clr2: #0c2440;
  --white-clr: #ffffff;
  --black-clr: #000000;
  --bg-clr: #cdd9e4;
  --theme-clr: #2d8a9f;
  --sec-theme-clr: #023f64;
  
}

* {
  box-sizing: border-box;
  outline: none !important;
}

body {
  margin: 0px;
  font-family: var(--base-fm);
  color: var(--base-clr);
  font-size: var(--base-size);
  line-height: 1.4;
  background-color: #f4f7fa;
  font-weight: 400;
}
.fw-normal {
  font-weight: 400;
}
p {
  margin: 0 0 20px 0;
  line-height: 1.4;
}

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

ul, li, a {
  list-style: none;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}

.tagline-text {
 color: var(--theme-clr);
    letter-spacing: .2em;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    padding-bottom: 10px;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

h1, .h1 {
  font-family: var(--hd-fm);
  font-size: var(--h1-size);
  color: var(--base-clr2);
  font-weight: 500;
  margin: 0px 0px 18px 0px;
  font-style: normal;
  line-height: 1.1;
}

h2, .h2 {
  font-family: var(--hd-fm);
  font-size: var(--h2-size);
  font-weight: 500;
  margin: 0px 0px 12px 0px;
  line-height: 1.2;
  color: var(--base-clr2);
}

h3, .h3 {
  font-family: var(--hd-fm);
  font-size: var(--h3-size);
  font-weight: 500;
  margin: 0px 0px 8px 0px;
  line-height: 1.2;
  color: var(--base-clr2);
 
}

h4, .h4 {
  font-family: var(--hd-fm);
  font-size: var(--h4-size);
  font-weight:500;
  margin: 0px 0px 6px 0px;
  line-height: 1.2;
  color: var(--base-clr2);
  
}

h5, .h5 {
  font-family: var(--hd-fm);
  font-size: var(--h5-size);
  font-weight: 500;
  margin: 0px 0px 5px 0px;
  line-height: 1.2;
  color: var(--base-clr2);

}

h6, .h6 {
  font-family: var(--hd-fm);
  font-size: var(--h6-size);
 color: var(--theme-clr);
  font-weight: 500;
  margin: 0px 0px 5px 0px;
  line-height: 1.2;
}

.light-bg {
      background: #F2F5F2;
}
.theme-clr {
  color: var(--theme-clr);
}
.white-bg {
  background-color: var(--theme-clr);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

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

.d-flex {
  display: flex;
  flex-flow: row wrap;
}
.jc-center {
  justify-content: center;
}
.jc-left {
  justify-content: left;
}
.jc-right {
  justify-content: right;
}
.f-center {
  align-items: center;
}

.f-start {
  align-items: flex-start;
}

.f-end {
  align-items: flex-end;
}

.splide__arrow {
    width: 48px;
    height: 48px;
    opacity: 1;
    background-color: rgba(255,255, 255, 0.7);
}

.splide__arrow svg {
    fill: var(--white-clr);
}
.splide__pagination {
    bottom: 20px;
}
.splide__pagination li button {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.80);
    opacity: 1;
    width: 10px;
    height: 10px;
    padding: 0;
    transform: none !important;
}
.splide__pagination li button.is-active {
    background-color: var(--sec-theme-clr);
    width: 30px;
}

.splide__pagination li {
    margin: 0px 2px;
}

section {
  width: 100%;
  padding: 70px 0px;
}

.container {
  max-width: var(--page-width);
  padding: 0px 30px;
  margin: auto;
  width: 100%;
}

.cmn-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: var(--theme-clr);
  border-radius: 100px;
  color: var(--white-clr);
  padding: 11px 30px 11px 30px;
  display: flex;
  border: none;
  font-family: var(--base-fm);
  font-size: calc(var(--base-size) - 2px);
  justify-content: center;
  line-height: 1.3;
}

.cmn-btn svg {
    width: 15px;
    height: 15px;
    position: relative;
    top: 2px;
    margin-left: 4px;
}

.cmn-btn:hover {
  opacity: 0.85;
}

.cmn-bdr-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: var(--white-clr);
  color: var(--base-clr2);
  border-radius: 100px;
  border: #cdd9e4 1px solid; 
  padding: 11px 30px 9px 30px;
 display: flex;
  font-family: var(--base-fm);
  font-size: calc(var(--base-size) - 2px);
  line-height: 1.3;
  justify-content: center;
}
.cmn-bdr-btn:hover {
   background: var(--theme-clr);
  color: var(--white-clr);
}
.cmn-btn:hover{
  opacity: 0.85;
}

.cmn-bdr-btn svg {
    width: 15px;
    height: 15px;
    position: relative;
    top: 1px;
    margin-left: 4px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #f3f7fa;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
}


.site-header-inner{
    margin: auto;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}


.navbar ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.navbar ul li a {
  text-decoration: none;
  color: #476a85;
  font-size: 15px;
  transition: 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li.current-menu-item a {
  color: var(--theme-clr);
}


.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  background: var(--theme-clr);
  color: var(--white-clr);
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: var(--sec-theme-clr);
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding:0px; 
}



.hero-section {
  background: linear-gradient(135deg, hsl(210 40% 97%) 0%, hsl(191 40% 88%) 100%);
  
  overflow: hidden;
}


.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

}


.hero-content {
  max-width: 640px;
}


.hero-tag {
    display: flex;
    padding: 10px 18px;
    background: #e3ebf2;
    color: var(--base-clr2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    gap: 8px;
}
.hero-tag svg {
    width: 14px;
    height: 14px;
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--base-clr2);
}

.hero-content h1 em {
  color: var(--theme-clr);
  font-style: italic;
}


.hero-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 35px;
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}



.hero-image {
  position: relative;
}


.image-bg {
  position: absolute;
  inset: -20px;
  background: rgba(106, 92, 255, 0.15);
  filter: blur(50px);
  border-radius: 40px;
  z-index: 1;
}


.hero-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}





.about-wrapper {
  display: flex;
  flex-flow: row wrap;
  gap: 5%;
  align-items: center;
  justify-content: space-between;
}

.image-leftside .about-image{
  order: 2;
}
.about-image {
  width: 40%;
}
.about-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


.about-content {
  width: 55%;
}


.about-features {
  list-style: none;
  margin-top: 30px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--base-clr2);
}


.feature-icon {
  width: 36px;
  height: 36px;
  background: #2d8a9f26;
  color: var(--theme-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 16px;
  height: 16px;
}

.skills-wrapper {
  margin-top: 35px;
}


.skills-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 8px;
  font-weight: 600;
}


.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}


.skills-list span {
    background: #e3ebf2b3;
    color: var(--base-clr2);
    padding: 6px 15px 4px 15px;
    border-radius: 50px;
    font-size: 12px;
    transition: 0.3s ease;
}

.skills-list span:hover {
  background: var(--theme-clr);
  color: var(--white-clr);
}




.session-box {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 32px;
      background: linear-gradient(135deg, hsl(210 40% 97%) 0%, hsl(191 40% 88%) 100%);
  border: 1px solid #e5e5e5;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}



.session-box {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    #f7f8ff 0%,
    #ffffff 50%,
    #f3f4ff 100%
  );
  border: 1px solid #e5e5e5;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}


.blur-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
}

.blur-top {
  top: -120px;
  right: -100px;
  background: rgba(106, 92, 255, 0.18);
}

.blur-bottom {
  bottom: -120px;
  left: -100px;
  background: rgba(255, 182, 193, 0.2);
}


.session-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}


.session-content {
  max-width: 650px;
}


.session-tag {
  display: flex;
    padding: 8px 18px;
    background: #fff;
    color: var(--base-clr2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    gap: 8px;
}
.session-tag svg {
  width: 14px;
  height: 14px;
  color: var(--theme-clr);
}


.session-content h2 em {
  color:var(--theme-clr);
  font-weight: 400;
  
}


.session-content p {
  color: #666;
  margin-bottom: 35px;
  max-width: 600px;
}


.session-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}


.session-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  font-size: 14px;
}


.session-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}


.card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #6a5cff;
  margin-bottom: 15px;
  font-weight: 600;
}


.session-card h3 {
  font-size: 45px;
  margin-top: 20px;
  margin-bottom: 18px;
  line-height: 1;
}

.session-card h3 span {
     font-size: 15px;
    color: #476a85;
    font-weight: 400;
}


.card-text {
  color: #666;
  margin-bottom: 30px;
  font-size: 15px;
}


.card-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}




.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 70px;
}


.approach-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 22px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}


.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}


.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #2d8a9f26;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 15px;
}
.card-icon svg {
  width: 22px;
  height: 24px;
  color: var(--theme-clr);
}

.approach-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}


.approach-card p {
  font-size: 14px;
  margin-bottom: 0px;
}


.experience-box {
  margin-top: 60px;

  background: linear-gradient(180deg, hsl(210 40% 98%) 0%, hsl(191 35% 91%) 100%);
  border: 1px solid #e5e5e5;
  border-radius: 25px;
  padding: 48px;
}


.experience-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}


.experience-content h3 {
  margin-bottom: 10px;
}

.experience-content p {
  color: var(--base-clr);
  margin-bottom: 0px;
  
}


.experience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}


.experience-item {
  position: relative;
  padding: 12px 12px 12px 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
  line-height: 1.3;
  font-size: 14px;
  display: flex;
  align-content: flex-start;
}


.experience-item::before {
  content: "";
    position: absolute;
    left: 16px;
    top: 17px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-clr);
}






.how-it-works-section {
  background: linear-gradient(135deg, #f7f8ff 0%, #e2eef1 100%);
}


.section-header {
  max-width: 760px;
  margin: auto;
  text-align: center;
}





.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}


.step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}


.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}


.step-number {
  position: absolute;
  top: -14px;
  right: -14px;

  width: 34px;
  height: 34px;
  background: var(--theme-clr);
  color: var(--white-clr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;

  box-shadow: 0 8px 18px rgba(106, 92, 255, 0.35);
}


.step-icon {
  width: 48px;
  height: 48px;
  background: #2d8a9f26;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--theme-clr);
}

.step-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}


.step-card p {
  font-size: 14px;
  margin-bottom: 0px;
}


.video-section {
  background: linear-gradient(
    135deg,
   #ffffff 0%,
    #e1eef1 100%
  );

  overflow: hidden;
}

.video-header {
  max-width: 880px;
  margin: auto;
  text-align: center;
}


.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
}


.video-blur {
  position: absolute;

  inset: -20px;

  background: rgba(106, 92, 255, 0.15);

  filter: blur(60px);

  border-radius: 40px;

  z-index: 1;
}


.video-card {
  position: relative;
  z-index: 2;

  overflow: hidden;

  border-radius: 32px;

  background: #ffffff;

  border: 1px solid #e5e5e5;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}


.video-frame {
  position: relative;

  width: 100%;
  padding-top: 56.25%;
}


.video-frame iframe {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  border: none;
}

.calendy-box {
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    background-color: #fafafa;
    border: #cdd9e4 1px solid;
    max-width: 1100px;
    margin: auto;
    width: 100%;
    position: relative;
    top: 20px;
}


.section-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.review-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
   
}

.google-icon {
    width: 22px;
    height: 22px;
}



.rating-wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rating-wrap span {
    color: #6b7280;
    font-size: 15px;
}

.stars {
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 22px;
}

.stars.small {
    font-size: 24px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Card */
.review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.small-icon {
    width: 20px;
    height: 20px;
}

.review-text {
    margin-top: 15px;
    line-height: 1.6;
    color: #374151;
    flex-grow: 1;
    margin-bottom: 0px;
}

.review-user {
    margin-top: 20px;
}

.review-user h4 {
    font-size: 18px;
    color: var(--base-clr2);
    margin-bottom: 4px;
    font-weight: 500;
}

.review-user span {
    font-size: 14px;
    color: #6b7280;
}

/* Button */
.reviews-btn-wrap {
  display: flex;
  justify-content: center;
    margin: 50px auto 0px auto;
    text-align: center;
}


.contact-section {
   background: linear-gradient(to bottom, #f8fafc, #eef2ff);
}


.contact-section .container{
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: flex-start;
}
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--base-clr2);
}

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2d8a9f26;
    color: var(--theme-clr);
    flex-shrink: 0;
}

.icon-box svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Form */

.contact-form-wrapper {
    width: 100%;
}

.contact-form form {
    background: #ffffff;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
form p {
  margin: 0px;
}
body .wpcf7 form .wpcf7-response-output {
    margin: 1em 0.5em 0em;
  
}
form input[type="submit"].submit-btn {
  width: 100%;
  background-color: var(--theme-clr);
}
.wpcf7  .wpcf7-spinner {
    position: absolute;
}
.form-group {
    padding-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--base-clr2);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 15px;
    line-height: 24px;
    background-color: #f4f7fa;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;

    outline: none;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--theme-clr);
    box-shadow: 0 0 0 1px var(--sec-theme-clr);
}

.form-group textarea {
    resize: vertical;
    height: 115px;
}
.submit-btn {
  width: 100%;
}


.footer {
    background: #f4f7fa;
    border-top: 1px solid #cdd9e4;
}
.footer-top {
    padding: 50px 0px 35px;
}

.footer-top .container {
   margin: auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-about p {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--base-clr);
}

/* Headings */

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--base-fm);
    color: var(--base-clr2);
}

/* Lists */

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 6px;
}

/* Links */

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: var(--base-clr2);
    font-size: 14px;

    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--theme-clr);
}

/* Footer Contact Text */

.footer-contact li {
    color: #111827;
    font-size: 15px;
}

/* Bottom Footer */

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 20px;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    text-align: center;
    margin-bottom: 0px;
    font-size: 14px;
    color: #6b7280;
}


.our-story-section {
  background-color: #f4f7fa;
}

.our-story-section .our-story-cont{
   display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.about-page-scn{
      background: linear-gradient(180deg, hsl(210 40% 98%) 0%, hsl(191 35% 91%) 100%);
}
.about-page-scn .skills-list span {
  background-color: var(--white-clr);
}

.the-journey-scn {
 background: linear-gradient(180deg, hsl(210 40% 98%) 0%, #e1eef1 100%);
}
.philosophy-scn{
  background-color: #f4f7fa;
}
.philosophy-card {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 60px;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

/* Quote Icon */

.quote-icon {
    position: absolute;
    top: 35px;
    right: 35px;
    opacity: 0.08;
}

.quote-icon svg {
    width: 80px;
    height: 80px; 
    color: #2d8a9f;
    stroke-width: 1.5;
}


/* Quote */

blockquote {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 400;
    margin: 0px;
    color: #111827;
    font-family: var(--hd-fm);
}

/* Author */

.author {
    margin-top: 32px;
}



.cta-box {
  position: relative;
  overflow: hidden;
  padding: 70px 40px;
  border-radius: 32px;

  background: linear-gradient(135deg, hsl(210 40% 97%) 0%, hsl(191 40% 88%) 100%);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08);

  text-align: center;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;

  width: 300px;
  height: 300px;

  transform: translateX(-50%);
  border-radius: 50%;

  background: rgba(139, 92, 246, 0.18);

  filter: blur(80px);

  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content p {
  margin-bottom: 0px;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1f2937;
  backdrop-filter: blur(10px);
  margin-bottom: 10px;
}

.cta-badge svg {
  color: var(--theme-clr);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}



.hero-contact-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
  background: linear-gradient(135deg, hsl(210 40% 97%) 0%, hsl(191 40% 88%) 100%);
}
.hero-contact-section .hero-tag {
  background-color: var(--white-clr);
}
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
  margin: 0 auto;
}

.cnt-bnr-desc {
  max-width: 570px;
  width: 100%;
  margin: auto;
}



.contact-cards-section {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding-top: 0px;
  padding-bottom: 60px;
}


.contact-cards-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 24px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


.contact-card .card-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2d8a9f26;
  color: var(--theme-clr);

  transition: all 0.35s ease;
}

.contact-card .card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card:hover .card-icon {
  background: var(--theme-clr);
  color: var(--white-clr);
}
.contact-card:hover .card-icon svg {
color: var(--white-clr);
}

.card-label {
  display: block;

  margin-bottom: 4px;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #9ca3af;
}

.card-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--base-clr2);
}

.contact-info-form-scn {
  padding-top: 20px;
}
.contact-info-form-inner {
    justify-content: space-between;
}
.expectation-section {
    width: 38%;
    
}

.contact-form-side {
    width: 58%;
}

.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expectation-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 2px;
}


.expectation-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3ebf2;
    color: var(--theme-clr);
}

.expectation-icon svg {
    width: 20px;
    height: 20px;
}


.expectation-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--base-clr);
    margin-bottom: 4px;
}

.expectation-content p {
    font-size: 14px;
    line-height: 1.3;
    margin: 0px;
}


.whatsapp-box {
    margin-top: 40px;
    padding: 25px;
    border-radius: 16px;
    background: #e3ebf266;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.whatsapp-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--theme-clr);
}

.whatsapp-label svg {
    width: 18px;
    height: 18px;
}

.whatsapp-box h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--base-clr2);
    margin-bottom: 5px;
    margin-top: 5px;
}

.whatsapp-text{
  font-size: 14px;
  padding: 5px 0px 12px 0px;
}


.faq-section {
    background: linear-gradient(180deg, hsl(210 40% 98%) 0%, hsl(191 35% 91%) 100%);
}

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 950px;
    margin: 40px auto 0;
}

/* Card */
.faq-card {
    background: var(--white-clr);
    border: 1px solid #cdd9e4;
    border-radius: 16px;
    padding: 22px;
    transition: 0.5s all;
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.faq-card h4 {
    font-size: 18px;
    line-height: 1.3;
    color: var(--base-clr2);
    margin-bottom: 8px;
    font-weight: 500;
}

.faq-card p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}


.inner-banner-scn {
 width: 100%;
 position: relative;
 min-height: 240px;
 padding: 0px;
 display: flex;
background: linear-gradient(135deg, hsl(210 40% 97%) 0%, hsl(191 40% 88%) 100%);
}

.inner-banner-scn .bnr-cont-group {
 position: relative;
 margin: auto;
 text-align: center;
 max-width: 800px;
 color: var(--white-clr);
 font-size: 18px;
}

.inner-banner-scn .bnr-cont-group h2:before {
 content: normal;
 background-color: var(--base-clr2);
 width: 40px;
 height: 4px;
 position: absolute;
 margin: auto;
 bottom: 0px;
 left: 0px;
 right: 0px;
}

.inner-banner-scn .bnr-cont-group h2 {
 font-size: 35px;
 font-weight: 500;
 color: var(--base-clr2);
 position: relative;
 padding-bottom: 0px;
 margin-bottom: 0px;
text-transform:uppercase
}
.page-template-blog .inner-banner-scn .bnr-cont-group h2 {
  color: var(--white-clr);
}
section.latest-f-axia-scn.blog-scn {
    background-color: #e3ecf1;
    padding: 35px 0px;
}

.latest-f-axia-inner {
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
 margin: auto;
}

.latest-f-axia-inner h2 {
 color: var(--black-clr);
 font-weight: 500;
 letter-spacing: 1px;
}

.latest-f-axia-list {
 display: flex;
 flex-flow: row wrap;
 width: calc(100% + 24px);
 margin-left: -12px;
 padding-top: 10px;
}

.latest-f-axia-item {
 width: calc(33.33% - 24px);
 margin: 12px;
 background-color: var(--white-clr);
 border-radius: 8px;
 overflow: hidden;
}

.latest-cont {
 padding: 18px 17px 20px 16px;
 border-radius: 0px 0px 8px 8px;
}

.latest-img img {
 width: 100%;
 transition: 0.5s all;
 height: 100%;
 object-fit: cover;
}

.latest-img:hover img {
 transform: scale(1.1);
}

.latest-f-axia-item-inr p {
 color: var(--black-clr);
 margin-top: 10px;
 font-size: 15px;
 margin-bottom: 15px;
 font-weight: 300;
}

h4.latest-title {
 font-size: 20px;
 font-weight: 600;
 color: rgba(0, 0, 0, 1);
 margin-bottom: 0px;
 font-family: var(--base-fm);
}

.latest-cont .cmn-btn {
 padding: 7px 14px;
 min-width: 90px;
 font-size: 15px;
 font-weight: 700;
 border-radius: 4px;
 text-transform: capitalize;
 display: inline-block;
}

.latest-cont .cmn-btn:hover {
 opacity: 0.9;
}

/**Blog Detail page**/
.blog-d-group {
 display: flex;
 flex-flow: row wrap;
 width: 100%;
 justify-content: space-between;
}
.blog-d-group .blog-d-left .post-thumbnail img {
    width: 100% !important;
    height: auto;
    max-width: 100% !important;
}
.blog-d-group .blog-d-left {
 width: 70%;
}

.blog-d-group .blog-d-right {
 width: 28%;
}

.blog-d-group .blog-d-left .post-thumbnail {
 width: 100%;
 margin-bottom: 20px;
 overflow: hidden;
 border-radius: 24px;
}

.blog-d-group .blog-d-left .post-thumbnail img {
 width: 100%;
}

.blog-d-group .blog-d-right label.wp-block-search__label {
 font-size: 18px;
 color: #000;
 font-weight: 600;
}

.blog-d-group a {
 color: #102738;
 text-decoration: underline;
}

.blog-d-group a:hover {
 text-decoration: none ;
}

.blog-d-group p {
 color: #000;
}



.blog-d-group ul {
 padding-bottom: 20px;
}

.blog-d-group ul li {
 padding-left: 15px;
 position: relative;
 width: 100%;
 margin: 5px 0px;
}

.blog-d-group ul li:before {
 content: "";
 position: absolute;
 background-color: #000;
 width: 6px;
 height: 6px;
 left: 0px;
 top: 12px;
 border-radius: 6px;
}

.post-content {
 padding-top: 25px;
}

.post-content h1 {
    color: var(--theme-clr);
    margin: 0px 0px 25px 0;
}
.blog-d-group ol {
 padding-bottom: 20px;
 list-style-type: decimal;
 padding-left: 20px;
 margin: 0px;
}

.blog-d-group ol li {
 position: relative;
 width: 100%;
 margin: 5px 0px;
 list-style-type: decimal;
}

.blog-d-group .blog-d-right input {
 border: #000 1px solid;
 font-size: 14px;
 line-height: normal !important;
 padding: 4px 10px !important;
 height: auto;
 box-shadow: none !important;
 outline: none !important;
}

.blog-d-group .blog-d-right button {
 padding: 5px 20px;
 color: #fff !important;
 background-color: #102738 !important;
 font-size: 15px !important;
 border: none !important;
}

.blog-d-group .blog-d-right h2 {
 font-size: 20px;
 margin: 30px 0px 16px 0px;
 color: #000;
}

.blog-d-group .blog-d-right ul li a {
 font-size: 15px !important;
 text-decoration: none;
 line-height: 1.5;
 font-weight: normal;
 color: #000;
}

.blog-d-group .blog-d-right .widget {
 margin-top: 0;
 padding: 0px;
}

.blog-d-group .blog-d-right .wp-block-latest-posts__list {
 margin: 0px !important;
 padding: 0px !important;
}

.blog-d-group .blog-d-right ul li:hover a {
 color: #102738;
}

.blog-d-group .blog-d-right ul li {
 padding: 5px 0 5px 14px;
 font-weight: 400;
 display: flex;
 flex-flow: row wrap;
 justify-content: space-between;
 align-items: center;
 line-height: normal;
 border-top: #f1f1f1 1px solid;
 margin: 0px;
}

.blog-d-group .blog-d-right ul li:before {
 top: 12px;
}

.search-results .search-result-count {
 margin-top: 20px;
 display: inline-block;
 width: 100%;
 text-align: center;
}

.post-navigation {
 display: flex;
 padding-top: 20px;
}

.post-navigation .prev-post, .post-navigation .next-post {
 width: 50%;
 padding: 0px 10px;
 font-weight: 500;
}
.postdate {
    position: absolute;
    bottom: 0px;
    z-index: 9;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
}
.latest-img {
    width: 100%;
    overflow: hidden;
    height: 280px;
    position: relative;
    display: block;
}

@media (max-width: 1200px) {
  :root {
    --base-size: 15px;
    --h1-size: 50px;
    --h2-size: 40px;
    --h3-size: 30px;
    --h4-size: 24px;
    --h5-size: 18px;
    --h6-size: 16px;
    
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  section {
    padding: 50px 0px;
}
.approach-grid {
    gap: 15px;
    margin-top: 40px;
}
.steps-grid {
  gap: 15px;
}
.reviews-grid {
    gap: 14px;
    margin-top: 30px;
}
.session-box {
  padding: 40px;
}
.our-story-section .our-story-cont {
    gap: 20px;
}

.approach-card h3 {
    font-size: 16px;
}

.approach-card {
    border-radius: 10px;
    padding: 14px;
}

.approach-card p {
    font-size: 13px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.hero-image img {
  border-radius: 20px;
}

.philosophy-card {
    border-radius: 16px;
    padding: 30px;
}

.tagline-text {
    font-size: 12px;
    letter-spacing: 1px;
}

blockquote {
    font-size: 30px;
}

.quote-icon svg {
    width: 40px;
    height: 40px;
    position: relative;
    top: -20px;
    right: -10px;
}

.author {
    margin-top: 20px;
}

.cta-box {
    border-radius: 16px;
    padding: 30px 20px;
}

.cta-buttons {
    gap: 10px;
}
.contact-cards-section .container {
    gap: 10px;
}

.contact-card {
    border-radius: 10px;
    padding: 15px;
    gap: 10px;
}

.card-content h3 {
    font-size: 16px;
}

.hero-contact-section {
    text-align: center;
    padding-bottom: 100px;
}

.faq-grid {
    gap: 12px;
    margin-top: 25px;
}

.faq-card {
    padding: 16px;
    border-radius: 10px;
}

.contact-form form {
    padding: 22px;
    border-radius: 12px;
}

.contact-cards-section {
    padding-bottom: 25px;
}

.whatsapp-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 10px;
}
}
@media (max-width: 992px) {

  :root {
    --base-size: 14px;
    --h1-size: 42px;
    --h2-size: 32px;
    --h3-size: 26px;
    --h4-size: 21px;
    --h5-size: 17px;
    --h6-size: 15px;
    
  }
  section {
    padding: 40px 0px;
}
  .navbar ul {
    gap: 14px;
   
}
.navbar ul li a {
  font-size: 14px;
}
.btn-primary {
    padding: 7px 18px;
    font-size: 14px;
}
.hero-wrapper {
    gap: 20px;
 
}
 

  .hero-buttons {
    justify-content: center;
  }

  

   

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

  .about-image img {
    margin: auto;
  }

  
  .hero-buttons {
    gap:6px; 
  }
  
  .cmn-btn, .cmn-bdr-btn {
    padding-left: 18px;
    padding-right: 18px;
  }
  .session-box {
    padding: 25px;
    border-radius: 20px;
  }
.session-card {
    padding: 20px;
    border-radius: 10px;
    
}
.tagline-text {
  font-size: 11px;
  letter-spacing: .1em;
}
.session-features {
    gap: 6px;
    
}
.session-features li {
    gap: 4px;
    padding: 6px;
    border-radius: 6px;
    font-size: 12px;
}
p.section-description {
    max-width: 670px;
}

p.section-description {
    max-width: 670px;
}

.approach-card {
    padding: 15px;
    border-radius: 10px;
}

.approach-grid {
    gap: 10px;
    margin-top: 20px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.approach-card h3 {
    font-size: 16px;
}

.approach-card p {
    font-size: 12px;
}

.experience-box {padding: 24px;border-radius: 16px;}

.experience-item {
    font-size: 12px;
    padding: 8px 8px 8px 20px;
    border-radius: 5px;
}

.experience-wrapper {
    gap: 20px;
}

.experience-list {
    gap: 8px;
}

.step-card {
    padding: 15px;
    border-radius: 10px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.step-icon svg {
    width: 20px;
    height: 20px;
}

.step-card h3 {
    font-size: 16px;
}

.step-card p {
    font-size: 12px;
}

.step-number {
    font-size: 12px;
    width: 28px;
    height: 28px;
    top: -10px;
    right: -10px;
}

.review-card {
    padding: 16px;
    border-radius: 12px;
}

.review-text {
    font-size: 13px;
    line-height: 1.3;
}

.stars.small {
    font-size: 15px;
}

.review-user {
    margin-top: 10px;
}

.review-user h4 {
    font-size: 16px;
}

.review-user span {
    font-size: 12px;
}

.reviews-btn-wrap {
    margin-top: 25px;
}

.contact-form form {
    padding: 20px;
    border-radius: 10px;
}

.form-grid {
    gap: 8px;
}

.form-group {
    padding-bottom: 10px;
}

.form-group input, .form-group textarea {
    font-size: 14px;
    line-height: 1.2;
    padding: 10px 12px;
}

.footer-links a, .footer-contact a {
    font-size: 12px;
}

.footer-contact li {
    font-size: 12px;
}

.footer-about p {
    font-size: 12px;
}

.footer-bottom p {
    font-size: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 13px;
}

.footer-top {
    padding-top: 30px;
    padding-bottom: 15px;
}

.footer-top .container {
    gap: 25px;
}
.footer-bottom {
    padding: 12px;
}
.video-wrapper {
    margin: 25px auto 0;
}
.experience-item::before {
    width: 4px;
    height: 4px;
    left: 12px;
    top: 13px;
}
.card-label{
  font-size: 10px;
}
.card-content h3 {
        font-size: 14px;
    }
    .contact-card .card-icon {width: 38px;height: 38px;}

.expectation-content h3 {
    font-size: 15px;
}

.expectation-content p {
    font-size: 12px;
}

.expectation-item {
    gap: 8px;
}

.whatsapp-box h4 {
    font-size: 15px;
}
}


@media (max-width: 767px) {
  :root {
    --h1-size: 38px;
    --h2-size: 30px;
    --h3-size: 25px;
    --h4-size: 20px;
    --h5-size: 17px;
    --h6-size: 15px;
    
  }
  section {
    padding: 32px 0px;
  }
  .session-box {
        padding: 18px;
        border-radius: 16px;
        overflow: inherit;
    }
  .navbar{
    display: none;
  }

  .navbar {
   
    position: absolute;
    left: 0px;
    top: 100%;
    background-color: var(--white-clr);
}
.menu-open .navbar {
     display: block;
}
.navbar ul {
    gap: 0px;
    flex-flow: row wrap;
}

.navbar ul li {
    width: 100%;
    border-top: #ccc 1px solid;
}

.navbar ul li a {
    padding: 8px 15px;
    display: inline-block;
    width: 100%;
}

  .menu-toggle {
    display: block;
    font-size: 25px;
    margin-left: 12px;
  }
 .hero-section {
  overflow: inherit;
 }
  

  .logo img {
    height: 40px;
  }


  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  
 
.hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  

  .about-features li {
    align-items: flex-start;
    text-align: left;
  }
  .about-content {
    max-width: 100%;
    
  }
  .about-wrapper {
    grid-template-columns: 1fr;
     }

     .approach-grid {
    grid-template-columns: repeat(1, 1fr);
}

.session-wrapper {
    gap: 25px;
    grid-template-columns: 1fr;
    background: transparent; 
}
.session-content p {
    margin-bottom: 20px;
}
.about-content {
    width: 100%;
}

.about-image {
    width: 100%;
}

.steps-grid {
    grid-template-columns: repeat(1, 1fr);
}
.contact-section .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.experience-wrapper {
    grid-template-columns: 1fr;
}

.reviews-grid {
    grid-template-columns: repeat(1, 1fr);
}
    .footer-top .container {
        gap: 18px;
        grid-template-columns: 1fr;
    }
    .blur-circle {
      display: none;
    }
    .session-box {
      background-color: transparent;
    }
    p {
    margin: 0 0 15px 0;
    line-height: 1.3;
}
.calendy-box  {
  top: 10px;
}
.video-card {
    border-radius: 14px;
}

.step-number {
    width: 25px;
    height: 25px;
    top: -10px;
    right: -9px;
    font-size: 11px;
}
.about-image img {
    border-radius: 10px;
}

.about-content {
    margin-top: 30px;
}
.rating-wrap {
  gap:8px;
}
.rating-wrap span {
    font-size: 13px;
}
    .cmn-btn, .cmn-bdr-btn {
        padding-left: 15px;
        padding-right: 15px;
    }
   .hero-image{
    overflow: hidden;
   }
    .hero-image img {
      box-shadow: none;
      border-radius: 20px;
    }
    .session-card h3 {
    font-size: 35px;
    margin-top: 7px;
    margin-bottom: 8px;
    line-height: 1;
}
.card-text {
    margin-bottom: 18px;
    font-size: 14px;
}

.experience-box {
    padding-left: 15px;
    padding-right: 15px;
}

.steps-grid {
    margin-top: 25px;
}
.hero-tag {
  margin-bottom: 15px;
}
.our-story-section .our-story-cont {
      grid-template-columns: 1fr;
      gap: 0px;
}
.image-leftside .about-image{
  margin-top: 30px;
}
.image-leftside    .about-content {
        margin-top: 0;
    }
.philosophy-card {
    border-radius: 10px;
    padding: 28px 20px;
}

blockquote {
    font-size: 22px;
}

.cta-badge {
    font-size: 11px;
    padding: 7px 14px 5px 14px;
    gap: 6px;
}

.cmn-btn {
    padding-top: 8px;
    padding-bottom: 8px;
}

.cmn-bdr-btn {
    padding-top: 7px;
    padding-bottom: 7px;
}

.cmn-btn svg {
    top: 1px;
}
.hero-content {
  text-align: center;
}
.contact-card .card-icon {width: 38px;height: 38px;}

.expectation-content h3 {
    font-size: 15px;
}

.expectation-content p {
    font-size: 12px;
}

.expectation-item {
    gap: 8px;
}

.whatsapp-box h4 {
    font-size: 15px;
}

.contact-cards-section .container {
    grid-template-columns: repeat(1, 1fr);
}

.expectation-section {
    width: 100%;
}

.contact-form-side {
    width: 100%;
    margin-top: 30px;
}
.faq-grid {
        gap: 8px;
        margin-top: 15px;
    }
.faq-card {
    border-radius: 6px;
    padding: 12px;
}

.faq-card h4 {
    font-size: 16px;
}

.faq-card p {
    font-size: 12px;
}
.latest-f-axia-item {
  width: 100%;
}
.inner-banner-scn {
  min-height: 160px;
}
.inner-banner-scn .bnr-cont-group h2 {
  font-size: 26px;
}
.inner-banner-scn .bnr-cont-group h2:before {
  height: 2px;
}
.blog-d-group .blog-d-left {
  width: 100%;
}
}


@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 8px 14px;
  }
}