* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #323030;
}

.page-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url("https://regtoevent.com/assets/img/bg2.webp");
  background-repeat: no-repeat;
  background-position: 0 -210px;
}

.main {
  flex-grow: 1;
}

.main.menu-show {
  filter: blur(4px);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #0eb582;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 100px 0;
}

.section__title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.section__text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-head {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.section-head__subtitle {
  font-size: 16px;
  color: #0eb582;
  margin-bottom: 13px;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-head__title {
  font-size: 40px;
  font-weight: 700;
  padding: 0 0 20px 0;
}

.flat {
  background: #f8f9fa;
}

.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  text-align: center;
  background: #0eb582;
  border: 2px solid #0eb582;
  font-weight: 700;
  border-radius: 34px;
  color: #fff;
  line-height: 1;
  transition: all .2s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #15263b;
  border-color: #15263b;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(21,38,59,.2);
}
.btn-outline {
  display: inline-block;
  padding: 16px 32px;
  text-align: center;
  background: transparent;
  border: 2px solid #0eb582;
  font-weight: 700;
  border-radius: 34px;
  color: #0eb582;
  line-height: 1;
  transition: all .2s;
}
.btn-outline:hover {
  background: #0eb582;
  color: #fff;
}
.btn-outline:focus {
  box-shadow: 0 0 0 0.25rem rgba(14,181,130,.2);
}
.text-primary {
  color: #0eb582 !important;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 75px 0;
  }
  .section-head {
    margin-bottom: 25px;
  }
  .section-head__title {
    font-size: 1.8rem;
  }
}