.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section + .section {
  margin-top: 48px;
}

.section_reversed {
  flex-direction: row-reverse;
}

.section__img,
.section__text {
  flex: 0 0 calc(50% - 24px);
  width: calc(50% - 24px);
}

.section__img > img {
  width: 100%;
}

.section__img_rounded > img{
  overflow: hidden;
  border-radius: 8px;
}

.description {
  font-weight: 500;
}

.description_main {
  margin-bottom: 64px;
}

.description_travel {
  margin: 56px 0 64px 0;
}


@media (max-width: 768px) {
  h1 {
    letter-spacing: -1.75px;
    font-size: 42px;
  }

  h1 + * {
    margin-top: 48px;
  }

  p {
    font-size: 18px;
  }


  .section {
    display: block;
  }

  .section + .section {
    margin-top: 56px;
  }

  .section__img,
  .section__text {
    width: 100%;
  }

  .section__text {
    margin-top: 24px;
  }

  .section__img_small {
    width: 50%;
    display: block;
    margin: 0 auto;
  }


  .description_main {
    margin-bottom: 56px;
  }

  .description_travel {
    margin: 48px 0 56px 0;
  }
}


@media (max-width: 425px) {
  h1 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  h1 + * {
    margin-top: 40px;
  }


  .section__img_small {
    width: 60%;
  }
}
