@charset "UTF-8";

.about_container{
  display: flex;
  gap: 64px;
  justify-content: space-between;
  align-items: center;
}
.about_inner{
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  gap: 24px;
}
.gap10{
  gap: 10px;
  display: flex;
  flex-flow: column;
}
.about_sub{
  color: var(--red);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}
.about_title{
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.about_text{
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 1.2px;
}
.about_link .primary_button{
  margin: 0;
}
.about_kv{
  max-width: 400px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .about_container{
    flex-flow: column;
    gap: 32px;
  }
  .about_title{
    font-size: 32px;
  }
  .about_kv{
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .about_title{
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .about_title{
    font-size: 24px;
  }
}
