.benefits-section{
  background-color: #f3f7fe;
  display: flex;
  gap: 0px 100px;
  padding:24px;
}

.benefits-section .left {
  max-width: 600px;
  flex-shrink: 0;
  padding-left: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.benefits-section .left ul{
  list-style: none;
  padding: 0;
  margin: 12px 0px 0px 0px;
}
.benefits-section .left li{
  position: relative;
  padding-left: 26px;
  padding-top:8px;
  padding-bottom:8px;
}
.benefits-section .left li::before{
  content: "";
  position: absolute;
  left: 1px;
  top: 15px;
  width: 20px;
  height: 8px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="8" viewBox="0 0 17 8" fill="none"><path d="M16.2282 4.35355C16.4235 4.15829 16.4235 3.84171 16.2282 3.64645L13.0462 0.464466C12.851 0.269204 12.5344 0.269204 12.3391 0.464466C12.1439 0.659728 12.1439 0.976311 12.3391 1.17157L15.1676 4L12.3391 6.82843C12.1439 7.02369 12.1439 7.34027 12.3391 7.53553C12.5344 7.7308 12.851 7.7308 13.0462 7.53553L16.2282 4.35355ZM0 4.5H15.8747V3.5H0V4.5Z" fill="%230E59F2"/></svg>');
  background-repeat: no-repeat;
  background-size: 15px auto;
}

.benefits-section .right {
  flex-grow: 1;
}

.benefits-section .right img {
  max-width: 100%;

}

@media (max-width: 768px) {
  .benefits-section {
    display: block;
    gap: 0;

  }
  .benefits-section .left {
    max-width: unset;

  }
  .section-link{
    width:100%;
  }

}

.reseller-section {
  background-color: #F3F7FE;
}

.reseller-section input {
  width: 100%;

  border-radius: 6px;
  border: 1px solid var(--color-border);

  color: var(--color__gray);

  font-size: 14px;
  font-weight: 400;
  height:46px;
  line-height: 160%;
  padding: 0 16px;
}

.reseller-section label {
  margin-bottom: 8px;
}

.reseller-section form {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reseller-section .field {
  display: flex;
  flex-direction: column;
  padding: 12px 0px;
}

@media (max-width: 768px) {
  .reseller-section form {
    grid-template-columns: 1fr;
  }
}
.reseller-section .subhead {
    font-size: 30px;
    font-weight: 600;
}
.reseller-section .subhead em {
    font-style: normal;
    color: var(--color-blue);
}