#header {
  background-image: url(../images/bg-pattern-intro.svg), -webkit-gradient(linear, left top, right top, from(#ff8f70), to(#ff3d54));
  background-image: url(../images/bg-pattern-intro.svg), linear-gradient(90deg, #ff8f70, #ff3d54);
  background-repeat: no-repeat;
  background-position-y: 52.2%;
  background-position-x: 25.5%;
  border-radius: 0 0 0 100px;
}

#header #header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 77%;
  padding: 63px 0 0 0;
  margin: auto;
}

#header #header-wrapper #header-logo {
  width: 15%;
}

#header #header-wrapper #header-menu {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #header-wrapper #header-menu ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 3px 0;
  width: 100%;
  padding: 0;
}

#header #header-wrapper #header-menu ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 5% 0 0;
  list-style-type: none;
  cursor: pointer;
  -webkit-transition: 100ms cubic-bezier(0, 1.5, 1, 1.5);
  transition: 100ms cubic-bezier(0, 1.5, 1, 1.5);
}

#header #header-wrapper #header-menu ul li::before {
  content: "";
  position: absolute;
  background-color: white;
  bottom: -1px;
  left: 50%;
  width: 0%;
  height: 2px;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

#header #header-wrapper #header-menu ul li::after {
  content: url(../images/icon-arrow-light.svg);
  margin-left: 10%;
  cursor: pointer;
  -webkit-transition: 200ms linear;
  transition: 200ms linear;
}

#header #header-wrapper #header-menu ul li:hover {
  color: white;
}

#header #header-wrapper #header-menu ul li:hover::before {
  left: 0%;
  width: 100%;
}

#header #header-wrapper #header-menu ul .pop-up-show {
  -webkit-transform: translateY(0%) scale(1) !important;
          transform: translateY(0%) scale(1) !important;
}

#header #header-wrapper #header-menu ul .arrow-rotation::after {
  -webkit-transform: rotate(-180deg) translateY(-25%);
          transform: rotate(-180deg) translateY(-25%);
}

#header #header-wrapper #header-menu ul .pop-up-menu {
  position: absolute;
  top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  border-radius: 7px;
  margin: 0px 0px 0 -21px;
  padding: 22px 55px 22px 15px;
  -webkit-box-shadow: 0px 15px 40px #0000005e;
          box-shadow: 0px 15px 40px #0000005e;
  cursor: default;
  -webkit-transition: 200ms linear;
  transition: 200ms linear;
  -webkit-transform: translateY(-60%) scale(0);
          transform: translateY(-60%) scale(0);
}

#header #header-wrapper #header-menu ul .pop-up-menu:nth-of-type(2) {
  left: 14%;
}

#header #header-wrapper #header-menu ul .pop-up-menu:last-of-type {
  left: 30%;
}

#header #header-wrapper #header-menu ul .pop-up-menu a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  margin: 8px 10px;
  font-size: 15px;
  font-family: "Overpass", sans-serif;
  font-weight: 300;
  -webkit-transition: 150ms linear;
  transition: 150ms linear;
}

#header #header-wrapper #header-menu ul .pop-up-menu a:hover {
  color: black;
  text-shadow: 0px 0px 1px black;
}

#header #header-wrapper #header-menu a {
  font-family: "Ubuntu", sans-serif;
  position: relative;
  text-decoration: none;
  margin-right: 3%;
  font-size: 16px;
  font-weight: 500;
  color: white;
  -webkit-transition: 300ms cubic-bezier(0, 1.5, 1, 1.5);
  transition: 300ms cubic-bezier(0, 1.5, 1, 1.5);
  opacity: 0.7;
}

#header #header-wrapper #header-menu a::before {
  content: "";
  position: absolute;
  background-color: white;
  bottom: -1px;
  left: 50%;
  width: 0%;
  height: 2px;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

#header #header-wrapper #header-menu a:hover {
  opacity: 1;
}

#header #header-wrapper #header-menu a:hover::before {
  left: 0%;
  width: 100%;
}

#header #header-wrapper #header-menu .header-sign-up {
  width: 18%;
  height: 110%;
  background-color: white;
  color: #ff3d54;
  -webkit-transition: 600ms cubic-bezier(0, 1.5, 1, 1.5);
  transition: 600ms cubic-bezier(0, 1.5, 1, 1.5);
}

#header #header-wrapper #header-menu .header-sign-up:hover {
  color: white;
  background-color: #ff7a85;
}

#header #header-wrapper #header-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  font-family: "Ubuntu", sans-serif;
}

#header #header-wrapper #mobile-menu-icon {
  display: none;
}

#header #greetings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 130px 0 0 0;
}

#header #greetings h1 {
  margin: 0;
  font-family: "Overpass", sans-serif;
  font-size: 64px;
  letter-spacing: -2px;
  color: white;
  font-weight: 600;
  text-align: center;
}

#header #greetings p {
  margin: 10px 0 0 0;
  font-family: "Overpass", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
  opacity: 0.8;
}

#header #greetings #buttons {
  margin: 46px 0 0 0;
  padding: 0 0 155px 0;
}

#header #greetings #buttons .start-4-free {
  background-color: white;
  color: #ff3d54;
  margin: 0 6px;
  -webkit-transition: 600ms cubic-bezier(0, 1.5, 1, 1.5);
  transition: 600ms cubic-bezier(0, 1.5, 1, 1.5);
}

#header #greetings #buttons .start-4-free:hover {
  color: white;
  background-color: #ff7a85;
}

#header #greetings #buttons .learn-more {
  border: 1px solid white;
  background-color: transparent;
  color: white;
  margin: 0 6px;
  -webkit-transition: 600ms cubic-bezier(0, 1.5, 1, 1.5);
  transition: 600ms cubic-bezier(0, 1.5, 1, 1.5);
}

#header #greetings #buttons .learn-more:hover {
  color: #ff3d54;
  background-color: white;
}

#header .button {
  font-family: "Ubuntu", sans-serif;
  border: none;
  padding: 0;
  width: 136px;
  height: 48px;
  border-radius: 30px;
  min-width: 74px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

#future-design {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 70px 0 0 0;
  font-family: "Overpass", sans-serif;
  height: 900px;
}

#future-design h2 {
  position: absolute;
  width: 60%;
  text-align: center;
  top: 125px;
  left: 20%;
  right: 20%;
  color: #1f3f5b;
  font-size: 40px;
  letter-spacing: -1px;
  margin: 28px auto;
}

#future-design #future-design-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 1000px;
}

#future-design #future-design-wrapper #future-design-text {
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 55%;
  padding: 210px 0 0 0;
}

#future-design #future-design-wrapper #future-design-text .design-text {
  width: 70%;
  margin-right: 70px;
}

#future-design #future-design-wrapper #future-design-text .design-text h3 {
  font-size: 26px;
  color: #1f3f5b;
  font-size: 28px;
  margin: 28px auto 22px auto;
}

#future-design #future-design-wrapper #future-design-text .design-text p {
  font-size: 15px;
  color: #4b5862;
  letter-spacing: 1px;
  line-height: 28px;
  margin: 0;
  width: 98%;
  margin-bottom: 45px;
}

#future-design #future-design-wrapper #future-design-image {
  height: 100%;
  width: 45%;
  background-image: url(../images/illustration-editor-desktop.svg);
  background-repeat: no-repeat;
}

#state-of-art {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  width: 100%;
  height: 400px;
  background-image: url(../images/bg-pattern-circles.svg), -webkit-gradient(linear, left top, right top, from(#2c2d3f), to(#3f4164));
  background-image: url(../images/bg-pattern-circles.svg), linear-gradient(90deg, #2c2d3f, #3f4164);
  background-repeat: no-repeat;
  background-position-y: 82%;
  background-position-x: -50%;
  border-radius: 0 100px 0 100px;
}

#state-of-art .state-art-image {
  width: 42%;
  margin-left: 8%;
}

#state-of-art .state-art-image img {
  position: relative;
  top: 22px;
  left: 10px;
  width: 91%;
}

#state-of-art .state-art-text {
  width: 42%;
  margin-right: 7%;
  margin-left: 1%;
  font-family: "Overpass", sans-serif;
  color: white;
}

#state-of-art .state-art-text h3 {
  font-size: 38px;
  margin: 30px 0 0 0;
}

#state-of-art .state-art-text p {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 28px;
  width: 90%;
  margin-top: 20px;
}

#free-open-simple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 116px 0 109px 0;
  height: 800px;
}

#free-open-simple #free-open-simple-image {
  width: 50%;
  background-image: url(../images/illustration-laptop-desktop.svg);
  background-repeat: no-repeat;
  background-position-x: 110%;
}

#free-open-simple #free-open-simple-text {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#free-open-simple #free-open-simple-text .design-text {
  width: 75%;
  margin-left: 15px;
  font-family: "Overpass", sans-serif;
}

#free-open-simple #free-open-simple-text .design-text h3 {
  font-size: 26px;
  color: #1f3f5b;
  font-size: 28px;
  margin: 38px auto 22px auto;
}

#free-open-simple #free-open-simple-text .design-text p {
  font-size: 15px;
  color: #4b5862;
  letter-spacing: 1px;
  line-height: 28px;
  margin: 0;
  width: 100%;
  margin-bottom: 40px;
}

#footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 359px;
  background-color: #25252d;
  border-radius: 0 100px 0 0;
}

#footer .attribution {
  position: absolute;
  width: 50%;
  left: 25%;
  right: 25%;
  top: -14%;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  color: #25252d;
  font-weight: 500;
}

#footer .attribution a {
  position: relative;
  text-decoration: none;
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  color: #ff3d54;
  -webkit-transition: 200ms linear;
  transition: 200ms linear;
}

#footer .attribution a::before {
  content: "";
  position: absolute;
  background-color: #ff3d54;
  bottom: -1px;
  left: 50%;
  width: 0%;
  height: 2px;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

#footer .attribution a:hover {
  color: red;
}

#footer .attribution a:hover::before {
  left: 0%;
  width: 100%;
}

#footer #footer-logo {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#footer #footer-logo img {
  margin: 70px 22px 0 0;
}

#footer #footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 55%;
  margin: 65px auto;
  font-family: "Ubuntu", sans-serif;
}

#footer #footer-links .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0px 25% 0 0px;
}

#footer #footer-links .links p {
  color: white;
  font-size: 15px;
  margin-bottom: 35px;
  margin-top: 12px;
}

#footer #footer-links .links a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 15px;
  margin-bottom: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.7;
  -webkit-transition: 200ms linear;
  transition: 200ms linear;
}

#footer #footer-links .links a::before {
  content: "";
  position: absolute;
  background-color: white;
  bottom: -1px;
  left: 50%;
  width: 0%;
  height: 2px;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

#footer #footer-links .links a:hover {
  opacity: 1;
}

#footer #footer-links .links a:hover::before {
  left: 0%;
  width: 100%;
}

@media (max-width: 1000px) {
  #header {
    border-radius: 0 0 0 200px !important;
    background-image: url(../images/bg-pattern-intro.svg), -webkit-gradient(linear, left top, left bottom, from(#ff8f70), to(#ff3d54)) !important;
    background-image: url(../images/bg-pattern-intro.svg), linear-gradient(180deg, #ff8f70, #ff3d54) !important;
    background-position-y: 38.2% !important;
    background-position-x: 39.5% !important;
  }
  #header-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 87% !important;
    padding: 95px 0 0 0 !important;
    height: 100px;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  #header-wrapper #header-logo {
    width: 30% !important;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #header-wrapper #header-logo img {
    width: 85% !important;
  }
  #mobile-menu-icon {
    display: block !important;
    width: 10% !important;
    cursor: pointer;
  }
  #header-menu {
    position: absolute;
    top: 200px;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    background-color: white !important;
    color: #25252d !important;
    width: 80% !important;
    left: 10%;
    right: 10%;
    border-radius: 5px;
    z-index: -1;
  }
  #header-menu ul {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #c8c8cb;
    width: 90% !important;
    padding: 10px !important;
  }
  #header-menu ul li {
    margin: 10px 0 10px 0 !important;
    color: #1f3f5b !important;
  }
  #header-menu ul li::before {
    background-color: #1f3f5b !important;
  }
  #header-menu ul li::after {
    content: url(../images/icon-arrow-dark.svg) !important;
  }
  #header-menu ul .pop-up-menu {
    position: relative !important;
    top: 0 !important;
    margin: 0 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background-color: #efeff1 !important;
    padding: 0 !important;
    width: 90% !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    max-height: 0;
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 0;
    z-index: -1 !important;
  }
  #header-menu ul .pop-up-menu:nth-of-type(2) {
    left: 0 !important;
  }
  #header-menu ul .pop-up-menu:last-of-type {
    left: 0 !important;
  }
  #header-menu ul .pop-up-show {
    max-height: 100% !important;
    opacity: 1 !important;
    margin: 10px 0 10px 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1;
    z-index: 1 !important;
  }
  #header-menu ul .pop-up-show:nth-of-type(2) {
    left: 0 !important;
  }
  #header-menu ul .pop-up-show:last-of-type {
    left: 0 !important;
  }
  #header-menu a {
    margin: 10px 0 20px 0 !important;
    color: #1f3f5b !important;
    opacity: 1 !important;
  }
  #header-menu a::before {
    background-color: #1f3f5b !important;
  }
  #header-menu .button {
    margin: 0 0 20px 0;
    padding: 10px;
  }
  .menu-mobile-on {
    z-index: 2 !important;
  }
  #greetings {
    margin: 200px 0 0 0 !important;
  }
  #greetings h1 {
    font-size: 72px !important;
    width: 80%;
  }
  #greetings p {
    text-align: center;
    width: 80%;
    font-size: 36px !important;
    margin: 30px 0 0 0 !important;
  }
  #buttons {
    padding: 0px 0 315px 0 !important;
    margin: 90px 0 0 0 !important;
  }
  #buttons .start-4-free {
    margin: 0 15px !important;
  }
  #buttons .learn-more {
    margin: 0 15px !important;
    border-width: 2px !important;
  }
  #buttons .button {
    width: 275px;
    height: 95px;
    border-radius: 50px;
    font-size: 32px;
  }
  /*--!!!HEADER!!!--*/
  #future-design {
    margin-bottom: 150px;
    height: auto;
  }
  #future-design h2 {
    position: relative;
    font-size: 55px !important;
    margin: 135px auto 80px auto !important;
    width: 100%;
    inset: auto;
  }
  #future-design #future-design-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: auto;
  }
  #future-design #future-design-wrapper #future-design-image {
    height: 675px;
    width: 100%;
    background-image: url(../images/illustration-editor-mobile.svg);
    background-position: center;
    background-size: 108%;
  }
  #future-design #future-design-wrapper #future-design-text {
    height: auto;
    width: 100%;
    padding: 0;
    margin-top: 60px;
  }
  #future-design #future-design-wrapper #future-design-text .design-text {
    width: 80%;
    margin: auto;
  }
  #future-design #future-design-wrapper #future-design-text .design-text h3 {
    font-size: 56px;
    text-align: center;
    width: 95%;
    line-height: 1;
  }
  #future-design #future-design-wrapper #future-design-text .design-text p {
    font-size: 32px;
    line-height: 52px;
    text-align: center;
  }
  /*--!!!FUTURE DESIGN!!!--*/
  #state-of-art {
    border-radius: 0 200px 0 200px;
    background-position: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 500px;
    height: unset;
    background-position-y: -100%;
  }
  #state-of-art .state-art-image {
    width: 100% !important;
    margin: 0;
    height: 200px;
  }
  #state-of-art .state-art-image img {
    position: relative;
    width: 100% !important;
    left: auto;
    top: -170%;
    max-width: 800px;
  }
  #state-of-art .state-art-text {
    margin: auto;
    width: 80%;
    margin-top: 300px;
    margin-bottom: 283px;
  }
  #state-of-art .state-art-text h3 {
    font-size: 72px;
    margin: 0;
    text-align: center;
  }
  #state-of-art .state-art-text p {
    font-size: 32px;
    line-height: 52px;
    width: 100%;
    text-align: center;
  }
  /*--!!!STATE OF ART!!!--*/
  #free-open-simple {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: unset;
    margin-top: 155px;
  }
  #free-open-simple #free-open-simple-image {
    height: 655px;
    width: 100%;
    background-image: url(../images/illustration-laptop-mobile.svg);
    background-repeat: no-repeat;
    background-size: 133%;
    background-position: center;
  }
  #free-open-simple #free-open-simple-text {
    width: 85%;
    margin: 65px auto;
  }
  #free-open-simple #free-open-simple-text .design-text {
    width: 100%;
    margin: 0;
  }
  #free-open-simple #free-open-simple-text .design-text h3 {
    font-size: 56px;
    text-align: center;
    margin: 38px auto 50px auto;
  }
  #free-open-simple #free-open-simple-text .design-text p {
    text-align: center;
    font-size: 32px;
    line-height: 54px;
  }
  /*--!!!FREE OPEN SIMPLE!!!--*/
  #footer {
    border-radius: 0 200px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: unset;
  }
  #footer .attribution {
    width: 70%;
    left: 15%;
    right: 15%;
    top: -7%;
    font-size: 25px;
  }
  #footer #footer-logo {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer #footer-logo img {
    margin: 150px 0 0 0;
    width: 27%;
  }
  #footer #footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 150px auto;
  }
  #footer #footer-links .links {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    margin-bottom: 70px;
  }
  #footer #footer-links .links p {
    font-size: 36px;
    margin-bottom: 65px;
  }
  #footer #footer-links .links a {
    font-size: 36px;
    margin-bottom: 25px;
  }
}

@media (max-width: 613px) {
  #buttons {
    padding: 0px 0 215px 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #buttons .button {
    margin: 20px auto !important;
  }
}

@media (max-width: 505px) {
  #header-wrapper {
    padding: 15px 0 0 0 !important;
  }
  #header-menu {
    top: 100px !important;
  }
  #greetings h1 {
    font-size: 56px !important;
  }
  #greetings p {
    font-size: 20px !important;
  }
  #buttons .button {
    width: 175px !important;
    height: 55px !important;
    font-size: 20px;
  }
  #future-design h2 {
    font-size: 38px !important;
    margin: 100px auto 0px auto !important;
  }
  #future-design #future-design-image {
    height: 575px !important;
  }
  #future-design #future-design-text .design-text h3 {
    font-size: 38px !important;
  }
  #future-design #future-design-text .design-text p {
    font-size: 15px !important;
    line-height: 25px !important;
  }
  #state-of-art {
    margin-top: 50px !important;
  }
  #state-of-art .state-art-image img {
    top: -50% !important;
  }
  #state-of-art .state-art-text {
    margin-top: 175px !important;
    margin-bottom: 110px !important;
  }
  #state-of-art .state-art-text h3 {
    font-size: 42px !important;
  }
  #state-of-art .state-art-text p {
    font-size: 15px !important;
    line-height: 25px !important;
  }
  #free-open-simple #free-open-simple-text .design-text h3 {
    font-size: 38px !important;
  }
  #free-open-simple #free-open-simple-text .design-text p {
    font-size: 15px !important;
    line-height: 25px !important;
  }
  .attribution {
    top: -5% !important;
    font-size: 14px !important;
  }
  #footer-links {
    margin: 100px auto !important;
  }
  #footer-links .links {
    margin-bottom: 40px !important;
  }
  #footer-links .links p {
    font-size: 20px !important;
    margin-bottom: 35px !important;
  }
  #footer-links .links a {
    font-size: 15px !important;
  }
}

html {
  max-width: 2100px;
  margin: auto;
  scroll-behavior: smooth;
}

body {
  min-width: 300px;
  margin: 0;
  background-color: white;
}
/*# sourceMappingURL=style.css.map */