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

.get-in-touch {
    text-align: center;
    padding: 60px 20px;
    padding-bottom: 85px;
    background-color: #0D0D0D;
    font-family: Arial, sans-serif;
}

.get-in-touch h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 800;
    color: #FFF;
}

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

.contact-card {
    background: linear-gradient(to bottom right, rgba(46, 46, 46, 1), rgba(26, 26, 26, 0.8));;
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    max-width: 325px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.contact-card .btn {
    margin-top: auto;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color-gradient);
    color: #FFF;
    padding: 20px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1; 
    width: 250px
}

.how-container {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: linear-gradient(180deg,#2ec396 0%, #001c45 100%);
    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 700px;
}

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

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

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

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

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

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

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

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

.border-btn{
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    border: solid;
    border-color: var(--accent-color);
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    line-height: 1;
    width: 250px;
}

.border-btn:hover{
    background: var(--accent-color-gradient);
    color: #FFF;
    box-shadow: 0px 0px 20px var(--accent-color-dim);
}

.border-btn span{
    color: #FFF;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.technology-container{
    margin-top: 100px;
}

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

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

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

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

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

@media (max-width: 900px) {
  .how-img-container,
  .companies-img-container,
  .investors-img-container,
  .brokers-img-container,
  .introducers-img-container {
    display: none;
  }

  .how-container,
  .how,
  .introducers-container,
  .introducers,
  .investors-container,
  .investors{
    max-height: none;
    
  }
}