body {
  background-color: #fbfbfb;
}

.about-main {
  height: calc(100vh - 128px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100vw - 128px);
  margin: 0px auto;
}

.about-main .about-content {
  /* height: 500px; */
  max-width: 436px;
  margin-right: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-main .about-content h1 {
  font-family: "Oswald";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
}

.about-main .about-content p {
  font-family: "Oswald";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-align: left;
}

.about-main .about-image {
  width: 100%;
  height: 100%;
  background-image: url("../../assets/about-right-image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


@media only screen and (max-width: 768px) {
  .about-main {
    width: calc(100vw - 40px);
  }
  .about-main .about-content {
    height: 610px;
    min-width: 354px;
    margin-right: 20px;
  }
  .about-image {
    height: 610px !important;
  }
}

@media only screen and (max-width: 700px) {
  .about-main {
    width: calc(100vw - 20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
    min-height: calc(100vh - 64px);
  }
  .about-main .about-content {
    width: 100%;
    margin: 0;
    min-width: 320px;
    height: 610px;
    margin-bottom: 25px;
  }
  .about-image {
    height: 314px !important;
    margin-bottom: 25px;
  }
}
/*# sourceMappingURL=about.css.map */