.body {
  font-family: 'Open Sans', sans-serif;
}

.section {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f8f8f8;
}

.right {
  position: fixed;
  left: 50%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.right.bg {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 50%;
  bottom: 0%;
}

.heading {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.paragraph {
  margin-top: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 19px;
}

.paragraph.s {
  font-size: 15px;
}

.paragraph.m {
  color: #f8f8f8;
  font-size: 28px;
  line-height: 42px;
}

.bg {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 50%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #161616;
}

@media screen and (max-width: 991px) {
  .paragraph.m {
    font-size: 23px;
    line-height: 37px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .right {
    left: 0%;
    top: 50%;
    right: 0%;
    bottom: 0%;
  }

  .heading {
    font-size: 30px;
  }

  .paragraph.s {
    margin-top: 10px;
  }

  .bg {
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 50%;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 479px) {
  .heading {
    font-size: 27px;
  }

  .paragraph.s {
    font-size: 14px;
  }
}