@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap");
::-webkit-scrollbar {
  width: 6px;
  height: 10px;
  background: transparent;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 20px transparent;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 50px #FFB812;
}

::-webkit-scrollbar-thumb:hover {
  -webkit-box-shadow: inset 0 0 50px #FFB812;
}

* {
  text-decoration: none;
  outline-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color: #949aab;
  background: #fff;
}

*, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #949aab;
}

h1, h2, h3, h4, h5 {
  position: relative;
  color: #2C3569;
  margin: 1em 0;
}

h1 {
  font-size: 2.5em;
}

h1::before {
  position: absolute;
  content: '';
  width: 80px;
  height: 2px;
  bottom: -1em;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#FFB812), to(#FBD317));
  background: linear-gradient(to right, #FFB812, #FBD317);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section {
  position: relative;
  width: 100%;
  margin-bottom: 10vh;
}

.btn {
  position: relative;
  padding: 15px 30px;
  text-transform: uppercase;
  font-size: .6em;
  font-weight: 700;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, from(#FFB812), to(#FBD317));
  background: linear-gradient(to right, #FFB812, #FBD317);
  color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(251, 211, 23, 0.12), 0 1px 2px rgba(251, 211, 23, 0.24);
          box-shadow: 0 1px 3px rgba(251, 211, 23, 0.12), 0 1px 2px rgba(251, 211, 23, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  -webkit-box-shadow: 0 14px 28px rgba(251, 211, 23, 0.25), 0 10px 10px rgba(251, 211, 23, 0.22);
          box-shadow: 0 14px 28px rgba(251, 211, 23, 0.25), 0 10px 10px rgba(251, 211, 23, 0.22);
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}

.hero .logo {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 4vh;
  left: 4vw;
}

.hero .logo img {
  width: 80px;
  height: 80px;
}

.hero .logo p {
  font-size: 40px;
  color: #2C3569;
}

.hero ul {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 6vh;
  right: 4vw;
  z-index: 9;
}

@media screen and (max-width: 962px) {
  .hero ul {
    display: none;
  }
}

.hero ul li {
  position: relative;
  margin: 10px 20px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
}

.hero ul li::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#FFB812), to(#FBD317));
  background: linear-gradient(to right, #FFB812, #FBD317);
  border-radius: 5px;
  z-index: -1;
  -webkit-transition: .3s;
  transition: .3s;
}

.hero ul li:hover::before {
  width: 100%;
}

.hero ul li a {
  color: #737373;
  margin: 5px;
}

.hero .text {
  position: relative;
  width: 40%;
  margin-left: 10%;
}

@media screen and (max-width: 962px) {
  .hero .text {
    width: 90%;
  }
}

.hero .text p {
  margin: 50px 0;
}

.hero .mockup {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 100vh;
}

@media screen and (max-width: 962px) {
  .hero .mockup {
    display: none;
  }
}

.hero .mockup::before, .hero .mockup::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 160vh;
  height: 120vh;
  border-radius: 50%;
  z-index: -1;
}

.hero .mockup::before {
  -webkit-transform: translateY(-20%) rotate(-10deg);
          transform: translateY(-20%) rotate(-10deg);
  background: #FCB90D;
}

.hero .mockup::after {
  -webkit-transform: translate(3%, -19%) rotate(-10deg);
          transform: translate(3%, -19%) rotate(-10deg);
  background: #e6e6e6;
}

.hero .mockup img {
  position: relative;
  width: 100%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}

.message {
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 962px) {
  .message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.message .box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 46%;
  height: 100%;
  margin: 2% 0;
}

@media screen and (max-width: 962px) {
  .message .box {
    width: 96%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.message .box ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 240px;
  height: 240px;
}

.message .box ul li {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 10px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition: .3s;
  transition: .3s;
}

.message .box ul li:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.message .box ul li a {
  position: relative;
  width: 100%;
  height: 100%;
}

.message .box ul li a img {
  position: relative;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 20px;
}

.message .text {
  width: 46%;
  margin: 0 2%;
}

@media screen and (max-width: 962px) {
  .message .text {
    width: 96%;
  }
}

.bot {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bot .mockup {
  position: relative;
  width: 40%;
}

@media screen and (max-width: 962px) {
  .bot .mockup {
    display: none;
  }
}

.bot .mockup img {
  position: relative;
  width: 100%;
  height: 80vh;
  margin-top: -10vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.bot .text {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  height: 60vh;
  padding-left: 15vw;
  background: -webkit-gradient(linear, left bottom, left top, from(#31386D), to(#31386D));
  background: linear-gradient(to top, #31386D, #31386D);
  border-radius: 30vh 0 0 30vh;
}

@media screen and (max-width: 962px) {
  .bot .text {
    width: 100%;
    border-radius: 0;
    padding: 0 5vw;
  }
}

.bot .text h1 {
  color: #fff;
}

.bot .text .btn {
  width: 150px;
}

.footer {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30vh 0 0 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#31386D), to(#31386D));
  background: linear-gradient(to top, #31386D, #31386D);
}

.footer h1 {
  color: #fff;
}

.footer h1::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer .sub {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  margin-top: 5vh;
}

.footer .sub .feeld {
  width: 220px;
  height: 40px;
  border: 0px;
  padding: 0px 30px;
  border-radius: 999px;
  color: #31386D;
  z-index: 99;
}

.footer .sub .feeld::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.footer .sub .feeld:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.footer .sub .feeld::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.footer .sub .feeld::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.footer .sub .btn {
  width: 150px;
  height: 40px;
  margin-left: -35px;
  border: 0;
  z-index: 1;
}

.footer #msg {
  visibility: hidden;
}

.footer .info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  margin: 50px 20%;
}

@media screen and (max-width: 962px) {
  .footer .info {
    width: 100%;
  }
}

.footer .info .contacts, .footer .info .disc {
  position: relative;
  width: 40%;
  margin: 0 20px;
  text-align: center;
}

@media screen and (max-width: 962px) {
  .footer .info .contacts, .footer .info .disc {
    width: 80%;
  }
}

.footer .info .contacts img, .footer .info .disc img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .info h3 {
  position: relative;
  width: 100%;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */