/*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;
}


/*Hero Section Styling */
.mafa-exim-hero-section {
    position: relative;
    background-image:url(../images/mafa-exim-bg.jpg);
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
    padding-top: 80px;
    display: flex;
   
}

.mafa-exim-hero-section .mafa-exim-hero-details{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding-top: 25rem;
    text-align: center;
    align-items: center;
    color:var(--white);       
    gap: 25px;
   
}
 .mafa-exim-hero-section .mafa-exim-hero-details .title{
    font-family: var(--font-heading);
    font-size: var(--font-size-xx1);
    
 }
 .about-exim{
    padding: 100px;
 }
 .about-exim-details-all{
    display: flex;
    flex-direction: column;
    gap: 20px;
 }

 .about-exim-details{
    display: flex;
    flex-direction: column;
    gap: 5px;
 }
 .exim-list{
      list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 50px;
    
 }
 .exim-list li{
    list-style: disc;
    
}
.exim-heading{
    font-size: var(--font-size-xx1);
    text-align: center;
    color: var(--black-two);
    font-family:var(--font-heading);
}
.exim-details , .exim-options{
font-family: var(--font-body);
font-size: var(--font-size-n);
color: var(--light-blue);
line-height: 24px;
}

.exim-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.exim-click {
     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;
}


/* Tablets and small laptops (1024px and down) */
@media screen and (max-width: 1024px) {
     .mafa-exim-hero-section{
        min-height: 70vh;
    }
    .mafa-exim-hero-section .mafa-exim-hero-details{
        padding-top: 50%;
    }
   .about-exim{
      padding: 60px 0;
   }

  }


/* Tablets and small laptops (900px and down) */
@media screen and (max-width: 900px) {
      .mafa-exim-hero-section{
        min-height: 70vh;
    }
     .mafa-exim-hero-section .mafa-exim-hero-details{
        padding-top: 60%;
    }


}

/* Tablets and small laptops (640px and down) */
@media screen and (max-width: 640px) {
      .mafa-exim-hero-section{
        min-height: 50vh;
    }
     .mafa-exim-hero-section .mafa-exim-hero-details{
        padding-top: 30rem;
    }


}