*{
margin:0;
padding:0;
box-sizing:border-box;
 font-family: Arial, sans-serif;
scroll-behavior: smooth;
}

body{
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index: 9999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
z-index: 9999;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:500;
}

.hero{
/* background:linear-gradient(120deg,#ff7a18,#ffb347); */
color:white;
padding:120px 0;
text-align:center;
 background: url('banner.webp') no-repeat center center/cover;
 height: 500px;
}
.hero-content{
   
}
.hero h1{
font-size:42px;
margin-bottom:20px;
}

.btn{
background:rgb(49, 134, 22);
color:#fff;
padding:12px 25px;
text-decoration:none;
border-radius:30px;
font-weight:600;
}

.section{
padding:40px 0;
}

.light{
background:#f7f7f7;
}

.grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.center{
text-align:center;
margin-bottom:40px;
}

.benefit-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.benefit-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
text-align:center;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.process-card{
text-align:center;
padding:20px;
border:1px solid #eee;
border-radius:10px;
}

.process-card span{
display:inline-block;
width:40px;
height:40px;
background:#ff7a18;
color:white;
border-radius:50%;
line-height:40px;
margin-bottom:10px;
}

.contact{
/* background:#ff7a18; */
color:white;
}

.contact-box{
/* max-width:600px; */
text-align:center;
display: flex;
/* margin: 0px 20px; */
    align-items: center;
    gap: 37px;
    border-radius: 20px;
    background: #f0f0f5;
    box-shadow: 0px 0px 0.384px 0.384px rgba(0, 0, 0, 0.07), 0px 16.121px 16.121px 0px rgba(0, 0, 0, 0.04), 0px 4.86px 4.86px 0px rgba(0, 0, 0, 0.03), 0px 2.019px 2.019px 0px rgba(0, 0, 0, 0.02), 0px 0.73px 0.73px 0px rgba(0, 0, 0, 0.01);
}


.contact-box .left
 {
    flex: 1;
    width: 50%;
    height: 550px;
}

.contact-box .right {
    flex: 1;
    width: 50%;
    display: grid;
    align-items: center;
    padding-right: 60px;
}

.contact-box .right h2{
    color: rgba(2, 6, 12, 0.92);
    
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.4px;
    opacity: 0.9;
}
form{
display:flex;
flex-direction:column;
/* gap:15px; */
/* margin-top:25px; */
}

input{
padding:12px;
border:none;
border-radius:5px;
}

button{
background:black;
color:white;
padding:12px;
border:none;
border-radius:5px;
cursor:pointer;
}

footer{
text-align:center;
padding:20px;
background:#111;
color:#fff;
}
footer a{
color: #ff7a18;
text-decoration: none;

}
@media(max-width:768px){

.grid{
grid-template-columns:1fr;
}

.benefit-grid{
grid-template-columns:1fr 1fr;
}

.process-grid{
grid-template-columns:1fr 1fr;
}

.hero h1{
font-size:30px;
}

}

.hero-slider{
position:relative;
height:85vh;
overflow:hidden;
}

.slides{
position:relative;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity .7s ease;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
/*object-fit:cover;*/
}

.slide-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
background:rgba(0,0,0,0.4);
padding:40px;
border-radius:10px;
}
.slide-content p{
    margin: 10px 0px;
}

.slide-content h1{
font-size:48px;
margin-bottom:15px;
}

.prev,.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:white;
border:none;
font-size:25px;
padding:10px 15px;
cursor:pointer;
}

.prev{
left:20px;
}

.next{
right:20px;
}

.dots{
position:absolute;
bottom:20px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
}

.dots span{
width:12px;
height:12px;
background:white;
opacity:.5;
border-radius:50%;
cursor:pointer;
}

.dots span.active{
opacity:1;
}

@media(max-width:768px){

.slide-content h1{
font-size:20px;
}
.slide-content p{
    font-size: 15px;
}
.btn {
    background: white;
    color: #ff7a18;
    padding: 5px 25px;
}

.section-title{
 font-size: 37px !important;
 }
 .partner-section .subtitle{
    font-size: 20px !important;
 }
.hero-slider{
height:50vh;
}

}

.partner-section {
    text-align: center;
    margin-bottom: 50px;
}
.partner-section .subtitle {
    color: rgba(2, 6, 12, 0.6);
    text-align: center;
    /* font-feature-settings: "clig" off, "liga" off; */
    /* font-family: Gilroy_Medium; */
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.304px;
    margin: 10px 0px;
}
.partner-section .cards {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}
.partner-section .cards .card1 {
    display: flex;
    width: 312px;
    padding: 48px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    display: flex;
    border-radius: 16px;
    border: 1px solid #f0e1be;
    background: #fff0cd;
    box-shadow: 0px 0px 0.384px 0.384px rgba(0, 0, 0, 0.07), 0px 16.121px 16.121px 0px rgba(0, 0, 0, 0.04), 0px 4.86px 4.86px 0px rgba(0, 0, 0, 0.03), 0px 2.019px 2.019px 0px rgba(0, 0, 0, 0.02), 0px 0.73px 0.73px 0px rgba(0, 0, 0, 0.01);
    margin-right: 28px;
}
.partner-section .cards .title {
    color: #232323;
    text-align: center;
    
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px;
    letter-spacing: -0.4px;
    opacity: 0.9;
}
.partner-section .cards .description {
    color: rgba(59, 59, 59, 0.6);
    text-align: center;
   
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}
.partner-section .cards .card2 {
    width: 312px;
    display: flex;
    padding: 48px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    border-radius: 16px;
    border: 1px solid #caeadf;
    background: #d0f5e5;
    box-shadow: 0px 0px 0.384px 0.384px rgba(0, 0, 0, 0.07), 0px 16.121px 16.121px 0px rgba(0, 0, 0, 0.04), 0px 4.86px 4.86px 0px rgba(0, 0, 0, 0.03), 0px 2.019px 2.019px 0px rgba(0, 0, 0, 0.02), 0px 0.73px 0.73px 0px rgba(0, 0, 0, 0.01);
    margin-right: 28px;
}
.partner-section .cards .card3 {
    width: 312px;
    display: flex;
    padding: 49px 20px;
    flex-direction: column;
    /* align-items: flex-start; */
    justify-content: center;
    gap: 28px;
    border-radius: 16px;
    border: 1px solid #e7c7c2;
    background: #ffe0dc;
    box-shadow: 0px 0px 0.384px 0.384px rgba(0, 0, 0, 0.07), 0px 16.121px 16.121px 0px rgba(0, 0, 0, 0.04), 0px 4.86px 4.86px 0px rgba(0, 0, 0, 0.03), 0px 2.019px 2.019px 0px rgba(0, 0, 0, 0.02), 0px 0.73px 0.73px 0px rgba(0, 0, 0, 0.01);
}
 .section-title {
    text-align: center;
   
    font-size: 72px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -0.4px;
    opacity: 0.9;
    background: linear-gradient(180deg, rgba(2, 6, 12, 0.85) 85.23%, rgba(255, 255, 255, 0.85) 109.66%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.button-container {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}
.button-container .button {
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    align-self: stretch;
    border-radius: 58px;
    background: rgb(49, 134, 22);
    border: 0;
    color: #fff;
    z-index: 100;
   
}
#infographics {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 120px;
}
#infographics .left {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    align-items: center;
    background: #f0f0f5;
    padding: 40px;
}
#infographics .text {
    color: rgba(2, 6, 12, 0.75);
    text-align: center;

    font-size: 27px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.487px;
    max-width: 355px;
}
.button-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
.button-container .button {
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    align-self: stretch;
    border-radius: 58px;
    background: rgb(49, 134, 22);
    border: 0;
    color: #fff;
    z-index: 100;
    
}
#infographics .stroke {
    display: none;
}
#infographics .middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #f0f0f5;
    padding: 40px;
}
#infographics .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #f0f0f5;
    padding: 40px;
}
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column-reverse;
        margin: 0px;
        gap: 10px;
        border-radius: 0px;
        background: #fff;
        box-shadow: none;
    }
}
@media (max-width: 768px) {
    .contact-box .left, .contact-box .right {
        width: 100%;
        padding: 0;
    }
        .partner-section .cards {
        margin: 0;
        align-items: center;
        flex-direction: column;
    }
    .partner-section .cards .card1 {
        margin: 0 0 20px 0;
    }
    .partner-section .cards .card2{
        margin: 0 0 20px 0;
    }
    .partner-section .cards .card3{
        margin: 0 0 20px 0;
    }
        #infographics {
        flex-direction: column;
        margin: 0px;
        gap: 0px;
    }
        #infographics .left {
        margin: 0;
        background: #fff;
    }
        #infographics .text-mobile {
        display: block;
    }
        #infographics .text-mobile .title {
        color: #232323;
        text-align: center;
       
        font-size: 20px;
        font-style: normal;
        font-weight: 800;
        line-height: 100%;
        letter-spacing: -0.304px;
        opacity: 0.9;
        padding-bottom: 10px;
    }
        #infographics .text-mobile .subtitle {
        color: rgb(49, 134, 22);
        text-align: center;
       
        font-size: 32px;
        font-style: normal;
        font-weight: 800;
        line-height: 120%;
        letter-spacing: -0.487px;
        opacity: 0.9;
        padding-bottom: 20px;
    }
        #infographics .middle {
        margin: 0;
        background: #fff;
    }
        #infographics .right {
        margin: 0;
        background: #fff;
    }
}

.franchise-form{
max-width:800px;
margin:auto;
padding:35px;
background:#ffffff;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
font-family:Arial, sans-serif;
}

.franchise-form h2{
text-align:center;
margin-bottom:25px;
font-weight:600;
font-size: 30px !important;
}

.franchise-form label{
font-weight:600;
margin-bottom:5px;
display:block;
}

.franchise-form input,
.franchise-form select{
width:100%;
padding:12px 14px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
transition:0.3s;
}

.franchise-form input:focus,
.franchise-form select:focus{
border-color:#ff6b00;
outline:none;
box-shadow:0 0 5px rgba(255,107,0,0.3);
}

.form-row{
display:flex;
gap:20px;
/* margin-bottom:20px; */
flex-wrap:wrap;
}

.form-group{
flex:1;
min-width:220px;
}

.submit-btn{
margin-top:15px;
text-align:center;
}

.submit-btn button{
background:rgb(49, 134, 22);
color:#fff;
border:none;
padding:14px 35px;
font-size:16px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.submit-btn button:hover{
background:#ff6b00;
}

@media(max-width:768px){

.form-row{
flex-direction:column;
margin-top: 15px;
}
.franchise-form label {
  
    display: none;
}
.prev, .next {
    display: none;

}
.slide-content {
    width: 80%;
}

}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
font-weight:500;
color:#333;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* Mobile */

@media(max-width:768px){

nav{
position:absolute;
top:80px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
align-items:center;
gap:20px;
padding:25px 0;
display:none;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

}

.qc-benefits {
    padding: 65px 0;
    background: #fafbfa;
}
.qc-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}
.qc-center-title {
    text-align: center;
    margin-bottom: 35px;
}
.qc-center-title h2 {
    font-size: 32px;
    font-weight: 800;
}
.qc-center-line {
    width: 55px;
    height: 4px;
    background: yellow;
    border-radius: 5px;
    margin: 10px auto 0;
}
.qc-benefit-grid
 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.qc-benefit-card:nth-child(1) {
    background: #edf9ec;
}

.qc-benefit-card {
    min-height: 200px;
    border-radius: 12px;
    padding: 27px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, .03);
}
.qc-benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    font-size: 29px;
    margin-bottom: 13px;
}


/* =========================================================
       BENEFITS
       ========================================================= */

    .qc-benefits {
      padding: 65px 0;
      background: #fafbfa;
    }

    .qc-center-title {
      text-align: center;
      margin-bottom: 35px;
    }

    .qc-center-title h2 {
      font-size: 32px;
      font-weight: 800;
    }

    .qc-center-line {
      width: 55px;
      height: 4px;

      background: yellow;

      border-radius: 5px;

      margin: 10px auto 0;
    }

    .qc-benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .qc-benefit-card {
      min-height: 200px;

      border-radius: 12px;

      padding: 27px 22px;

      text-align: center;

      display: flex;
      flex-direction: column;
      align-items: center;

      border: 1px solid rgba(0,0,0,.03);
    }

    .qc-benefit-card:nth-child(1) {
      background: #edf9ec;
    }

    .qc-benefit-card:nth-child(2) {
      background: #fff8dc;
    }

    .qc-benefit-card:nth-child(3) {
      background: #e9f7ff;
    }

    .qc-benefit-card:nth-child(4) {
      background: #fff0f1;
    }

    .qc-benefit-icon {
      width: 58px;
      height: 58px;

      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: white;

      font-size: 29px;

      margin-bottom: 13px;
    }

    .qc-benefit-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .qc-benefit-card p {
      font-size: 14px;
      color: #5d6570;
      line-height: 1.5;
    }

    /* =========================================================
       PROCESS
       ========================================================= */

    .qc-process {
      padding: 65px 0;
    }

    .qc-process-grid {
      display: grid;
      grid-template-columns: repeat(7, auto);

      align-items: center;
      justify-content: space-between;

      gap: 12px;
    }

    .qc-process-card {
      width: 210px;
      text-align: center;
    }

    .qc-process-icon {
      width: 62px;
      height: 62px;

      margin: 0 auto 13px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 50%;

      background: green;
      color: white;

      font-size: 27px;
    }

    .qc-process-card:nth-of-type(3) .qc-process-icon {
      background: yellow;
      color: #111;
    }

    .qc-process-card h3 {
      font-size: 17px;
      margin-bottom: 4px;
    }

    .qc-process-card p {
      color: #697180;
      font-size: 13px;
      line-height: 1.5;
    }

    .qc-arrow {
      color: #a0a6af;
      font-size: 25px;
    }

    /* =========================================================
       WHO CAN APPLY
       ========================================================= */

    .qc-applicants {
      padding: 5px 0 60px;
    }

    .qc-applicant-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .qc-applicant-card {
      padding: 22px;

      border: 1px solid ;
      border-radius: 10px;

      display: flex;
      align-items: center;
      gap: 20px;

      background: white;
    }

    .qc-applicant-icon {
      width: 55px;
      height: 55px;

      flex: 0 0 55px;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 31px;

      color: green;
    }

    .qc-applicant-card h3 {
      font-size: 16px;
      margin-bottom: 4px;
    }

    .qc-applicant-card p {
      color: #697180;
      font-size: 13px;
    }

    /* =========================================================
       CTA
       ========================================================= */

    .qc-bottom-cta {
      padding-bottom: 55px;
    }

    .qc-cta-box {
      min-height: 130px;

      padding: 25px 45px;

      border-radius: 12px;

      background:
        radial-gradient(circle at 10% 50%, rgba(255,255,255,.12), transparent 20%),
        linear-gradient(110deg, #087323, #07581e);

      color: white;

      display: flex;
      align-items: center;
      justify-content: space-between;

      gap: 30px;
    }

    .qc-cta-left {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .qc-cta-icon {
      font-size: 65px;
    }

    .qc-cta-box h2 {
      font-size: 25px;
      line-height: 1.2;
    }

    .qc-cta-box h2 span {
      color: yellow;
    }

    .qc-cta-box p {
      margin-top: 5px;
      font-size: 14px;
      opacity: .9;
    }

    .qc-yellow-btn {
      flex-shrink: 0;

      padding: 14px 32px;

      border-radius: 30px;

      background: yellow;
      color: #172033;

      font-weight: 800;
    }

    /* =========================================================
       FOOTER
       ========================================================= */

    .qc-footer {
      background: #101b2b;
      color: white;

      padding: 50px 0 20px;
    }

    .qc-footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
    }

    .qc-footer-logo strong {
      font-size: 27px;
    }

    .qc-footer-logo strong span {
      color: #5ad16c;
    }

    .qc-footer-description {
      max-width: 310px;

      margin-top: 13px;

      color: #c0c7d2;

      font-size: 14px;
      line-height: 1.7;
    }

    .qc-footer h4 {
      font-size: 15px;
      margin-bottom: 15px;
    }

    .qc-footer-links {
      display: grid;
      gap: 9px;
    }

    .qc-footer-links a {
      color: #c7ced8;
      font-size: 13px;
    }

    .qc-footer-links a:hover {
      color: white;
    }

    .qc-copyright {
      margin-top: 40px;
      padding-top: 20px;

      border-top: 1px solid rgba(255,255,255,.12);

      display: flex;
      justify-content: space-between;

      color: #9ea7b4;

      font-size: 12px;
    }

    /* =========================================================
       TABLET
       ========================================================= */

    @media (max-width: 1000px) {

      .qc-menu {
        display: none;
      }

      .qc-hero-grid {
        grid-template-columns: 1fr;
      }

      .qc-hero-content {
        padding: 60px 0;
      }

      .qc-hero-image {
        min-height: 450px;
      }

      .qc-form-box {
        grid-template-columns: 1fr;
      }

      .qc-form-side {
        padding-top: 10px;
      }

      .qc-about-grid {
        grid-template-columns: 1fr;
      }

      .qc-benefit-grid {
        grid-template-columns: 1fr 1fr;
      }

      .qc-process-grid {
        grid-template-columns: 1fr 1fr;
      }

      .qc-arrow {
        display: none;
      }

      .qc-process-card {
        width: 100%;
      }

      .qc-applicant-grid {
        grid-template-columns: 1fr;
      }

    }

    /* =========================================================
       MOBILE
       ========================================================= */

    @media (max-width: 600px) {

      .qc-container {
        width: min(100% - 28px, 1180px);
      }

      .qc-navbar {
        min-height: 68px;
      }

      .qc-logo-icon {
        width: 36px;
        font-size: 24px;
      }

      .qc-logo-text strong {
        font-size: 20px;
      }

      .qc-logo-text small {
        font-size: 9px;
      }

      .qc-header-btn {
        min-height: 39px;
        padding: 0 15px;
        font-size: 12px;
      }

      /* Hero */

      .qc-hero {
        min-height: auto;
      }

      .qc-hero-content {
        padding: 45px 0 40px;
      }

      .qc-hero h1 {
        font-size: 42px;
        letter-spacing: -1.3px;
      }

      .qc-hero-description {
        font-size: 17px;
        margin-top: 18px;
      }

      .qc-hero-points {
        gap: 10px;
        justify-content: space-between;
      }

      .qc-hero-point {
        width: 33.333%;
        font-size: 12px;
      }

      .qc-hero-point-icon {
        font-size: 25px;
      }

      .qc-main-btn {
        width: 100%;
        justify-content: center;

        font-size: 17px;
        margin-top: 28px;
      }

      .qc-hero-image {
        min-height: 330px;
      }

      /* Form */

      .qc-form-section {
        padding: 20px 0 50px;
      }

      .qc-form-box {
        padding: 24px 18px;
        gap: 30px;
      }

      .qc-form-title {
        font-size: 25px;
      }

      .qc-form-subtitle {
        font-size: 14px;
      }

      .qc-form-grid {
        grid-template-columns: 1fr;
      }

      .qc-full {
        grid-column: auto;
      }

      .qc-input {
        height: 54px;
        font-size: 15px;
      }

      .qc-submit {
        width: 100%;
        min-width: 0;
      }

      /* About */

      .qc-about {
        padding: 20px 0 55px;
      }

      .qc-about-grid {
        gap: 30px;
      }

      .qc-section-title {
        font-size: 27px;
      }

      .qc-about p {
        font-size: 16px;
      }

      .qc-about-image {
        min-height: 260px;
      }

      /* Benefits */

      .qc-benefits {
        padding: 50px 0;
      }

      .qc-center-title h2 {
        font-size: 28px;
      }

      .qc-benefit-grid {
        grid-template-columns: 1fr;
      }

      .qc-benefit-card {
        min-height: auto;
      }

      /* Process */

      .qc-process {
        padding: 50px 0;
      }

      .qc-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      /* Applicants */

      .qc-applicant-card {
        padding: 18px;
      }

      /* CTA */

      .qc-cta-box {
        padding: 30px 22px;
        flex-direction: column;
        text-align: center;
      }

      .qc-cta-left {
        flex-direction: column;
      }

      .qc-yellow-btn {
        width: 100%;
        text-align: center;
      }
      
      
