@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;800&display=swap");

/* ---------- ROOT COLORS (LOGO BASED) ---------- */
:root {
    --edu-blue-dark: #0b2c5d;
    --edu-blue: #123d7a;
    --edu-blue-light: #1e4fa1;

    --edu-orange-dark: #ff6a00;
    --edu-orange: #ff7a18;
    --edu-orange-light: #ff9f45;

    --edu-white: #ffffff;
    --edu-light-bg: #f6f8fc;
    --edu-dark-text: #1f2937;
    --edu-muted-text: #6b7280;
}

/* ---------- field_input---------- */
.field_input label,
.radio_label{
    font-size:12px;
    margin-bottom:5px;
    color:var( --edu-blue);
}
.field_input input,
.field_input select,
.guardian_Input{
    border: 0px solid #e5e7eb !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
    transition: 0.25s ease;
    background: #eaf2fa !important;
    border-radius:10px !important;
}

.field_input .form-select {
    appearance: auto;              
    -webkit-appearance: menulist !important;  
    -moz-appearance: menulist !important;  
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 38px;   

    background-image: none !important;
}
.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var( --edu-blue);
    background: transparent;
    color: var( --edu-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cursor{
    cursor:pointer;
}

.icon-btn:hover {
    background: var(--edu-orange-dark);
    border: 1px solid var(--edu-orange-dark);
    color: #fff;
    /*transform: scale(1.1);*/
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}
.child-profile{
    background:var(--edu-orange);
    border-radius: 10px !important;
}

.square-radio .form-check-input{
  border-radius:4px;   
}


.language_card{
    height:130px;
    overflow-y:auto;
}
/* ---------- GLOBAL RESET ---------- */
body {
    font-family: 'Lexend', sans-serif;
    background: #f7f8ff;
    color: var(--edu-dark-text);
    overflow-x:hidden;
}

a {
    text-decoration: none;
}

/* ---------- TEXT STYLES ---------- */
.edu-heading {
    color: var(--edu-blue-dark);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.edu-heading span {
    color: var(--edu-orange);
}

.text-blue{
    color: var(--edu-blue-dark);
}

.text-orange{
    color: var(--edu-orange-dark);
}

.edu-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--edu-muted-text);
}

.small-text{
    font-size:14px;
}

.form-select{
    font-size:12px !important;
}

.field{
    position:relative;
    margin-bottom:10px;
}
.field input{
    width:100%;
    padding:10px 14px;
    border-radius:14px;
    font-size:12px;
    border:1.5px solid #dbe1ff;
}
.field label{
    position:absolute;left:14px;
    top:-5px;
    background:#fff;
    padding:0 6px;
    font-size:12px;
    color:var(--muted);
}

/* ---------- BUTTONS ---------- */
.explore-btn {
    white-space: nowrap;
    background: linear-gradient(135deg, var(--edu-orange-dark), var(--edu-orange-light));
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(255,122,24,0.35);
}

.btn-edu {
    background: linear-gradient(135deg, var(--edu-orange-dark), var(--edu-orange-light));
    color: #fff;
    border: 2px solid #ff6a00;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(255,122,24,0.35);
}
.explore-btn:hover {
    background: linear-gradient(135deg, var(--edu-blue-dark), var(--edu-blue-light));
    box-shadow: 0 12px 30px rgba(18,61,122,0.45);
    transform: translateY(-2px);
    border: 2px solid #0b2c5d;
    color:#fff;
}

.btn-edu:hover {
    background: linear-gradient(135deg, var(--edu-blue-dark), var(--edu-blue-light));
    box-shadow: 0 12px 30px rgba(18,61,122,0.45);
    transform: translateY(-2px);
    color:#fff;
}

.btn-edu-blue {
    background: linear-gradient(135deg, var(--edu-blue-dark), var(--edu-blue-light));
    color: #fff;
    border: 2px solid #0b2c5d;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(18,61,122,0.45);
}

.btn-edu-blue:hover {
    background: linear-gradient(135deg, var(--edu-orange-dark), var(--edu-orange-light));
    box-shadow: 0 8px 20px rgba(255,122,24,0.35);
    transform: translateY(-2px);
    color:#fff;
    border: 2px solid #ff6a00;
}

input[type="checkbox"],
.request-role-subject {
    font-size:12px;
}
input[type="radio"]{
   /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
}


.btn-outline-orange{
    border:1px solid var(--edu-orange);
    color: var(--edu-orange)
}
.btn-outline-orange:hover{
    border:1px solid var(--edu-orange);
    background: var(--edu-orange);
    color:#fff;
}

.btn-outline-orange:hover p{
    color:#fff !important;
}

.btn-outline-blue{
    border:1px solid var(--edu-blue);
    color:var(--edu-blue);
}
.btn-outline-blue:hover{
    border:1px solid var(--edu-blue);
    background: var(--edu-blue);
    color:#fff;
}

.btn-outline-blue:hover p{
    color:#fff !important;
}


.text-small{
   font-size:12px !important;
}


.btn-edu-outline, .demo-btn {
    background: transparent;
    border: 2px solid var(--edu-blue);
    color: var(--edu-blue);
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-edu-outline:hover,
.demo-btn:hover {
    background: var(--edu-blue);
    color: #fff;
}

/* ---------- NAVBAR ---------- */
.edu-navbar {
    background: #fff;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.nav_btn{
    border: 2px solid #000;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 14px;
}

.text-edu-blue {
    color: var(--edu-blue-dark);
}
.text-edu-orange { 
    color: var(--edu-orange); 
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 10px;               
    height: 10px; 
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
    background: var(--edu-light-bg); 
}

/* Scrollbar thumb (moving part) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--edu-blue),var(--edu-blue-dark));
    border-radius: 20px;
    border: 2px solid var(--edu-light-bg); /* spacing effect */
}

/* Hover effect on scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,var(--edu-orange),var(--edu-orange-dark));
}

::-webkit-scrollbar-button {
    display: none;
}

.section-heading{
    position: relative;
    padding: 12px 0;
    color:var(--edu-blue-dark);
    font-size: 40px;
    font-weight: 600 !important;
}

.heading-blue{
     color:var(--edu-blue-dark);
}

small{
    font-size:12px;
}

/* Bottom line */
.section-heading::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--edu-orange);
    border-radius: 10px;
}

/*  ---Hero Section  Css---  */
.hero{
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    padding-bottom:50px;
    min-height:100vh;
    display:flex;
    align-items:center;
    color:var(--edu-white);
    /*background:
    radial-gradient(800px 400px at 10% 20%, rgba(255,159,69,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(30,79,161,.35), transparent 60%),
    linear-gradient(135deg,
      var(--edu-blue-dark),
      var(--edu-blue),
      var(--edu-blue-light)
    );*/
    background: linear-gradient(
        120deg,
        var(--edu-blue-dark),
        var(--edu-blue),
        var(--edu-blue-light),
        var(--edu-blue)
    );
    background-size: 300% 300%;
    animation: eduGradientMove 12s ease-in-out infinite;
    overflow: hidden;
}
@keyframes eduGradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: floatGlow 14s infinite alternate ease-in-out;
}



/* Top-left orange glow */
.hero::before {
  background: var(--edu-orange-light);
  top: -200px;
  left: -200px;
}

/* Bottom-right orange glow */
.hero::after {
  background: var(--edu-orange-dark);
  bottom: -200px;
  right: -200px;
  animation-delay: 6s;
}
@keyframes floatGlow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(120px, 80px);
  }
}

.hero-left::after{
  content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 9;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    background: var(--edu-orange-dark);
    bottom: -60px;
    left: 228px;
    animation: glowBlink 4s ease-in-out infinite;
}
@keyframes glowBlink {
  0% {
    transform: scale(0.9);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.45;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.2;
  }
}



.hero-badge {
   background:var(--edu-orange) ;
    background-size: 600% 600%;
    animation: badgeBlinkBg 2s infinite;

    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;

    display: inline-flex;
    align-items: center;
}


@keyframes badgeBlinkBg {
    0% {
        background: var(--edu-orange);
    }
    33% {
        background: #ffb347;
    }
    66% {
        background: #ff8c2b;
    }
    100% {
        background: var(--edu-orange);
    }
}
/* Hover */
.hero-badge:hover {
    transform: translateY(-2px);
}

.hero h1{
  font-size:52px;
  font-weight:800;
  line-height:1.2;
}

.hero h1 span{
  color:var(--edu-orange);
}

/* Buttons */
.btn-orange{
  background:linear-gradient(135deg,var(--edu-orange-dark),var(--edu-orange));
  color:#fff;
  border-radius:10px;
  padding:5px 28px;
  font-size:14px;
  font-weight:600;
}

.btn-orange:hover{
  box-shadow:0 12px 30px rgba(255,122,24,.4);
}

/* Stats */
.stats{
    background:rgba(255,255,255,.12);
    border-radius:16px;
    padding:18px;
    text-align:center;
    border: 3px solid #888893;
    transition: 0.3s;
    position: relative;
    z-index: 999;
}

.stats:hover{
    transform: scale(1.07);
    border: 3px solid var(--edu-orange-dark);
}

.stats h4{
  color:var(--edu-orange-dark);
  font-weight:700;
  margin-bottom:0px;
}

.hero_btn .btn{
        transition: 0.3s;
        border-radius:10px !important;
        padding: 5px 28px !important;
        font-size:14px;
        font-weight:500;
}

.hero_btn .btn:hover{
           transform: scale(1.07);
}

/* Image card */
.hero-img{
    position:relative;
    border: 5px solid #888893;
    border-radius: 28px;
    animation: shadowBlink 3.5s ease-in-out infinite;
}




/* Size + Shadow animation */
@keyframes shadowBlink {
     0% {
        box-shadow: 0 0 0 rgba(255, 106, 0, 0);
    }
    33% {
        box-shadow: 0 0 10px 5px rgba(255, 159, 69, 0.3);  /* light & spread */
    }
    66% {
        box-shadow: 0 0 20px 10px rgba(255, 122, 24, 0.5);  /* main & bigger */
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 106, 0, 0);
    }
}

.hero-img img{
  width:100%;
  border-radius:22px;
}

.rating{
    color:#000;
    position:absolute;
    top:-20px;
    right:-20px;
    background:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-weight:600;
}

.rating .star_icon{
     color:#ff6a00;
}

.support{
    position:absolute;
    bottom:-25px;
    left:-25px;
    background:var(--edu-orange);
    padding:10px 14px;
    border-radius:14px;
    font-weight:600;
}

/* Backdrop */
.auth-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    /*backdrop-filter: blur(6px);*/
    z-index: 998;
    display: none;
}
/*  ---Hero Section  Css-- */

/*  ---Our Services  Css--- */
.services-section {
    background: #fff;
}

.service-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    /*width: 250px;*/
    /*height: 100%;*/
    border: 2px solid transparent;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    overflow: hidden;
}

.service-card:hover{
    border-color: #ff8c2b !important;
    transform: translateY(-5px);
}

.service-card:hover .card-bg-shape{
    background:#ff8c2b52;
    top: -50px;
    right: -50px;
}

.card-bg-shape {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: rgba(255,140,43,0.08);
    border-radius: 50%;
    transition: 0.35s ease;
}

.service-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.icon.orange {
    background: #ff8c2b;
    color: #fff;
}

.icon.blue {
    background: #122953;
    color: #fff;
}

.service-card:hover .icon {
    transform: rotate(-8deg) translateY(-4px);
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #6b7280;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    font-size: 14px;
    padding-left: 0px;
    position: relative;
    margin-bottom: 6px;
    color:#6c757d;
}

.service-card ul li i {
    left: 0;
    color: #ff8c2b;
    padding-right: 5px;
}

/* Link */
.service-card a {
    display: inline-block;
    margin-top: 10px;
    color: #ff8c2b !important;
    font-weight: 500;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline !important;
}
/* ---WHO CAN JOIN SECTION --- */
.who-join-section {
    background: #ffffff;
}

/* Badge */
.who-badge {
    background: rgba(255, 140, 43, 0.1);
    color: #ff8c2b;
    border-radius: 20px;
    padding: 10px 14px;
    font-size: 12px;
    border: 2px solid #f98743;
}

/* Card */
.who-card {
    padding: 10px 20px;
    transition: all 0.5s ease;
    overflow: hidden;
}

.who-card:hover{
    transform: translateY(-5px);
}

.who-card:hover h5{
     color: #ff8c2b;
}

.who-card:hover .who-icon i{
    transform: rotate(8deg) translateY(4px);
}

/* Icon circle */
.who-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

/* Colors */
.who-icon.blue {
    border-color: #122953;
    color: #122953;
}

.who-icon.orange {
    border-color: #ff8c2b;
    color: #ff8c2b;
}

/* Text */
.who-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.who-card p {
    font-size: 14px;
    color: #6b7280;
    max-width: 260px;
    margin: auto;
}

/* ---WHY CHOOSE US--- */
.why-choose-section {
    background: #f9fbff;
}

.why-choose-section p {
    font-size:14px;
}

/* Badge */
.why-badge {
    color: #ff8c2b;
    font-size: 12px;
    font-weight:500;
}

/* Image card */
.why-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Feature item */
.why-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 12px;
}

.why-feature h6 {
    margin-bottom: 2px;
    font-weight: 600;
}

.why-feature small {
    color: #6b7280;
}

/* Icons */
.icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.icon.orange {
    background: #ff8c2b;
}

.icon.blue {
    background: #122953;
}

/* Button */
.btn-orange {
    background: #ff8c2b;
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
}

.btn-orange:hover {
    background: #e6761e;
    color: #fff;
}

/*  ---TESTIMONIALS---  */
.testimonial-section {
    background: #ffffff;
}

/* Top Tag */
.testimonial-tag {
    font-size: 12px;
    letter-spacing: 1px;
    color: #ff8c2b;
    font-weight: 600;
}

/* Card */
.testimonial-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    text-align: left;
    background: #f9fbff;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
     border-color: #ff8c2b;
}

/* Stars */
.stars {
    color: #ff8c2b;
    font-size: 16px;
    margin-bottom: 12px;
}

/* Text */
.testimonial-card p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 20px;
}

/* User */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar */
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.avatar.dark {
    background: #122953;
}

.avatar.orange {
    background: #ff8c2b;
}

.user h6 {
    margin-bottom: 0;
    font-size: 14px;
}

.user small {
    color: #6b7280;
}

/* READY TO TRANSFORM – CTA SECTION */

.cta-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #0f2a52 0%, #1c3f73 100%);
    color: #fff;
}

.cta-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-subtitle {
    margin-top: 12px;
    font-size: 14px;
    color: #c7d2fe;
}

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

.hobby-checkbox{
    font-size:12px;
}

/* Call Button */
.btn-call {
    background: #ff7a0d;
    color: #fff;
    padding: 5px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

.btn-call:hover {
    background: #ff8c2b;
    color: #fff;
}

/* Email Button */
.btn-email {
    background: #ffffff;
    color: #0f2a52;
    padding: 5px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

.btn-email:hover {
    background: #f3f4f6;
    color: #0f2a52;
}

.cta-time {
    margin-top: 18px;
    font-size: 12px;
    color: #a5b4fc;
}

/***                --fotter-section--          ***/
.footer-section {
    background: linear-gradient(180deg, #0f2a52 0%, #122f5f 100%);
    color: #cbd5e1;
    padding: 60px 0 20px;
    position: relative;
}

.footer_logo{
    width: 150px;
    background: #fff;
    padding: 0px;
}



.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
    color:#99a1af;
}

.footer-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #99a1af;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact li:hover {
    color: #ff8c2b;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color:#99a1af;
    gap: 8px;
}

.footer-contact i {
    color: #ff8c2b;
}

.footer-divider {
    border-color: #ffffffa1;
    margin: 30px 0 15px;
}

.footer-bottom {
    font-size: 12px;
    color: #94a3b8;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #ff8c2b;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    animation: floatSmooth 2s linear infinite;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 999;
}

.floating-call:hover {
    background: #ff7a0d;
    color: #fff;
}
/* profile modal accordion design */
.count-badge{
    background: #1f3fae;
    color: #fff;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 10px;
    right: 50px;
    position: absolute;
}
.accordion-button{
    background: #f1f7ff;
    font-weight: 500;
    font-size: 12px;
    padding: 10px;
}
.select-all-sub,
.select-all-hobby,
.select-all-child-hobby,
.select-all-support-cat{
    background: var(--edu-orange);
    color: #fff;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 10px;
    border:none;
}

.select-all-sub:hover,
.select-all-hobby:hover,
.select-all-child-hobby:hover,
.select-all-support-cat:hover{
    background: var(--edu-blue);
    color:#fff;
}

.clear-all-sub, 
.clear-all-hobby,
.clear-all-child-hobby,
.clear-all-support-cat{
    background: var(--edu-blue);
    color: #fff;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 10px;
    border:none;
}

.clear-all-sub:hover,
.clear-all-hobby:hover,
.clear-all-child-hobby:hover,
.clear-all-support-cat:hover{
    background: var(--edu-orange);
    color:#fff;
}

/* Smooth top-bottom bounce */
/* Continuous smooth wave */
@keyframes floatSmooth {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-10px); }
    50%  { transform: translateY(0); }
    75%  { transform: translateY(10px); }
    100% { transform: translateY(0); }
}
/* Responsive */


@media (max-width: 991px) {
    .why-image {
        text-align: center;
    }
}

@media (max-width: 768px) {


    .who-icon {
        width: 100px;
        height: 100px;
        font-size: 34px;
    }

    .cta-title {
        font-size: 26px;
    }
 
}



