/*
.about-banner {
    height: 300px;
} */

.about-us {
    border: 1px solid #ccc;
    border-radius: 15px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(var(--max-width) - 100px );
    margin-inline: auto;
    background: white;
    position: relative;
    top: -50px;
    padding: 20px 20px 0 20px;
}
/*
.about-us h1 {
    color: var(--main-theme-color);
    font-weight: bold;
    font-size: 40px;
} */

.about-us .subheading {
    text-align: center;
    max-width: 600px;
    /* color: var(--para-color); */
    padding-block: 20px 0;
}

.about-us h3 {
    text-align: center;
    color: var(--headings-color);
    font-weight: bold;
    margin-block: 30px 10px;
    font-size: 27px;
}

.about-us .content-container {
    display: flex;
    width: 90%;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* .about-us .btn  {
    margin-top: auto;
} */




.about-us .content-container .text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us .content-container .text-container li {
    list-style: none;
}

.about-us .content-container .text-container h2 {
    margin-block: 0;
}
.about-us ul {
    padding: 0px;
    margin: 0px;
}

.about-us li {
  font-size: 16px;
  font-weight: 400;
  color: var(--paraColor);
  margin-top: 10px;
  margin-left: 0;
  padding-left: 40px;
  position: relative;
}


.about-us li::after{
  position: absolute;
  content: "✅";
  top: 0;
  left: 0px;
}

.about-us .video-section .container {
    width: 95%;
}

.about-us .video-section .container > div {
    justify-content: center;
}


.our-mission {
    width: 100%;
    border: 4px solid var(--main-theme-color);
    border-width: 4px 0 4px 0;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
    background: #0b254b;
}

.our-mission h1 {
    font-weight: 900;
    color: var(--main-theme-color);
    margin-block-end: 20px;
}

.our-mission p {
    max-width: calc(var(--max-width) - 350px);
    width: 90%;
    color: #ccc;
    text-align: center;
    margin-bottom: 50px;
}

.our-mission button {
    padding: 10px 20px;
}


.transport-steps {
    width: 100%;
    border: 4px solid var(--main-theme-color);
    border-width: 4px 0 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 20px;
}

.transport-steps h1 {
    padding-block: 20px;
}

.transport-steps h4 {
    color: var(--para-color);
}

.transport-steps .steps-container span {
    font-size: 18px;
    font-weight: bold;
    color: #0b254b;
}


.transport-steps .steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-block: 40px;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.transport-steps .steps-container .img-steps  {
    position: relative;
    margin-bottom: 20px;

}

.transport-steps .steps-container .img-steps img {
    height: 150px;
}

.transport-steps .steps-container div {
    text-align: center;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 125px;
}

.transport-steps .step-count {
    border: 1px solid black;
    border-radius: 50%;
    background: black;
    color: white !important;
    position: absolute;
    top: 0px;
    left: 0px;
    font-weight: 900;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}



.testimonial-section {
    margin-bottom: 30px;
}

.arrow-step {
    position: relative;
}

.arrow-step::after {
    content: "";
position: absolute;
background-image: url('/public/frontend/landing/images/arrow-236.svg');
top: 30%;
right: -45px;
width: 40px;
height: 40px;
background-size: 40px;
background-repeat: no-repeat;
background-position: 50%;
}

@media (max-width:768px) {
    .about-us {
        width: 100%;
    }

    .arrow-step::after {
        content: none;
    }
}
