.vltava {
  display: grid;
  grid-template-columns: 3fr 4fr;
  font-family: 'Google Sans', sans-serif;

  margin-block-end: 2rem;
  min-height: 380px;
  overflow: hidden;
}

.vltava__content {
  position: relative;
  padding: 3.125rem;
  color: #fff;
  isolation: isolate;
  background-color: #fcfcfc;
}

.vltava .vltava__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 380px !important;
  object-fit: cover;
  z-index: -1;
}

.vltava__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.1;

  margin-block-end: 1.5rem;

  font-size: clamp(1.5rem, 1rem + 1.8182vw, 3rem);
}

.vltava__text {
  text-align: center;
  font-size: clamp(1rem, 0.9rem + 0.88vw, 1.875rem);
  line-height: 1.2;
}

.vltava__imgWrap {
  position: relative;
  background-color: #d0d9e3;
  display: flex;
  padding: 0 3.125rem 2.25rem;
}

@media (max-width: 1280px) {
  .vltava__content {
    padding: 1.5rem;
  }

  .vltava__imgWrap {
    padding: 0 1.5rem 1rem;
  }

  .vltava__title {
    gap: 0.5rem;
  }

  .vltava__title img {
    width: 100px;
  }
}

.vltava__phone {
  max-width: 100%;
  margin: auto;
}

.vltava__flag {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}

.vltava__cta {
  text-align: center;
  margin-block-start: 2.5rem;
}

.vltava .btn--black {
  display: inline-block;
  font-size: clamp(1rem, 0.4531rem + 1.75vw, 1.4375rem);
  text-transform: uppercase;
  padding: 0.2em 2em;
  border-radius: 2em;
  background-color: #000;
  color: #fff;
}

@media (max-width: 960px) {
  .vltava {
    grid-template-columns: 1fr;
  }

  .vltava__content {
    padding: 1.5rem 1rem;
    overflow: hidden;
  }

  .vltava__imgWrap {
    padding: 0 0 1rem;
  }

  .vltava__flag {
    top: 0.5rem;
    right: 0.5rem;
    width: 1.875rem;
  }

  .vltava__title img {
    width: 100px;
  }

  .vltava__cta {
    margin-block-start: 1.5rem;
  }
}

@media (max-width: 580px) {
  .vltava__title img {
    width: 80px;
  }
}