@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto.ttf') format('truetype');
  }

@font-face {
    font-family: 'Roboto Light';
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
}


@font-face {
    font-family: 'Roboto Thin';
    src: url('../fonts/Roboto-Thin.ttf') format('truetype');
}

body {
    font-family: 'Roboto', sans-serif;
}

p {
  margin: 0;
  padding: 0;
}

h1 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
}

main {
    width: 75%;
    margin: 0 auto;
}
  
  .top-section {
    display: flex;
    justify-content: space-between;
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
  
  .left-content {
    flex: 1;
    padding-right: 20px;
  }

  .left-content-title {
    color: #333333;
    font-weight: 600;
    font-size: 3rem;
    white-space: nowrap;
    line-height: 1;
    padding-bottom: 0.5rem;
  }
  .left-content-subtitle {
    color: #333333;
    font-weight: 600;
    font-size: 3rem;
    white-space: nowrap;
    line-height: 1;
  }

  .left-content-subtitle-pop-color {
    font-weight: 600;
    font-size: 3rem;
    color: #1abc9c;
    white-space: nowrap;
    line-height: 1;
  }

  .left-content-description-container {
    max-width: 80%;
    color: #404040;
    font-family: 'Roboto Thin', sans-serif;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .left-content-description {
    font-weight: 300;
    font-size: 1.5rem;
  }
  
  .right-content {
    flex: 1;
    padding-left: 20px;
  }
  

  
  .right-content img {
    max-width: 100%;
    height: auto;
  }


  
  .trusted-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    width: 100%;
    margin: 0 auto;
  }

  .trusted-section-title {
    font-family: 'Roboto Light' sans-serif;
    color: #292929;
    font-weight: 600;
  }
  
  .logos {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    overflow: hidden; 
    gap: 2rem;
  }

  .logo {
    flex-shrink: 1; 
    max-width: calc(25% -  2rem); 
    height: auto;
    object-fit: contain;
  }

  .request-demo-btn {
    background-color: #1abc9c;
    color: #FFFFFF;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: center;
    border: none;
    border-radius: 0.5rem; 
    font-size: 1.3rem;  
    cursor: pointer;   
    transition: 0.3s; 
    font-weight: 600;
}