@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.about-wrapper {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;

  max-width: 1720px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin: 0 auto;
}

.about-title {
  font-weight: 900;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-top: 0;
  margin-bottom: 50px;
}

.about-container {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  color: #000;
}

.about-container p {
  margin-top: 0;
  margin-bottom: 30px;
}

.about-wrap-images {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 15px;
  margin-bottom: 90px;
  justify-content: space-between;
}

.about-wrap-images img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

body,html {
  margin: 0;
  padding: 0;
}

@media (max-width: 1690px) {
  .about-wrap-images img {
    width: 23%;
  }
  .about-wrap-images {
    justify-content: space-around;
  }
}

@media (max-width: 1200px) {
  .about-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .about-container {
    font-size: 20px;
  }
  .about-container p {
    margin-bottom: 20px;
  }
}

@media (max-width: 990px) {
  .about-wrap-images {
    flex-wrap: wrap;
  }
  .about-wrap-images img {
    width: 38%;
  }
  .about-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .about-container {
    font-size: 16px;
  }

  .about-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}