.u-section-1 .u-sheet-1 {
  min-height: 239px;
}

.u-section-1 .u-image-1 {
  width: 248px;
  height: 179px;
  margin: 40px auto 0 0;
}

.u-section-1 .u-text-1 {
  font-size: 1rem;
  margin: -164px auto -3580px 268px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-text-1 {
    width: auto;
    margin-top: -163px;
    margin-bottom: 33px;
    margin-left: 255px;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-text-1 {
    margin: -174px 192px 45px auto;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-image-1 {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
  }

  .u-section-1 .u-text-1 {
    margin-right: 144px;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-image-1 {
    width: 206px;
    height: 148px;
    margin-top: 45px;
    margin-bottom: 44px;
  }

  .u-section-1 .u-text-1 {
    margin-right: 91px;
  }
}.u-section-2 .u-sheet-1 {
  min-height: 380px;
}

.u-section-2 .u-image-1 {
  width: 570px;
  height: 380px;
  margin: 30px auto;
}

@media (max-width: 767px) {
  .u-section-2 .u-sheet-1 {
    min-height: 400px;
  }

  .u-section-2 .u-image-1 {
    width: 540px;
    height: 360px;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-image-1 {
    height: 227px;
    margin-top: 41px;
    margin-bottom: 60px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }
}

* {
    box-sizing: border-box;
}

/* Center website */
.main {
    max-width: 100%;
    margin: auto;
}

h1 {
    font-size: 50px;
    word-break: break-all;
}

.row {
    margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
    padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    display: none; /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
    background-color: white;
    padding: 10px;
    color: black;
}

.content > .img {
  border-radius: 8px;
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #82c220;
  cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #ddd;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #666;
   color: white;
}