* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

body {
  background-color: lightgreen;
  overflow-x: hidden;
}

header > * {
  display: none;
}
@media (max-width: 1599px) {
  header .small {
    display: flex;
    align-items: center;
    height: 65px;
    background-color: black;
  }
}
header .small .logo {
  font-size: 36px;
  color: lightgreen;
  margin-left: 10px;
}
header .small .search {
  margin-left: 40px;
}
header .small .search input {
  text-align: center;
  height: 40px;
  font-size: 18px;
  background-color: lightgreen;
}
header .small .search input:first-child {
  width: 300px;
  border-radius: 5px 0 0 5px;
}
header .small .search input:last-child {
  margin-left: -2px;
  width: 60px;
  border-radius: 0 5px 5px 0;
}
header .small .search input:last-child:active {
  background-color: red;
}
header .small .input-for-menu {
  display: none;
}
header .small .menu_button {
  margin-left: auto;
  margin-right: 20px;
  display: block;
}
header .small .menu_button_2 {
  margin-left: auto;
  margin-right: 20px;
  display: none;
}
header .small .menu-icon {
  font-size: 18px;
  color: lightgreen;
}
header .small .input-for-menu:checked ~ .menu_button {
  display: none;
}
header .small .input-for-menu:checked ~ .menu_button_2, header .small .input-for-menu:checked ~ .my-menu {
  display: block;
}
header .small .my-menu {
  display: none;
  position: absolute;
  z-index: 10;
  width: 100vw;
  top: 65px;
  background-color: black;
}
header .small .my-menu ul {
  list-style-type: none;
}
header .small .my-menu ul li {
  font-size: 24px;
  color: lightgreen;
  margin: 10px 0 10px 20px;
  cursor: pointer;
}

@media (min-width: 1600px) {
  header .big {
    display: flex;
    align-items: center;
    height: 97.5px;
    background-color: black;
    padding-right: 30px;
  }
  header .big .logo {
    font-size: 46.8px;
    color: lightgreen;
    padding-left: 20px;
  }
}
header .big .my-menu ul {
  list-style-type: none;
  margin: 9px 0 0 80px;
}
header .big .my-menu ul li {
  display: inline-block;
  font-size: 31.2px;
  color: lightgreen;
  margin-right: 40px;
  cursor: pointer;
}
header .big .search {
  margin-left: auto;
}
header .big .search input {
  text-align: center;
  height: 40px;
  font-size: 18px;
  background-color: lightgreen;
}
header .big .search input:first-child {
  width: 300px;
  border-radius: 5px 0 0 5px;
}
header .big .search input:last-child {
  margin-left: -2px;
  width: 60px;
  border-radius: 0 5px 5px 0;
}
header .big .search input:last-child:active {
  background-color: red;
}

.jumbotrons {
  margin-left: 50px;
  margin-right: 50px;
  display: grid;
  grid-template-rows: 600px;
  gap: 50px;
}
@media (max-width: 1599px) {
  .jumbotrons {
    grid-template-columns: calc(50% - 25px) calc(50% - 25px);
  }
}
@media (min-width: 1600px) {
  .jumbotrons {
    grid-template-columns: calc(70% - 25px) calc(30% - 25px);
  }
}
.jumbotrons .jumbotron-main {
  font-size: 45px;
}
.jumbotrons .jumbotron-money-text :first-child {
  font-size: 30px;
}
.jumbotrons .jumbotron-money-text :last-child {
  font-size: 45px;
}
.jumbotrons > div {
  padding-top: 50px;
  text-align: center;
  background-color: #4CAF50;
  position: relative;
  border-radius: 5px;
}
@media (max-width: 1599px) {
  .jumbotrons > div {
    margin-top: 160px;
  }
}
@media (min-width: 1600px) {
  .jumbotrons > div {
    margin-top: 80px;
  }
}
.jumbotrons > div p:last-child {
  margin-top: 50px;
}
.jumbotrons > div .jumbotron-money-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  height: 65px;
  width: 180px;
  font-size: 24px;
  color: lightgreen;
  background-color: black;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 350px;
  cursor: pointer;
}

.gallery {
  display: flex;
  flex-flow: row wrap;
  gap: 50px;
  margin: 50px;
}
.gallery img {
  border-radius: 5px;
  width: 500px;
  flex: 1 1 auto;
}
.gallery :nth-child(2n) {
  margin-top: 100px;
}
.gallery :nth-child(2n+1) {
  margin-bottom: 100px;
}

/*# sourceMappingURL=style.css.map */
