

  /* RESPONSIVE */
@media(max-width: 768px)
  
{

    .menu-toggle{
      display: block;
    }

    .navbar{
      padding: 15px 20px;  
    }

    /* DROPDOWN */

    .nav-links{
      position: absolute;
      top: 70px;
      right: 20px;
      background: #fff;
      flex-direction: column;
      width: 220px;
      padding: 20px;
      border-radius: 10px;
      display: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      transform: translateY(-10px);
      opacity: 0;
      pointer-events: none;
      
    }

    /* SHOW MENU */
    .nav-links.active{
      display:flex;
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    /* TEXT COLOR */
    .nav-links li{
      color:#333;
    }

    .nav-links li a{
      color:#333;
    }

    /* BUTTON FULL WIDTH */
    .nav-btn{
      margin-top: 10px;
      text-align: center;
    }


    /* HERO */
    .hero-box{
      width: 100%;
      padding: 30px 20px;
    }

    .hero-box h1{
      font-size: 28px;
    }

    /* ABOUT */
    .about_container{
      grid-template-columns: 1fr;
      gap: 30px;
    }

    /* VMV FIX */
    
    .vmv{
      padding: 60px 20px;
    }

    .vmv_grid{
      display: flex;
      flex-direction: column;
      grid-template-columns: 1fr;
      gap:18px;
    }

    .vmv_card{
      width: ;
      padding: 18px 15px;
    }

    .vmv_card h3{
      font-size: 16px;
    }

    .vmv_card p{
      font-size: 13px;
    }

    .vmv_title{
      font-size: 24px;
    }

    /* TEAM FIX */

    .team-grid{
      flex-direction: column;
      align-items: center;
      grid-template-columns: 1fr;
    }
    
    .agent{
      text-align: center;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .agent h4{
      font-size: 16px;
      margin-top: 15px;
      margin-bottom: 5px;
      min-height: 18px;
    }

    .agent .depart{
      display: block;
      font-size: 13px;
      color: #0D33B3;
    }

    .agent img{
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 10px;
    }

    /* DRIVE FIX */
    .drive-container{
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .drive_content{
      max-width: 100%;
      text-align: center;
    }

    /*FOOTER FIX*/
    .footer_container{
      display: flex !important;
      flex-direction: column;
      gap: 25px;
      padding: 0 20px 40px; /*  */
    }

    .footer_col{
      width: 100%;
    }

    /* MAKE COMPANY + SUPPORT SIDE BY SIDE */
    .footer_container .footer_col:nth-child(2),
    .footer_container .footer_col:nth-child(3){
      display: inline-block;
      width: 48%;
      vertical-align: top;
    }

    /*CONTACT FULL WIDTH*/
    .footer_container .footer_col:nth-child(4){
      width: 100%;
    }

    .footer-middle{
      display: flex !important;
      flex-direction: row;
      justify-content: space-between;
      gap: 30px;
      width: 100%;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-middle .footer_col{
      width: 50%;
      flex: 1;
    }

    .footer-middle h4{
      margin-bottom: 10px;
      font-size: 15px;
    }

      .footer-middle ul{
          padding: 0;
          margin: 0;
      }

      .footer-middle li{
        list-style: none;
        margin-bottom: 6px;
        font-size: 14px;
        color: #ccc;
      }

    .footer_col{
      text-align: center;
    }

    .footer-middle .footer_col{
      text-align: left;
    }

    .footer_socials{
      justify-content: center;
    }

    .footer_col.contact{
      width: 100%;
      text-align: left;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 20px;
      margin-top: 10px;
      padding-top: 20px;
    }

    .footer_col.contact h4{
      margin-bottom: 10px;
      font-size: 15px;
    }

    .footer_col.contact p{
      font-size: 14px;
      margin: 5px 0;
      color: #ccc;

    }

    .footer_col.brand{
      text-align: center;
    }

    .footer_socials{
      justify-content: center;
    }


} /*###### end media 768px ##########*/






  /* TABLE FIX */
@media(max-width: 900px)
{

    .vmv_grid{
      grid-template-columns: repeat(2, 1fr);
    }

    .team-grid{
      flex-wrap: wrap;
      justify-content: center;
    }

    .agent{
      width:45%;
    }

    .footer_container{
      grid-template-columns: 1fr 1fr;
    }
}
