@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
}

.container {
  background-color: #026b96;
  margin-bottom: 6rem;
  margin-top: 8rem;
  position: relative;
}

.container::before,
.container::after {
  background: url("https://dzhblogstorage.blob.core.windows.net/public/curve.svg") center bottom no-repeat;
  content: '';
  height: 103px;
  position: absolute;
  width: 100%;
}

.container::before {
  bottom: 100%;
}

.container::after {
  top: 100%;
  transform: scaleY(-1);
}

.tabs-container {
  color: white;
  padding: 0rem;
}

.tab-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 980px) {
  .tabs-container {
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 800px;
  }

  .tab-content {
    flex-direction: row;
  }

  .tab-content .text {
    margin-right: 1rem;
  }
}
