body {
  background: linear-gradient(45deg, #edf5f7 0%, rgba(237, 245, 247, 0) 70%), linear-gradient(135deg, #edeef7 10%, rgba(237, 238, 247, 0) 80%), linear-gradient(225deg, #f7edf7 10%, rgba(247, 237, 247, 0) 80%), linear-gradient(315deg, #eff7ed 100%, rgba(239, 247, 237, 0) 70%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  perspective: 2000px;
}
content {
  display: flex;
  flex-direction: column;
  min-height: calc( 100vh - 79px );
  box-sizing: border-box;
}
main {
  width: auto;
}
main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: 'Open Sans';
}
footer.footer-copyright {
  margin-top: auto;
  color: #999999;
  margin-left: auto;
}
footer.footer-columns {
  background: #000000;
  color: #999999;
  font-size: 15px;
  padding: 50px 0 50px 0;
}
footer.footer-columns h3 {
  font-size: 18px;
}
footer.footer-columns .footer-logo {
  max-width: 90%;
}
footer.footer-columns a:hover {
  text-decoration: underline;
}
#search {
  margin: 150px auto 50px auto;
  width: fit-content;
  position: relative;
}
#search input {
  border: 2px solid #cecece;
  border-radius: 30px;
  padding: 8px 20px;
  width: 400px;
  max-width: 60vw;
  font-size: 17px;
  font-family: inherit;
  background: none;
  color: white;
}
#search ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  font-weight: 200;
}
#search .iconify {
  font-size: 17px;
  position: absolute;
  right: 15px;
  top: 13px;
  opacity: .4;
}
.firma-link {
  display: block;
  text-decoration: none;
  margin-bottom: 15px;
  padding: 10px 25px;
  border-radius: 20px;
  background: #111111;
  color: #cecece;
  border: 1px solid transparent;
}
.firma-link:hover {
  border-color: currentColor;
}
.firma-link .f-url {
  color: blue;
  margin-bottom: 5px;
  font-weight: 100;
  font-size: 14px;
}
.firma-link .f-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.firma-link .f-description {
  opacity: 70%;
  font-size: 13px;
}
.home-logo-1 {
  margin: 30px auto 30px auto;
}
.home-logo-1 img {
  display: block;
  width: 400px;
  margin: 0 auto 0 auto;
}
.home-logo-2 {
  margin: 30px auto 30px auto;
}
.home-logo-2 img {
  display: block;
  width: 400px;
  margin: 0 auto 0 auto;
}
.home-intro {
  text-align: center;
  margin: 80px 0 30px 0;
  font-size: 40px;
  font-weight: 800;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .home-intro {
    font-size: 22px;
  }
}
#brand img {
  will-change: transform, filter;
  --shadow-x: 0px;
  --shadow-y: 0px;
  --shadow-blur: 50px;
  --axis-x: 1;
  --axis-y: 1;
  --axis-z: 0;
  --tilt: 2deg;
  transform: rotate3d(var(--axis-x), var(--axis-y), var(--axis-z), var(--tilt));
  filter: drop-shadow(var(--shadow-x) var(--shadow-y) var(--shadow-blur) rgba(10, 0, 30, 0.5));
}
@media screen and (max-width: 768px) {
  #brand img {
    width: 300px;
  }
}
.home-why {
  padding: 50px;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.home-why article {
  box-shadow: 17px 20px 40px rgba(0, 0, 0, 0.21);
  border-radius: 2px;
  box-sizing: border-box;
  padding: 50px 25px 25px 25px;
}
.home-why article .row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.home-why article .row .iconify {
  margin-right: 15px;
  color: #999999;
  font-size: 16px;
  flex-shrink: 0;
}
.home-why article h3 {
  text-align: center;
  color: black;
}
.home-why article .icon {
  transition: all 1s;
  display: block;
  padding: 12px 20px;
  background: red;
  margin: 0 auto 20px auto;
  font-size: 45px;
  color: white;
  border-radius: 4px;
  border: 4px solid red;
  width: fit-content;
}
.home-why article:hover .icon {
  transform: rotate(360deg);
  background: none !important;
  border-radius: 8px;
}
.home-why article .icon.icon1 {
  background: #e64a2c;
  border-color: #e64a2c;
}
.home-why article .icon.icon2 {
  background: #2194f2;
  border-color: #2194f2;
}
.home-why article .icon.icon3 {
  background: #fab600;
  border-color: #fab600;
}
.home-why article .icon.icon4 {
  background: #47ac2c;
  border-color: #47ac2c;
}
.home-why article:hover .icon.icon1 svg path[fill=currentColor] {
  color: #e64a2c;
}
.home-why article:hover .icon.icon2 svg path[fill=currentColor] {
  color: #2194f2;
}
.home-why article:hover .icon.icon3 svg path[fill=currentColor] {
  color: #fab600;
}
.home-why article:hover .icon.icon4 svg path[fill=currentColor] {
  color: #47ac2c;
}
@media screen and (max-width: 768px) {
  .home-why {
    padding: 10px;
    display: block;
  }
  .home-why article {
    margin-bottom: 20px;
  }
}
.pricing h2 {
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  color: black;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pricing h2 {
    font-size: 22px;
  }
}
.pricing .pricing-cta {
  text-align: center;
}
.pricing button {
  background: #2194f2;
  color: white;
  font-size: 30px;
  padding: 25px 50px;
  margin: 30px auto 0 auto;
  border: none;
  border-radius: 4px;
  display: block;
  width: fit-content;
}
.pricing .pricing-range {
  max-width: 600px;
  margin: 20px auto 20px auto;
}
.pricing .pricing-info {
  margin-top: 40px;
  font-size: 30px;
  text-align: center;
}
.pricing .pricing-info em {
  font-weight: 900;
  font-style: normal;
}
.pricing .pricing-info small {
  font-size: 21px;
  font-weight: 100;
}
.pricing #pricing-form {
  max-width: 300px;
  box-sizing: border-box;
  margin: 20px auto 0 auto;
}
.pricing #pricing-form input[type=email],
.pricing #pricing-form input[type=text] {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  border: 2px solid #2194f2;
  color: black;
  font-size: 17px;
  font-family: inherit;
}
.features {
  margin-top: 90px;
}
.features .li {
  max-width: 600px;
  display: flex;
  align-items: center;
  margin: 20px auto 20px auto;
}
.features .li .iconify {
  font-size: 50px;
  color: #2194f2;
  width: 80px;
  flex-shrink: 0;
}
.features .li h3 {
  color: black;
  font-size: 18px;
  font-weight: 700;
  margin: 0 5px 0 0;
  line-height: 1.3;
  padding: 15px 0 0 0;
}
.features .li p {
  font-size: 16px;
  margin-top: 0;
}
.download {
  margin-top: 90px;
}
.download h2 {
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  color: black;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .download h2 {
    font-size: 22px;
  }
}
.download .download-list {
  display: flex;
  justify-content: center;
}
.download .download-list a {
  margin: 10px;
}
.download .download-list a img {
  height: 60px;
}
@media screen and (max-width: 768px) {
  .download .download-list {
    flex-wrap: wrap;
  }
  .download .download-list a img {
    height: 40px;
  }
}
.testimonials {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
.testimonials article {
  width: 300px;
  margin: 25px;
  text-align: center;
}
.testimonials article p {
  font-style: italic;
}
.testimonials article .stars {
  color: #47ac2c;
  margin: 20px auto 20px auto;
  font-size: 22px;
}
.testimonials article em {
  font-style: normal;
  text-align: right;
  font-weight: 100;
}
