@charset "utf-8";
/* CSS Document */

body {
  font-family: 'Poppins',Helvetica,Arial,Lucida,sans-serif;
  color: #aaaaaa;
  font-size:18px;
}

p {
  margin: 0;
  line-height: 1.4em;
}
span#scrollTop {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  line-height: 1;
  background: rgba(0,0,0,0.4);
  position: fixed;
  z-index: 99;
  bottom: 125px;
  right: 30px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
  cursor: pointer;
  padding: 12px 13px;
  color: #fff;
  transition: right 3.5s ease;
}

span#scrollTop::after {
  content: '\f077';
}

span#scrollTop.active {
  display: block;
  right: 0px;
}

header,
section {
  width:90%;
  margin:auto;
}

@media only screen and (max-width: 767px) {
  header,
  section {
    width:100%;
  }
}

.container {
  padding:50px;
}

@media only screen and (max-width: 767px) {
  .container {
    padding-left:5%;
    padding-right:5%;
  }
}

.container.header-inner {
  margin: 50px 0 0 0;
  padding-top:0;
  padding-bottom:50px;
  background-color: #f0f7fc;
  border-radius: 3rem 3rem 0 0;
  overflow: hidden;
  transition: all 300ms ease;
}

@media only screen and (max-width: 767px) {
  .container.header-inner {
    margin: 0 auto;
    background: transparent;
    padding-bottom:20px;
  }
}

header {
  transition: all 300ms ease;
}

header.sticky {
  position: sticky;
  top: 0;
  background:#fff;
  z-index:9;
  transition: all 300ms ease;
}

header.sticky .container.header-inner {
  margin-top:0;
  background:#fff;
  padding-bottom:20px;
  transition: all 300ms ease;
}

header .container #logo {
  margin-top:20px;
  height:80px;
}

@media only screen and (max-width: 767px) {
  header .container #logo {
    margin-top:10px;
    height:60px;
    text-align: center;
  }
}

header .container #logo img {
  height:100%;
}

.container.intro-inner {
  margin: 0;
  padding-top:0;
  background-color: #f0f7fc;
  border-radius: 0 0 3rem 3rem;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .container.intro-inner  {
    background: transparent;
    padding-bottom:0;
  }
}

#intro h1 {
  font-weight: 600;
  font-size: 75px;
  letter-spacing: -5px;
  color: #091c4f;
}

@media only screen and (max-width: 767px) {
  #intro h1 {
    font-size:2em;
    letter-spacing: 0px;
  }
}

#intro p {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -3px;
  color: #091c4f;
}

@media only screen and (max-width: 767px) {
  #intro p {
    font-size:1.5em;
    letter-spacing: 0;
  }
}

.container.list-inner {
  padding:50px 0;
}

@media only screen and (max-width: 767px) {
  .container.list-inner {
    padding-left:5%;
    padding-right:5%;
  }
}

#demo-list .demo {
  display: flex;
  justify-content:space-between;
  flex-direction: row;
  padding:50px;
  border:5px solid transparent;
  border-radius: 3rem 3rem 3rem 3rem;
  margin-bottom:50px;
}

#demo-list .demo.demoSelected {
  border:5px solid #5e73e0;
}

@media only screen and (max-width: 767px) {
  #demo-list .demo {
    flex-direction: column;
    padding:20px;
    font-size:18px;
  }
}

#demo-list .demo:hover {
  border:5px solid #f0f7fc;
}

#demo-list .demo.demoSelected:hover {
  border:5px solid #5e73e0;
}

#demo-list .demo.right {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
  #demo-list .demo.right {
    flex-direction: column;
  }
}

#demo-list h2 {
  color:#091c4f;
  font-size:40px;
}

#demo-list .demo h2 {
  font-size:32px;
}

@media only screen and (max-width: 767px) {
  #demo-list h2 {
    font-size:1.5em !important;
  }
}

#demo-list .demo button {
  color: #5e73e0;
  border: 2px solid #5e73e0;
  background-color: transparent;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  padding: 0.3em 1em;
  line-height: 1.7em;
  cursor:pointer;
  display: inline-block;
  margin-top: 30px;
  transition: all 300ms ease 0ms;
}

#demo-list .demo button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content:'\f054';
  position: absolute;
  margin-left:-0.5em;
  opacity: 0;
  transition: all 300ms ease 0ms;
}

#demo-list .demo button:hover {
  color: #ffffff;
  background-color: #5e73e0;
  border: 2px solid transparent;
  padding: 0.3em 2em 0.3em 0.7em;
}

#demo-list .demo button:hover::after {
  opacity:1;
  margin-left: 0.5em;
}

#demo-list .demo .demo-graphic {
  width: 36.7%;
}

#demo-list .demo .demo-content {
  width: 57.8%;
}

@media only screen and (max-width: 767px) {
  #demo-list .demo .demo-graphic,
  #demo-list .demo .demo-content {
    width:100%;
  }
}

#demo-list .demo .demo-graphic img {
  width: 100%;
}

#demo-list .demo h2 {
  position: relative;
}

#demo-list .demo p.notice {
  font-size:14px;
  font-style: italic;
  margin-top:20px;
}

@media only screen and (max-width: 767px) {
  #demo-list .demo p.notice {
    font-size:0.75em;
  }
}

#demo-list .demo sup.suggest {
  line-height: 1;
  font-size: 0.5em;
  color: #fff;
  background: #091c4f;
  padding: 3px;
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  top: -30px;
  left: 0;
}

@media only screen and (max-width: 767px) {
  #demo-list .demo sup.suggest {
    top:-18px;
  }
}

footer {
  text-align: center;
}

footer p {
  line-height: 1.5;
  font-size: 14px;
  color: #041c32;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

footer a,
footer a:visited,
footer a:active,
footer a:hover {
  text-decoration: none;
  color: #5e73e0;
}

footer #logoSmarpy {
  height:130px;
}

footer #logoCs {
  height:50px;
}