/*Importing Goggle Fonts */

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:'Lato', sans-serif;
    

}
:root{

    
     /*Colors */
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
     --light-yellow:#F79C00;
    --light-green:#00784a;
   --light-blue-two: #004586;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
   --light-blue: #100d5c;
   --black:#212144;
   --min-white:#f5f5f5;
   --light-red:#ec020c;
     --red-two:#e70034;
       --light-black:#252525;
         --bg-color:#0A122B;
    --icon-bg:#2F2D4C;
    --icon-color:#69727D;
    --light-black:#252525;
    --bg-color:#0A122B;
    --black-two:#1C244B;



   /* Font-Family */
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Font sizes in px */
    --font-size-t: 12px;   /* tiny text, captions, meta info */
    --font-size-s: 14px;   /* small text, nav links */
    --font-size-n: 16px;   /* normal body text */
    --font-size-m: 18px;   /* medium text */
    --font-size-1: 24px;   /* h3 or small section heading */
    --font-size-2: 28px;   /* h2 */
    --font-size-3: 32px;   /* h1 */
    --font-size-x1: 36px;  /* large h1 / hero */
    --font-size-xx1: 48px; /* extra large headings */

   /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 900;


    /*Border radius*/
    --border-radius-s:8px;
    --border-radius-m:30px;
    --boder-radius-circle:50%;

    /*site max width */
    --site-max-width:1300px

}



/*Styling for the whole site*/
ul{
    list-style-type: none;
}

a{
    text-decoration: none;
}
button{
    cursor: pointer;
    border: none;
    background: none;
}
html{
    scroll-behavior: smooth;
}
.section-content{
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1300px;
}

   .franchise-section{
    padding: 120px 20px 60px;
 }
.franchise-details {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.franchise-card {
  flex: 1;
}
.franchise-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}
.franchise-subtext{
    font-size: var(--font-size-n);
    line-height: 24px;
    color:var(--light-blue) ;
    text-align: justify;
}
.franchise-grid{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 90%;
}
.franchise-title{
    font-family: var(--font-heading);
    font-size: var(--font-size-x1);
    color: var(--black-two);
    text-align: center;
}
.franchise-title-two{
    font-family: var(--font-heading);
    font-size: var(--font-size-x1);
    color: var(--black-two);
    text-align: center;
}
.franchise-button {
  display: flex;
  
}

.franchise-apply {
     display: inline-block;
     padding: 12px 25px; 
     background-color:  var(--light-blue); 
     color: #fff; 
     text-decoration: none;
      border-radius: 4px; 
      font-size: var(--font-size-s);
       font-family: var(--font-body);
        transition: 0.3s ease;
}
.franchise-divider {
  width: 100%;
  height: 2px;
  background-color: var(--light-blue);
  border: none;
}



 
/* Tablets and small laptops (1024px and down) */
@media screen and (max-width: 1024px) {
 
   
    .franchise-details{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }


  }


/* Tablets and small laptops (900px and down) */
@media screen and (max-width: 900px) {
  
      .franchise-section{
      padding: 100px 0 40px;
      }

}

/* Tablets and small laptops (640px and down) */
@media screen and (max-width: 640px) {
      .mafa-farm-hero-section{
        min-height: 50vh;
    }
     .mafa-farm-hero-section .mafa-farm-hero-details{
        padding-top: 20rem;
    }


}