@import url(../fonts/Lato.css);
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  font-size: 14px;
  font-family: var(--font-family);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: var(--font-family);
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  cursor: pointer;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

:root {
  --max-width: 1100px;
  --container-img-rm: 95px;
  --main-color: #ed4c5c;
  --font-family: "Lato";
  --hamburger-animation-speed: 0.8s;
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 5px;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: auto;
  width: 100%;
  overflow: overlay;
}

.max-width {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#hamburger {
  z-index: 25;
  cursor: pointer;
  position: fixed;
  width: 23px;
  height: 23px;
  top: 50px;
  left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#hamburger > div {
  height: 16.6666666667%;
  width: 100%;
  background-color: #111;
}
#hamburger > div:nth-child(1) {
  animation: outT var(--hamburger-animation-speed) forwards;
}
#hamburger > div:nth-child(2) {
  animation: outM var(--hamburger-animation-speed) forwards;
  background-color: var(--main-color);
}
#hamburger > div:nth-child(3) {
  animation: outBtm var(--hamburger-animation-speed) forwards;
}
@keyframes outT {
  0% {
    transform: translateY(10px) rotate(45deg) scale(1.1);
  }
  50% {
    transform: translateY(10px) rotate(0deg) scale(1.1);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(10px) rotate(0deg) scale(1.1);
  }
  100% {
    transform: translateY(10px) rotate(45deg) scale(1.1);
  }
}
@keyframes outBtm {
  0% {
    width: 100%;
    transform: translateY(-10px) rotate(-45deg) scale(1.1);
    /* or 135deg */
  }
  50% {
    width: 100%;
    transform: translateY(-10px) rotate(0deg) scale(1.1);
  }
  100% {
    width: 50%;
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
    width: 50%;
  }
  50% {
    transform: translateY(-10px) rotate(0deg) scale(1.1);
    width: 100%;
  }
  100% {
    transform: translateY(-10px) rotate(-45deg) scale(1.1);
    /* or 135deg */
  }
}
@keyframes outM {
  0% {
    width: 0%;
  }
  18% {
    width: 0%;
  }
  20% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
@keyframes inM {
  0% {
    width: 100%;
  }
  15% {
    width: 100%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}
#hamburger.opened > div:nth-child(2) {
  animation: inM var(--hamburger-animation-speed) forwards;
}
#hamburger.opened > div:nth-child(1) {
  animation: inT var(--hamburger-animation-speed) forwards;
}
#hamburger.opened > div:nth-child(3) {
  animation: inBtm var(--hamburger-animation-speed) forwards;
  transition: width calc(var(--hamburger-animation-speed) * 2);
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 20;
  height: 75px;
  top: 17px;
  position: fixed;
}
.navbar .logo {
  height: 29px;
}
.navbar .nav-links-list {
  height: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-links-list .nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 25px;
}
.navbar .nav-links-list .nav-link:last-child {
  margin-right: 0;
}
.navbar .nav-links-list .nav-link a {
  text-decoration: none;
  color: #fff;
}
.navbar .nav-links-list .nav-link.active {
  font-weight: bold;
}

.button {
  border-radius: 6px;
  background-color: transparent;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  border: 1px solid #fff;
  padding: 12px 29px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url("../assets/headerBackground.png") no-repeat center/cover;
}
.header .max-width {
  flex-direction: column;
}
.header p {
  color: #fff;
}
.header__title {
  font-size: 72px;
  letter-spacing: 0.05em;
}
.header__subtitle {
  margin-top: 40px;
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 36px;
  max-width: 470px;
  font-size: 24px;
  text-align: center;
}
.header .button {
  color: var(--main-color);
  background-color: #fff;
  padding: 16px 52px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-12939 > .max-width {
  margin: 95px 0;
}
.container-12939 > .max-width > div:nth-child(1) {
  max-width: 445px;
  flex-basis: calc(50% - 35px);
}
.container-12939 > .max-width > div:nth-child(1) p {
  color: #000;
}
.container-12939 > .max-width > div:nth-child(1) .container-12939__title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 45px;
  line-height: 43px;
}
.container-12939 > .max-width > div:nth-child(1) .container-12939__subtitle {
  margin-bottom: 20px;
  line-height: 20px;
}
.container-12939 > .max-width > div:nth-child(1) .container-12939__subtitle,
.container-12939 > .max-width > div:nth-child(1) a {
  font-size: 14px;
  text-align: justify;
}
.container-12939 > .max-width > div:nth-child(1) a {
  color: var(--main-color);
}
.container-12939 > .max-width > div:nth-child(2) {
  flex-basis: calc(50% - 35px - var(--container-img-rm));
  margin-right: var(--container-img-rm);
  border-radius: 17px;
}
.container-12939 > .max-width > div:nth-child(2) img {
  max-width: 445px;
  border-radius: 17px;
  height: 100%;
  width: 100%;
}

.container-95128 {
  background-color: #fafafa;
}
.container-95128 .max-width {
  flex-direction: column;
  justify-content: start;
}
.container-95128__title {
  margin-top: 63px;
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: #000;
}
.container-95128 .items-wrapper {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
.container-95128 .items-wrapper .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-basis: 30%;
}
.container-95128 .items-wrapper .item img {
  width: 100%;
  border-radius: 8px;
}
.container-95128 .items-wrapper .item div {
  padding: 0 20px;
  padding-top: 35px;
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: -77.5px;
  margin-left: 30px;
  margin-right: 30px;
}
.container-95128 .items-wrapper .item div span,
.container-95128 .items-wrapper .item div a {
  color: #101010;
  width: 100%;
  text-align: center;
  line-height: 18px;
}
.container-95128 .items-wrapper .item div .item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 22px;
}
.container-95128 .items-wrapper .item div .item__subtitle {
  font-size: 12px;
  margin-bottom: 30px;
}
.container-95128 .items-wrapper .item div .item__link {
  color: var(--main-color);
  font-weight: 700;
  font-size: 12px;
}

#technology {
  background-color: #fff;
}
#technology .items-wrapper {
  margin-bottom: 100px;
}

.item124 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-basis: calc(25% - 60px);
}
.item124 > svg {
  margin-top: -52.5px;
}
.item124 .item124__num,
.item124 .item124__title,
.item124 .item124__subtitle {
  text-align: center;
}
.item124 .item124__num {
  font-weight: 700;
  font-size: 100px;
  color: rgba(16, 16, 16, 0.08);
}
.item124 .item124__title {
  font-weight: 700;
  font-size: 18px;
  color: #101010;
}
.item124 .item124__subtitle {
  font-size: 12px;
  margin-top: 12.5px;
  line-height: 14px;
}

.container-12939-512 {
  background: var(--main-color);
}
.container-12939-512 .max-width > div:nth-child(1) p {
  color: #fff;
}
.container-12939-512 .max-width > div:nth-child(1) .container-12939__subtitle {
  margin-bottom: 45px;
}
.container-12939-512 .max-width > div:nth-child(1) > div > svg:nth-child(2) {
  margin: 0 23px;
}

.input-field {
  border: 1px solid #333333;
  border-radius: 6px;
  height: 60px;
  width: 100%;
  padding: 20px 0;
  padding-left: 30px;
}
.input-field::placeholder {
  font-size: 16px;
  color: rgba(19, 39, 67, 0.5);
  border-radius: 6px;
}

.container-12939-256 > .max-width {
  align-items: flex-start;
  margin-top: 117px;
}
.container-12939-256 > .max-width > div:nth-child(1) .container-12939__subtitle {
  margin-top: 0;
}
.container-12939-256 > .max-width > div:nth-child(2) {
  flex-basis: calc(50% - 35px);
  margin-right: 0;
}
.container-12939-256 > .max-width > div:nth-child(2) > form > div {
  display: flex;
  max-width: 100%;
}
.container-12939-256 > .max-width > div:nth-child(2) > form > div > input {
  margin-top: 0;
}
.container-12939-256 > .max-width > div:nth-child(2) > form > div > input:nth-child(1) {
  margin-right: 30px;
}
.container-12939-256 > .max-width > div:nth-child(2) > form > input {
  margin-top: 24px;
}
.container-12939-256 > .max-width > div:nth-child(2) > form > button {
  margin-top: 27px;
}
.container-12939-256 > .max-width > div:nth-child(2) > form .button {
  color: #fff;
  background-color: var(--main-color);
  padding: 16px 34px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #fafafa;
}
.footer .max-width {
  margin-top: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.footer__fields {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer__field {
  flex-basis: calc(25% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__field .field__title {
  font-weight: 700;
  font-size: 18px;
  text-align: start;
  color: #101010;
  width: 100%;
  margin-bottom: 33px;
}
.footer__field .field__content {
  width: 100%;
}
.footer__field .field__content p,
.footer__field .field__content li,
.footer__field .field__content a,
.footer__field .field__content span {
  font-size: 12px;
  color: #101010;
}
.footer__field .field__content a:hover {
  text-decoration: underline;
}
.footer__field .field__content p:nth-child(2) {
  margin: 5px 0;
}
.footer__field .field__content img {
  height: 31px;
  width: 100%;
}
.footer__field .field__content ul {
  list-style-type: none;
}
.footer__field .field__content ul li {
  cursor: pointer;
}
.footer__field .field__content ul li:nth-child(2), .footer__field .field__content ul li:nth-child(4) {
  margin: 5px 0;
}
.footer__field .field__content .field__links {
  margin-top: 20px;
}
.footer__field .field__content .field__links svg {
  cursor: pointer;
}
.footer__field .field__content .field__links svg:nth-child(2) {
  margin: 0 12px;
}
.footer__copyright {
  margin-top: 90px;
  margin-bottom: 45px;
  font-size: 12px;
  color: #101010;
}

/* MEDIA */

/*# sourceMappingURL=style.css.map */
