* {
  padding: 0;
  margin:0;
}

html {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

h1 {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

h2 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 1.86em;
  margin-bottom: 1em;
}

@media screen and (max-width:768px) {
  p {
    font-size: 12px;
  }
}

*, *:before, *:after {
  box-sizing: inherit;
}

ul, ol {
  padding-left: 30px;
}

ol {
	list-style: lower-roman;
}

li::marker {
	font-weight: bold;
}

li{
  font-size: 14px;
	margin-bottom: 20px;
}

@media screen and (max-width:768px) {
  li {
    font-size: 12px;
  }
}

.accordion__summary {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
}

@media screen and (max-width:768px) {
  .site-header {
    height: 60px;
  }
  .site-header__logo--img {
    width: auto;
    height: 34px;
  }
}

.site-main {
  background: #FAFAFA;
  min-height: 86vh;
  padding-bottom: 60px;
}

.site-main__container {
  padding: 0 15px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.l-title {
  padding: 50px 15px 46px;
  max-width: 553px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width:768px) {
  .l-title {
    padding: 25px 0 11px;
    text-align: left;
    max-width: 80%;
    margin:0;
  }
}

.desc {
  margin-bottom: 3em;
}

@media screen and (max-width:768px) {
  .desc{
    text-align: left;
  }
}


.accordion__item {
  margin-bottom: 28px;
}

.accordion__summary {
  cursor: pointer;
}

.accordion__summary::marker {
  color: #62A70D;
}

.accordion__title {
  display: inline;
  padding-left: 11px;
}


@media screen and (max-width:768px) {
  .accordion__title {
    font-size: 16px;
    padding-left: 0;
  }
}

.accordion__content {
  padding-top: 20px;
  padding-left: 26px;
}

@media screen and (max-width:768px) {
  .accordion__content {
    padding-top: 12px;
    padding-left: 20px;
  }
}

.site-footer {
  padding: 0 15px;
}

.site-footer__container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 360px;
  height: 50px;
  margin: 0 auto;
  padding: 15px 0;
}

@media screen and (max-width:768px) {
    .site-footer__container {
      flex-direction: column;
      align-items: center;
      height: auto;
  }
}

.site-footer__container p {
  font-size: 12px;
  margin: 0;
}

@media screen and (max-width:768px) {
  .site-footer__container p {
    margin-top: 7px;
  }
}

