/*-------------------
    BASE FILES
-------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  /*Sets the font to 10 rem*/
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, a {
  line-height: 100%;
}

/*--------------------
    ABSTRACT FILES
---------------------*/
/*colors*/
.row90{
  width: 90%;
  margin: 0 auto;
}

.link1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #EE851F;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.link1:hover {
  cursor: pointer;
  color: #2c3b58;
}

.termsWrapper {
  height: 100vh;
  max-height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: max-content 1fr max-content;
      grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
      grid-template-rows: max-content 1fr max-content;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.termsWrapper .termsHeader {
  padding: 3rem 0;
}

.termsWrapper .termsHeader h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.termsWrapper .termsHeader h1:after {
  content: '';
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.termsWrapper .terms {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: 0px;
}

.termsWrapper .terms__h {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #2c3b58;
  line-height: 160%;
  padding: 3rem 0 2rem;
}

.termsWrapper .terms__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.termsWrapper .terms__p span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  color: #EE851F;
}

.termsWrapper .terms__attention {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #EE851F;
  line-height: 160%;
  text-transform: uppercase;
}

.termsWrapper .terms__ul {
  list-style-type: circle;
  margin-left: 5rem;
  margin-bottom: 2rem;
}

.termsWrapper .terms__ul li {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.termsWrapper .termsFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 4rem 0;
}

.termsWrapper .termsFooter__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #2c3b58;
}

.termsWrapper .termsFooter__date span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #EE851F;
}

.termsWrapper .termsFooter__download a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #EE851F;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.termsWrapper .termsFooter__download a:hover {
  color: #2c3b58;
}


