.flex-item {
	border: 4px solid #fff;
}

.logo-section{
  background-color:#00D2B3;
  color: #fff;
  width: 100%;
  padding: 50px 0;
  margin-top: 40px;
}

.logo-section .section-title{
  margin-bottom: 0;
}

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

.logo-list{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-around;
  align-items:center;
  align-content: space-around;
  gap: 120px 100px;
  width: 100%;
  max-width: 1920px;
  padding: 60px 120px;
}

.logo-list img {
  max-width: 180px;
  max-height: 90px;
}

@media (max-width: 550px) {
  .logo-section{
    margin-top: 0;
  }
  .logo-list img {
    max-width: 115px;
    max-height: 80px;
  }
  .logo-list{
    gap: 60px 75px;
    width: 100%;
    max-width: 1920px;
    padding: 40px;
  }
}

.about{
  width: 100%;
  height: auto;
}

.about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  width: 100%;
  max-width: 1340px;
  height: auto;
  margin: 0 auto;
}

.about .left-column {
  max-width: 40%;
  height: 100%;
}

.about .right-column {
  width: 52%;
  height: auto;
	font-size: calc(16px + (30 - 16) * (100vw - 400px) / (1440 - 400)) !important;
  line-height: 1.2;
}

@media (max-width: 550px) {
  .about .container {
    display: inline-block;
  }
  
  .about .left-column {
    max-width: 75%;
    height: unset;
    margin: 0 auto;
  }
  
  .about .right-column {
    width: 100%;
    height: auto;
    padding: 40px 0;
    font-size: calc(16px + (30 - 16) * (100vw - 400px) / (1440 - 400)) !important;
    line-height: 1.2;
  }
}