html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.video-wrapper {
    pointer-events: none;
    position: relative;
    width: 100%;      
    height: 355px;     
    overflow: hidden;
    background: black;
}

.what-container{
    display: flex;
    justify-content: center;
    width: 100%;
}

.what{
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    gap: 40px;
    padding: 20px 50px;
}

.what-content{
    flex: 1 1 700px;
}

.what-content h1{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.what-content p{
    margin-bottom: 10px;
    line-height: 1.6;
}

.what-img-container{
    flex: 1 1 420px;
    min-width: 0;
}

.what-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.how-container {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #131313;
    max-height: 550px;
}

.how {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    gap: 40px;
    max-height: 550px;
    padding: 20px 50px;
}

.how-content {
    flex: 1 1 600px;
}

.how-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.how-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.how-img-container {
    flex: 1 1 420px;
    min-width: 0;
    overflow: visible;
    position: relative;
    top: 2px;
}

.how-img-container img {
    max-width: 95%;
    object-fit: cover;
    border-radius: 10px;
}

.our-companies-container{
    height: 500px;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(180deg,#2ec396 0%, #001c45 100%);
}

.our-companies{
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
}

.our-companies h1{
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.our-companies p{
    line-height: 1.4 ;
    text-align: center;
}

.companies-row{
    display: flex;
    flex-direction: row;
    margin-top: 2rem;
}

.row-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row-item h2{
    margin: 15px auto;
}

.latest-technology{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 100px auto;
    gap: 100px;
    padding: 20px 50px;
    max-width: 1200px;
}

.latest-technology p {
    line-height: 1.5;
}

.latest-technology h2{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 20px;
}

.technology-left{
    flex: 1 1 400px;
}

.technology-right img {
    max-width: 98%;
    height: auto;
}

@media (max-width: 900px) {
  .we-do-img-container,
  .what-img-container,
  .how-img-container {
    display: none;
  }
}