.commando-section{
    display: flex;
    flex-direction: column;
}
.commando-section .information-container{
    display: flex;
    flex-direction: column;
}
.commando-section .information-container > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
}
.commando-section .information-container div .text-section{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.commando-section .information-container img{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    margin-bottom: 20px;
}
.commando-section .information-container div h2{
    line-height: 50px;
}
.last{
    margin-top: unset;
}

form .input-container{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
form input{
    height: 40px;
    margin-top: 10px;
    border: none;
    border-bottom: 2px solid var(--pri-color);
}
form .sec-cta-btn{
    background: none;
}
form input:focus{
    outline: none;
}
.mirror {
    transform: scaleX(-1);
}

.vehicles-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vehicles-section .vehicle{
    width: 100%;
    height: 350px;
    background-color: #D90429;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    position: relative;
    overflow-x: hidden;
}
.vehicles-section .vehicle h1, .vehicles-section .vehicle .text, .vehicles-section .vehicle h3{
    color: #fff;
    margin: 0 10%;
    z-index: 3;
}
.vehicles-section .vehicle-img, .vehicles-section .background-star{
    position: absolute;
    height: 250px;
    width: auto;
    z-index: 1;
    left: 40%;
}
.vehicles-section .background-star{
    z-index: 0;
    height: 275px;
}
.vehicles-section .sec{
    background-color: #AF001E;
    text-align: right;
}

.vehicles-section .sec .vehicle-img, .vehicles-section .sec .background-star{
    left: unset;
    right: 40%;
}
.margin-none{
    margin-top: 0;
}


.contact-section {
    margin: 80px auto;
    max-width: 900px;
    padding: 40px;
    background: #f9f9f9;
  }
 
  .form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
 
  .form-column {
    flex: 1;
    min-width: 0;
  }
 
  .input-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
 
  .input-container label {
    font-weight: bold;
    font-size: 1em;
    color: #333;
  }
 
  .input-container input {
    padding: 12px 15px;
    font-size: 1em;
    border: 2px solid #ccc;
    margin-top: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
 
  .input-container textarea {
    padding: 12px 15px;
    font-size: 1em;
    border: 2px solid #ccc;
    margin-top: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
 
  .input-container input:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 5px rgba(0, 119, 204, 0.3);
  }
 
  .flex-end {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }
 
  @media (max-width: 800px) {
    .form-grid {
      flex-direction: column;
    }
  }



@media (min-width: 1000px){
    .commando-section .information-container > div{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .commando-section .information-container div .text-section{
        text-align: right;
    }
    .vehicles-section .vehicle{
        height: 450px;
        justify-content: center;
    }
    .vehicles-section .vehicle-img{
        height: 350px;
        left: 45%;
    }
    .vehicles-section .background-star{
        height: 400px;
        left: 50%;
    }
    .vehicles-section .sec .vehicle-img{
        height: 350px;
        right: 45%;
    }
    .vehicles-section .sec .background-star{
        height: 400px;
        right: 50%;
    }
}
@media (min-width: 1200px){
    .commando-section .information-container img{
        height: 250px;
        width: 250px;
    }
    .vehicles-section .vehicle{
        height: 500px;
    }
}
@media (min-width: 1500px){
    .commando-section .information-container img{
        height: 300px;
        width: 300px;
    }
    .vehicles-section .vehicle{
        height: 600px;
    }
    .vehicles-section .vehicle h1, .vehicles-section .vehicle .text, .vehicles-section .vehicle h3{
        margin: 0 15%;
    }
    .vehicles-section .vehicle-img{
        height: 500px;
        left: 40%;
    }
    .vehicles-section .background-star{
        height: 550px;
        left: 40%;
    }
    .vehicles-section .sec .vehicle-img{
        height: 500px;
        right: 40%;
    }
    .vehicles-section .sec .background-star{
        height: 550px;
        right: 40%;
    }
}