@import url('https://fonts.googleapis.com/css2?family=Rubik&family=Montserrat:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(160deg, #ffffff 0%, #e5ccfa 50%, #c2a3e8 100%);
  background-attachment: fixed;
}









/* ABOUT */
.about-section {
  padding: 160px 40px 60px 40px;
  display: flex;
  justify-content: center;
}

.about-wrapper {
  display: flex;
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background-blend-mode: screen;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-logo {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding: 40px;
}

.about-text-box {
  width: 55%;
  padding: 60px 60px;
  font-size: 18px;
  line-height: 1.6;
  color: #1C1C1C;
}

.about-title {
  font-family: "Montserrat";
  font-size: 72px;
  margin-bottom: 40px;
  font-weight: 100;
}





@media (max-width: 900px) {

  .about-section {
    padding: 100px 20px 60px 20px;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .about-logo {
    width: unset;
    padding: 20px;
  }

  .about-logo img {
    padding: unset;
  }

  .about-text-box {
    width: unset;
    padding: 20px;
  }

  .about-title {
    margin: 0;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
  }

  .about-text-box p {
    text-align: justify;
  }
}