@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Rubik:wght@300&family=Ubuntu:wght@300&display=swap");

.header-nav-link {
  font-family: Ubuntu;
}
* {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}

.button {
  display: inline-block;
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease-out;
  position: relative;
  background-color: transparent;
}

.button-primary {
  background-color: #3761ef;
  color: #fff;
  overflow: hidden;
}
.button-primary span {
  font-family: Ubuntu;
}

.button-small {
  height: 47px;
  line-height: 47px;
  padding-left: 33px;
  padding-right: 33px;
}
.button-normal,
.button-small {
  font-size: 16px;
  font-weight: 400;
}
/*START HEADER*/
.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  border: 0;
  margin: 0;
  overflow: visible;
  height: 40px;
  width: 42px;
  border-radius: 4px;
  background-color: transparent;
  position: relative;
  top: -2px;
  right: -5px;
}

.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #0061ff;
}

.hamburger-box {
  width: 28px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  width: 28px;
  height: 4px;
  background-color: #0061ff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner:after,
.hamburger-inner:before {
  content: "";
  display: block;
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 75ms;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner:before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 75ms ease 0.12s,
    transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 75ms ease,
    transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}

.fixed-header .header {
  position: fixed;
  top: 0;
  left: 0;
}

.fixed-header .header + * {
  margin-top: 164px;
}

.header {
  padding-right: 20px;
  padding-top: 55px;
  padding-bottom: 49px;
  position: relative;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: #fff;
}

.header-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.mr-auto {
  margin-right: auto;
}

.header-nav {
  list-style: none;
  display: flex;
  align-items: center;
}

.header-nav-item {
  padding-left: 40px;
}

.header-nav-item.is-active .header-nav-link {
  color: #3761ef;
}

.header-nav-link {
  color: #8e9ac1;
}

.header-nav-link:hover {
  color: #3761ef;
}

.header-nav .has-children {
  position: relative;
}

.header-nav .has-children .header-nav-link {
  display: flex;
  align-items: center;
}

.header-nav .has-children .header-nav-link .arrow-down {
  margin-left: 7px;
  height: 6px;
}

.header-nav .has-children .header-nav-link:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-color: currentcolor transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0;
  margin-left: 10px;
  display: none;
}

.header-nav .has-children:hover .header-nav-children-wrapper {
  visibility: visible;
}

.header-nav
  .has-children:hover
  .header-nav-children-wrapper
  .header-nav-children {
  opacity: 1;
  transform: translateY(0);
}

.header-nav .has-children:hover .header-nav-link {
  color: #3f4862;
}

.header-nav-children {
  list-style: none;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 13px 26px rgba(142, 154, 193, 0.28);
  opacity: 0;
  padding: 19px 0;
  transition: all 0.25s ease-out;
  transform: translateY(20px);
}

.header-nav-children-wrapper {
  visibility: hidden;
  position: absolute;
  padding: 20px;
  min-width: 240px;
  left: 40px;
  top: 100%;
  margin-left: -50%;
}

.header-nav-children-wrapper:hover {
  visibility: visible;
}

.header-nav-children-wrapper:hover .header-nav-children {
  opacity: 1;
  transform: translateY(0);
}

.header-nav-children li.is-active a {
  color: #3761ef;
}

.header-nav-children a {
  display: block;
  color: #3f4862;
  padding: 11px 34px;
}

.header-nav-children a:hover {
  color: #3761ef;
}

.logo {
  height: 60px;
  margin-right: 30px;
}

.logo.beta {
  position: relative;
}

.logo.beta:after {
  content: "beta";
  text-transform: uppercase;
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: red;
  border-radius: 2px;
  text-indent: 0;
  position: absolute;
  width: 26px;
  height: 12px;
  font-family: Arial;
  left: 14px;
  bottom: -2px;
  display: none;
}

.hamburger,
.mobile-logo {
  display: none;
}

@media (max-width: 960px) {
  .logo {
    display: none;
  }

  .mobile-logo {
    display: unset;
  }
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    flex-direction: column;
  }

  .hamburger {
    display: flex;
  }

  .header-mobile {
    display: flex !important;
  }

  body.menu-opened {
    max-height: 100vh;
    overflow: hidden;
  }

  body.menu-opened .header-mobile {
    left: 0;
  }

  body.menu-opened .header-mobile-overlay {
    display: flex;
  }
}

.header-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  height: 100%;
  left: -340px;
  width: 336px;
  max-width: 90%;
  transition: all 0.25s ease-out;
  background-color: #fff;
}

.header-mobile-wrapper {
  padding: 70px 40px 60px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 100%;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.header-mobile-overlay {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(29, 48, 103, 0.3);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-mobile-nav-item {
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.2s ease-in-out;
}

.header-mobile-nav-item + .header-mobile-nav-item {
  margin-top: 10px;
}

.header-mobile-nav-item.is-active {
  background-color: rgba(55, 97, 239, 0.08);
}

.header-mobile-nav-item.is-active a {
  color: #3761ef;
}

.header-mobile-nav-item.is-active a svg g > * {
  fill: #3761ef;
}

.header-mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px 14px;
  color: #3f4862;
  font-weight: 500;
  width: 100%;
  height: 48px;
  white-space: nowrap;
}

.header-mobile-nav-icon {
  display: flex;
  align-items: center;
  width: 26px;
  margin-right: 21px;
  flex-shrink: 0;
}

.header-mobile-nav-icon svg {
  width: 100%;
}

.header-mobile-buttons a {
  height: 48px;
  width: 100%;
  display: grid;
  place-items: center;
}
.header-mobile-buttons {
  margin-top: auto;
}

.header-mobile-divider {
  width: 100%;
  height: 1px;
  background-color: #e7ebf7;
  margin-top: 30px;
  margin-bottom: 40px;
}

.mobile-menu-nav {
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-bottom: 50px;
}

.mobile-menu--link {
  width: 100%;
  padding: 12px 20px 14px;
  color: #3f4862;
}

.mobile-menu--item {
  font-weight: 400;
  font-size: 16px;
}

.mobile-menu--item + .mobile-menu--item {
  margin-top: 23px;
}

.mobile-menu--item.is-active a {
  color: #3761ef;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  margin-left: auto;
  margin-right: 150px;
}

.language-switcher:hover .language-code,
.language-switcher:hover > svg {
  color: #3f4862;
}

.language-switcher:hover .language-switcher-menu {
  display: block;
}

.language-switcher .icon-globe {
  width: 1.25rem;
  color: #9ca2b5;
  height: 1.25rem;
  cursor: pointer;
}

.language-switcher .icon-check {
  width: 0.75rem;
  height: 0.75rem;
  color: #4585ff;
}

.language-switcher-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: -10px;
  z-index: 10;
}

.language-switcher-menu-content {
  margin-top: 20px;
  box-shadow: 0 13px 26px rgba(142, 154, 193, 0.28);
  background: #fff;
  border-radius: 10px;
  min-width: 200px;
}

.language-item {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 11px 35px;
  font-size: 0.875rem;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  color: #3f4862;
}

.language-item:hover {
  color: #4585ff;
}

.language-item-text {
  flex: 1 1 0%;
}

.language-code {
  text-transform: capitalize;
  margin-left: 7px;
  color: #8e9ac1;
}

@media (max-width: 900px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .header + * {
    margin-top: 70px !important;
  }

  .header .mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header .mobile-logo img {
    width: 110px;
  }

  .header .button.button-primary.desktop,
  .header .button.button-profile.desktop {
    display: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    transition: none;
  }

  .header .button-profile {
    justify-content: center;
  }

  .header .button-profile .button-icon {
    margin-right: 15px;
  }

  .language-switcher {
    margin-right: 0;
  }

  .language-code {
    display: none;
  }
}
/*END HEADER*/

/*Footer*/
.footer {
  padding-bottom: 120px;
  padding-top: 120px;
}

.footer-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-nav {
  list-style: none;
}

.footer-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.footer-nav-item:not(:last-of-type) {
  margin-bottom: 16px;
}

.footer-nav .is-active a {
  color: #0e0f12;
}

.footer-nav-link {
  color: #929cb9;
  white-space: nowrap;
  text-decoration: none;
}

.footer-nav-link:hover {
  color: #0e0f12;
}

.footer-nav-container {
  display: flex;
  flex-direction: column;
}

.footer-nav-container + .footer-nav-container {
  margin-left: 140px;
}

.footer-nav-title {
  display: flex;
  font-size: 16px;
  color: #4e5874;
  margin-bottom: 40px;
  font-weight: 500;
  text-transform: capitalize;
}

.footer-info {
  max-width: 400px;
  margin-right: auto;
}

.footer-info h3 {
  color: #abbbd3;
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-info p {
  font-size: 14px;
  font-weight: 400;
}

.footer-copyright {
  display: none;
}

.social {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: filter 0.25s ease-in-out;
}

.social-link {
  display: flex;
  filter: grayscale(100%);
  transition: filter 0.2s ease-in-out;
}

.social-link:hover {
  filter: grayscale(0);
}

.social-link + .social-link {
  margin-left: 22px;
}

.social-text {
  font-size: 12px;
  color: #929cb9;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .footer-info {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 0 40px;
  }

  .footer-nav-wrapper {
    width: 100%;
  }

  .footer-nav-container {
    margin: 40px 20px !important;
    align-items: center;
    flex: 1;
  }

  .footer-nav-item {
    text-align: center;
  }

  .social {
    margin-bottom: 0;
  }

  .social-text {
    margin-right: 20px;
  }
}

@media (max-width: 900px) {
  .footer {
    padding: 45px 0;
  }

  .footer-nav-wrapper {
    display: none;
  }

  .footer-info {
    margin-bottom: 0;
    flex-direction: column;
  }

  .footer-copyright {
    display: unset;
  }

  .footer-follow {
    display: none;
  }

  .social-text {
    margin-top: 22px;
    margin-right: 0;
    font-size: 12px;
  }
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.bg {
  position: relative;
}

.bg img {
  width: 100%;
}

.bg .bg-content img {
  width: 223px;
}

.bg .bg-content {
  position: absolute;
  top: 50%;
  max-width: 600px;
  width: 100%;
  transform: translateY(-50%);
  left: 122px;
}

.bg .bg-content .bg-title {
  font-size: 54px;
  margin-top: 20px;
  color: white;
  font-weight: 400;
}

.bg .bg-content .bg-text {
  max-width: 470px;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  margin-top: 50px;
  color: white;
}

.content-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 118px 122px;
}

.content-wrapper .content-wrapper-info {
  max-width: 588px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-wrapper .content-wrapper-info h3 {
  font-size: 40px;
  margin-bottom: 29px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
}

.content-wrapper .content-wrapper-info p {
  font-size: 24px;
  color: rgba(0, 0, 0, 1);
  line-height: 33px;
}

.content-wrapper img {
  max-width: 478px;
  width: 100%;
}

.content-wrapper-bg {
  display: flex;
  justify-content: center;
  background-color: rgba(246, 246, 246, 1);
  width: 100%;
}

.content-container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 900px) {
  .container-padding {
    padding: 0 10px !important;
  }
  /* .container {
    padding: 0 !important;
  } */
  #close-menu {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: transparent;
  }
}

.only_mobile {
  display: none;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.pl-20 {
  padding-left: 50px;
}

.pr-20 {
  padding-right: 50px;
}

.web-img {
  display: block;
}

.mobile-img {
  display: none;
}

.mobile-img-container {
  margin-top: -20px;
}

.mobile-img-container img {
  width: 100%;
}

.active {
  display: block;
}

.inactive {
  display: none;
}

@media screen and (max-width: 768px) {
  .only_web {
    display: none;
  }
  .only_mobile {
    display: block;
  }
}

@media (max-width: 1250px) {
  .bg .bg-content {
    max-width: 400px;
    width: 100%;
  }
  .bg .bg-content .bg-title {
    font-size: 30px;
  }

  .content-wrapper img {
    max-width: 378px;
  }

  .content-wrapper .content-wrapper-info h3 {
    font-size: 30px;
  }

  .content-wrapper .content-wrapper-info p {
    font-size: 20px;
  }
}

@media (max-width: 1000px) {
  .bg .bg-content {
    left: 50px;
    max-width: 350px;
    width: 100%;
  }
  .bg .bg-content .bg-title {
    font-weight: 700;
    font-size: 25px;
  }

  .content-wrapper {
    padding: 18px 44px;
  }

  .content-wrapper img {
    max-width: 328px;
  }

  .wrapper-margin {
    margin-top: 100px;
  }

  .content-wrapper-bg {
    margin-top: 100px;
  }

  .content-wrapper .content-wrapper-info h3 {
    font-size: 20px;
  }

  .content-wrapper .content-wrapper-info p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .bg .bg-content img {
    width: 193px;
  }
  .bg .bg-content .bg-title {
    text-align: center;
    line-height: 33px;
    margin-top: 40px;
  }

  .bg .bg-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .bg .bg-content-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bg .bg-content .bg-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
  }

  .web-img {
    display: none;
  }

  .mobile-img {
    display: block;
  }
  .content-wrapper img {
    max-width: 130px;
  }

  .content-wrapper-bg {
    margin-top: 40px;
  }

  .wrapper-margin {
    margin-top: 40px;
  }

  .pl-20 {
    padding-left: 17px;
  }

  .pr-20 {
    padding-right: 17px;
  }

  .content-wrapper .content-wrapper-info p {
    line-height: 20px;
  }

  .content-wrapper .content-wrapper-info h3 {
    font-size: 15px;
    font-weight: 700;
  }

  .content-wrapper .content-wrapper-info p {
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .bg .bg-content {
    max-width: 300px;
    width: 100%;
  }

  .bg .bg-content .bg-text {
    margin-top: 20px;
  }

  .bg .bg-content .bg-title {
    margin-top: 20px;
    font-size: 20px;
  }

  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .content-wrapper .content-wrapper-info p {
    margin-bottom: 10px;
  }

  .content-wrapper .content-wrapper-info h3 {
    margin-top: 10px;
  }

  .pl-20 {
    padding-left: 0;
  }

  .pr-20 {
    padding-right: 0;
  }
}
