html {
    box-sizing: border-box;
}

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

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
    font-family: 'Helvetica', 'Segoe UI', Arial, sans-serif;
}

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;
}

.marketplace-btn{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #06293a;
    color: #FFF;
    padding: 12px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    line-height: 1; 
    transition: .2s;
}

.marketplace-btn span{
    font-size: 20px;
}

.marketplace-btn:hover{
    background-color: #2ec396;
}

.brokers-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 50px;
    border: solid;
    border-color: #FFF;
    color: #FFF;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    line-height: 1;
    transition: .2s;
}

.brokers-btn span{
    font-size: 20px;
}


.brokers-btn:hover{
    border-color:#2ec396;
    color: #FFF;
}

.what-we-do {
    text-align: center;
    padding: 60px 20px;
    background-color: #0D0D0D;
    font-family: Arial, sans-serif;
}

.what-we-do h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 800;
    color: #FFF;
}

.what-we-do p{
    max-width: 1000px;
    margin: auto;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
}

.contact-card {
    background: linear-gradient(180deg, #2EC396 0%, #0E5C75 100%);
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    width: 250px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s;
}


.contact-card h3 {
    min-height: 50px;
    font-size: 22px;
    margin-top: auto;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-card p {
    min-height: 100px;
    font-size: 14px;
    margin-bottom: 20px;
    margin: 0px;
}

.our-companies-container{
    height: 450px;
    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;
    gap: 100px;
    flex-direction: row;
    margin-top: 2rem;
}

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

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

.technology-container{
    display: flex;
    justify-content: center;
}

.latest-technology{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 100px;
    gap: 100px;
}

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

.latest-technology h2{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.technology-left{
    flex-basis: 700px;
}