* {
  box-sizing: border-box
}

a,
body,
div,
p,
section {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1170px;
  width: 100%;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto
}

ul {
  list-style-type: none
}

ul li {
  margin: 0 10px
}

footer li {
  cursor: pointer !important
}

.m10 {
  margin: 10px
}

.p20 {
  padding: 20px 0
}

.p30 {
  padding: 30px 0
}

.p50 {
  padding: 50px 0
}

.pt100 {
  padding-top: 100px
}

.relative {
  position: relative
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

@media screen and (max-width:1140px) {
  .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media screen and (max-width:1140px) {
  .flex-justify-between {
    -ms-flex-pack: distribute;
    justify-content: space-around
  }
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.flex-align-flex-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.flex-align-center,
.flex-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.text-center,
button {
  text-align: center
}

button {
  max-width: 500px;
  padding: 15px 0;
  width: 100%;
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  font-size: 24px
}

#footer li,
button {
  cursor: pointer
}