:root {
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  background-color: #276a86;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 0;
  display: flex;
}

.container {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  aspect-ratio: auto;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.image-2, .image-4 {
  max-width: 200px;
}

@media screen and (min-width: 1440px) {
  .section {
    object-fit: cover;
    height: 100vh;
    margin-top: auto;
    margin-bottom: 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 991px) {
  .section {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .container {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
  }

  .container {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    aspect-ratio: auto;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    display: flex;
  }
}


