.section-about {
  margin-top: -5px;
  padding-bottom: 200px;
  position: relative;
  background-image: url('../images/bgs/about-bg.svg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #0A344E;
}

.section-about > .main-content {
  display: flex;
  margin-bottom: 62px;
}


.section-about > .main-content .image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-flow: row nowrap;
  align-items: center;
  margin-right: 47px;
}

.section-about > .main-content .image > img {
  width: calc(100% + 120px);
}

.section-about > .main-content .text {
  padding-top: 58px;
  max-width: 510px;
  width: 100%;
} 

.section-about > .main-content .text .section-title {
  margin-bottom: 16px;
}

.section-about > .main-content .text p {
  font-family: 'Catamaran', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 28px;
  margin-top: 20px !important;
}

.section-about > .main-content .text p:last-child {
  margin-bottom: 0;
}

.section-about > .gallery {
  position: relative;
}

.section-about > .gallery .gallery-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}

.section-about > .gallery .gallery-item .image-large,
.section-about > .gallery .gallery-item .image-small {
  width: 65%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.section-about > .gallery .gallery-item .image-small {
  width: calc(35% - 8px);
}

.section-about > .gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .section-about > .main-content {
    margin-bottom: 42px;
  }

  .section-about > .main-content .image {
    margin-right: 0;
  }

  .section-about > .main-content .image > img {
    width: 100%;
  }
  
  .section-about > .main-content .text {
    text-align: center;
    min-width: 100%;
    padding-top: 50px;
  }

  .section-about > .gallery .gallery-item .image-large {
    width: 100%;
  }
  .section-about > .gallery .gallery-item .image-small {
    width: calc(50% - 4px);
  }
}