:root {
  --bright-red: #ef233c;
  --light-grey: #edf2f4;
  --pink-red: #fc909d;
  --dark-grey: #8d99ae;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  background-color: var(--bright-red);
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-brand {
  color: var(--light-grey);
  position: static;
}

.navbar-brand:hover {
  color: var(--pink-red);
}

.navbar-brand.w--current {
  color: var(--light-grey);
}

.navbar-brand.w--current:hover {
  color: var(--pink-red);
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 10px;
  padding: 5px 10px;
  font-family: Lexend, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--pink-red);
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  background-color: var(--light-grey);
  color: #333;
  letter-spacing: 2px;
  text-transform: none;
  border-radius: 12px;
  margin-left: 10px;
  padding: 12px 25px;
  font-family: Lexend, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  background-color: var(--pink-red);
  color: #fff;
}

.button-primary:active {
  background-color: #43464d;
}

.footer-dark {
  background-color: var(--bright-red);
  border-bottom: 1px solid #e4ebf3;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  margin-top: 60px;
  padding: 50px 30px 15px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-brand {
  color: var(--light-grey);
  text-decoration: none;
}

.footer-brand:hover {
  color: var(--pink-red);
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 12px;
  font-family: Lexend, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}

.footer-link {
  color: #fff;
  margin-top: 12px;
  margin-bottom: 6px;
  font-family: Lexend, sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--pink-red);
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.body {
  background-color: #edf2f4;
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

.container-3 {
  max-width: 95%;
}

.heading {
  background-color: var(--light-grey);
  margin-bottom: 20px;
  font-family: Lexend, sans-serif;
  font-size: 42px;
  font-weight: 600;
}

.section {
  margin-top: 60px;
}

.column {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.button {
  background-color: var(--bright-red);
  border-radius: 12px;
  margin-left: 20px;
  font-family: Lexend, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.button:hover {
  background-color: var(--pink-red);
}

.button-2 {
  background-color: var(--bright-red);
  border-radius: 12px;
  margin-left: 20px;
  font-family: Lexend, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.button-2:hover, .button-2:active {
  background-color: var(--pink-red);
}

.div-block {
  background-color: var(--dark-grey);
  border-radius: 10px;
  max-width: 110px;
  padding-left: 8px;
  padding-right: 8px;
}

.heading-2 {
  color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lexend, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 36px;
  display: flex;
}

.image {
  border-radius: 15px;
}

.button-3 {
  background-color: var(--bright-red);
  border-radius: 12px;
  font-family: Lexend, sans-serif;
  font-size: 16px;
}

.button-3:hover {
  background-color: var(--pink-red);
}

.paragraph {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 22px;
}

.heading-3 {
  margin-top: 30px;
  font-family: Lexend, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.flex-block {
  margin-top: 20px;
}

.link-block {
  margin-right: 15px;
}

.image-2 {
  width: 50px;
  max-width: 50px;
}

.image-3 {
  max-width: 50px;
}

.link-block-2 {
  margin-right: 15px;
}

.image-4, .image-5, .image-6, .image-7 {
  max-width: 50px;
}

.about-me {
  margin-top: 20px;
}

.container-4 {
  max-width: 95%;
  margin-top: 20px;
}

.paragraph-2 {
  margin-top: 20px;
  font-size: 16px;
  line-height: 22px;
}

.div-block-2 {
  background-color: var(--dark-grey);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 85px;
  margin-top: 20px;
  display: flex;
}

.heading-4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 5px;
  padding-right: 5px;
  font-family: Lexend, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 36px;
}

.heading-5 {
  margin-bottom: 20px;
  font-family: Lexend, sans-serif;
  font-size: 42px;
  font-weight: 600;
}

.quick-stack {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.heading-6 {
  margin-top: 0;
  font-family: Lexend, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.div-block-3 {
  background-color: #333;
  width: 700px;
  max-width: 200px;
  height: 2px;
}

.paragraph-3 {
  max-width: 90%;
  margin-top: 15px;
  padding-right: 0;
  font-size: 16px;
  line-height: 22px;
}

.image-8, .image-9 {
  border-radius: 15px;
}

.section-3 {
  margin-top: 40px;
}

.container-5 {
  max-width: 95%;
}

.div-block-4 {
  background-color: var(--dark-grey);
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 80px;
  display: flex;
}

.heading-7 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lexend, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 36px;
}

.heading-8 {
  font-family: Lexend, sans-serif;
  font-size: 42px;
  font-weight: 600;
}

.paragraph-4 {
  font-size: 16px;
  line-height: 22px;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-5 {
  background-color: var(--pink-red);
  border-radius: 15px;
}

.heading-9 {
  color: var(--light-grey);
  margin-top: 10px;
  margin-left: 10px;
  font-family: Lexend, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 30px;
}

.paragraph-5 {
  color: var(--light-grey);
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 16px;
}

.image-10 {
  max-width: 64px;
  margin-top: 20px;
  margin-left: 10px;
}

.section-4 {
  margin-top: 40px;
}

.button-4 {
  background-color: var(--bright-red);
  border-radius: 12px;
  margin-top: 25px;
  font-family: Lexend, sans-serif;
  font-size: 16px;
}

.button-4:hover {
  background-color: var(--pink-red);
}

.container-6 {
  max-width: 95%;
}

.div-block-6 {
  background-color: var(--dark-grey);
  border-radius: 12px;
  max-width: 75px;
}

.heading-10 {
  color: var(--light-grey);
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  font-family: Lexend, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 36px;
  display: flex;
}

.heading-11 {
  font-family: Lexend, sans-serif;
  font-size: 42px;
  font-weight: 600;
}

.submit-button {
  background-color: var(--bright-red);
  color: var(--light-grey);
  border-radius: 12px;
  margin-top: 10px;
  font-family: Lexend, sans-serif;
  font-size: 16px;
}

.submit-button:hover {
  background-color: var(--pink-red);
}

.field-label, .field-label-2, .field-label-3 {
  font-size: 16px;
}

.text-field, .text-field-2, .textarea {
  border-radius: 8px;
}

.image-11 {
  border-radius: 15px;
}

.heading-12 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lexend, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.heading-13 {
  margin-top: 0;
  font-family: Lexend, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.body-2 {
  font-family: Roboto, sans-serif;
}

.bold-text {
  color: #fff;
  font-family: Lexend, sans-serif;
  font-weight: 400;
}

.bold-text-2 {
  color: #fff;
}

.flex-block-2 {
  text-decoration: none;
}

.image-12 {
  width: 32px;
  max-width: 32px;
}

.image-13, .image-14, .image-15, .image-16, .image-17, .image-18 {
  max-width: 32px;
}

.section-5 {
  margin-top: 40px;
}

.container-7 {
  max-width: 95%;
}

.div-block-7 {
  background-color: var(--dark-grey);
  border-radius: 12px;
  max-width: 90px;
  padding-left: 8px;
  padding-right: 8px;
}

.heading-14 {
  color: var(--light-grey);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-family: Lexend, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 36px;
  display: flex;
}

.heading-15 {
  font-family: Lexend, sans-serif;
  font-size: 42px;
  font-weight: 600;
}

.paragraph-6 {
  margin-top: 20px;
  font-size: 16px;
  line-height: 22px;
}

.column-2 {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.image-19 {
  border-radius: 15px;
}

.text-field-3, .text-field-4 {
  border-radius: 8px;
}

.heading-16 {
  font-family: Lexend, sans-serif;
  font-weight: 600;
}

.column-4 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.image-20, .image-21, .image-22 {
  border-radius: 15px;
}

.image-23, .image-24, .image-25 {
  max-width: 64px;
  margin-top: 20px;
  margin-left: 10px;
}

.columns-2 {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.paragraph-7 {
  font-size: 16px;
  line-height: 22px;
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: var(--dark-grey);
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
    border-radius: 8px;
  }

  .container-2 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    margin-top: 0;
    padding-bottom: 30px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .column {
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
  }

  .paragraph {
    text-align: center;
  }

  .flex-block {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
  }

  .container-4 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .paragraph-2 {
    text-align: center;
  }

  .container-5 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .heading-8 {
    text-align: center;
  }

  .container-6 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .heading-10 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .field-label, .field-label-2, .field-label-3 {
    text-align: center;
  }

  .container-7 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .heading-14 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-15, .paragraph-6 {
    text-align: center;
  }

  .column-2 {
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
  }

  .heading-16 {
    text-align: center;
  }

  .column-3 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .form-block {
    margin-top: 20px;
  }

  .form {
    flex-flow: column;
    display: flex;
  }

  .column-4 {
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
  }

  .image-22 {
    margin-top: 10px;
  }

  .columns-2 {
    display: block;
  }

  .paragraph-7 {
    text-align: center;
  }

  .column-5, .form-2, .column-6 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: none;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .container-2 {
    max-width: none;
  }

  .heading {
    text-align: center;
  }

  .button, .button-2 {
    margin-left: 10px;
    font-size: 12px;
  }

  .button-3 {
    font-size: 12px;
  }

  .image-2 {
    width: 32px;
    max-width: 32px;
  }

  .image-3 {
    max-width: 32px;
  }

  .link-block-2.last {
    margin-right: 0;
  }

  .image-4, .image-5, .image-6, .image-7 {
    max-width: 32px;
  }

  .container-4 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .paragraph-3 {
    text-align: center;
  }

  .container-5 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .heading-8, .paragraph-4 {
    text-align: center;
  }

  .grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .container-6 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .heading-10 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .container-7 {
    max-width: 95%;
  }

  .columns-2 {
    display: block;
  }

  .paragraph-7 {
    text-align: center;
  }

  .column-5 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .bold-text-3 {
    text-align: center;
  }

  .form-2, .column-6 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .columns-3 {
    max-width: 100%;
  }
}

#w-node-c91f4c03-bf8d-35fd-1e8e-29a2fb939af7-4aa3a0f7, #w-node-a924b3c3-064e-a470-ca97-326e9956475e-4aa3a0f7, #w-node-_1e0d2651-cf1e-b0ca-75e1-bf5cf575ed49-f75fb2f4, #w-node-_1e0d2651-cf1e-b0ca-75e1-bf5cf575ed50-f75fb2f4, #w-node-a08497d5-5e22-620c-f6fa-07a964cf55be-944a4773, #w-node-a08497d5-5e22-620c-f6fa-07a964cf55c5-944a4773 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


