/*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;
}

.about-tanko {
    padding: 150px 0;
}
.tanko-top{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tanko-text ,
.tanko-text-two{
    font-size: var(--font-size-n);
    color: var(--light-blue);
    font-family: var(--font-heading);
    line-height: 24px;
    text-align: justify;

}
.tanko-top{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.tanko-heading{
    font-size: var(--font-size-x1);
    color: var(--light-blue);
    font-family: var(--font-heading);
}

.franchise-divider {
  width: 90%;
  height: 1.5px;
  background-color: var(--light-blue);
  border: none;
}

.tanko-details {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}


.tanko-image-wrapper {
    flex: 0 0 600px;
    display: flex;
    justify-content: center ;
    align-items: center;
    margin-top: 60px;
}

.tanko-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
  
}

.tanko-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.tanko-bottom{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 90%;
}
.about-tanko-title{
    display: flex;
    gap: 10px;
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-bold);
}
.red{
    color: var(--red);
}

.tanko-bottom-two{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 95%;
    margin-top: 20px;
}

/* Tablets and small laptops (1024px and down) */
@media screen and (max-width: 1024px) {
    .tanko-details {
        gap: 40px;
    }

    .tanko-image-wrapper {
        flex: 0 0 380px;
    }

    .tanko-image {
        height: 500px;
    }

    .tanko-bottom {
        max-width: 100%;
    }
}

/* Tablets and small laptops (900px and down) */
@media screen and (max-width: 900px) {
    .tanko-details {
        flex-direction: column;
        gap: 40px;
    }

     .tanko-image-wrapper {
        flex: unset;
        width: 100%;
    }

    .tanko-image {
        height: 100%;
    }

    .tanko-bottom {
        max-width: 100%;
    }
}

/* 640px */
@media screen and (max-width: 640px) {
    .about-tanko {
        padding: 80px 0;
    }

    .tanko-image {
        height: 350px;
    }
}
/* Tablets and small laptops (480px and down) */
@media screen and (max-width: 480px) {
    .about-tanko {
        padding: 60px 0;
    }

    .tanko-image {
        height: 280px;
    }
}
