:root {
  --main-color: #182a53;
  --display-text: 3.75rem;
  --title-text: 1.5rem;
  --body-text: 1rem;
  --subtitle: 1.125rem;
  --main-text: 2rem;
}

.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;
}

.navbar {
  height: 8rem;
  background-color: var(--main-color);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: static;
  overflow: visible;
}

.brand {
  padding-top: 30px;
  padding-bottom: 30px;
}

.body {
  background-color: #efefef;
  font-family: Montserrat, sans-serif;
}

.nav-link {
  color: #fff;
  font-size: 1rem;
  line-height: 1rem;
  transition: all .3s cubic-bezier(.55, .055, .675, .19);
}

.nav-link:hover {
  border-bottom: 1px solid #fff;
}

.nav-button-white {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background-color: #fff;
  border-radius: 1.25rem;
  margin-left: 15px;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 700;
  transition: all .4s ease-in;
}

.nav-button-white:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
}

.nav-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.image {
  max-width: none;
}

.hero-section {
  height: 800px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1rem;
  line-height: 1.25rem;
}

.hero-wrapper {
  height: 100%;
  max-width: 1440px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
}

.hero-headings {
  flex-direction: column;
  justify-content: center;
  padding-left: 3rem;
}

.text-bold-xl {
  font-size: var(--display-text);
  line-height: 4rem;
}

.div-block {
  width: 100%;
  max-width: 1440px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.text-regular-xl {
  font-weight: 400;
}

.paragraph {
  font-size: 1rem;
  line-height: 1.5rem;
}

.image-2 {
  width: 100%;
  position: relative;
}

.hero-heading {
  width: 50%;
  height: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-image: url('../images/shape.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hero-image {
  width: 50%;
  height: 850px;
  background-image: url('../images/AdobeStock_249144679-1.webp');
  background-position: 0 0;
  background-size: cover;
  border-radius: 3rem;
  margin-top: 50px;
}

.hero-image:hover {
  background-image: url('../images/AdobeStock_249144679-1.webp');
  background-position: 0 0;
  background-size: cover;
}

.text-base {
  color: var(--main-color);
  font-size: 1rem;
  line-height: 1.5rem;
}

.hero-bt-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.button-white {
  color: var(--main-color);
  cursor: pointer;
  background-color: #fff;
  border-radius: 1.25rem;
  padding-top: 10px;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 400;
  line-height: 1.5rem;
  transition: all .1s ease-in;
}

.button-white:hover {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid #fff;
  padding-left: 50px;
  padding-right: 50px;
}

.button-white-o {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 1.25rem;
  padding-top: 10px;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 400;
  line-height: 1.5rem;
}

.about-section {
  height: 700px;
  background-image: url('../images/Dots.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
}

.about-wrapper {
  height: 100%;
  max-width: 1440px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
}

.about-heading {
  width: 50%;
  height: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.about-image {
  width: 50%;
  height: 100%;
  border-radius: 50px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 100px;
  display: flex;
}

.text-bold-l {
  color: var(--main-color);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 2.5rem;
}

.button-dark {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 1.25rem;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.button-dark.in-form {
  width: 100%;
}

.stankowsky-photo {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 50px;
  flex-direction: row;
  display: block;
}

.text-base-w {
  font-size: 1rem;
  line-height: 1.5rem;
}

.offer-section {
  height: auto;
  padding-top: 0;
  padding-bottom: 4rem;
}

.offer-wrapper {
  height: auto;
  max-width: 1440px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
}

.offer-heading {
  width: 100%;
  height: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.text-base-r {
  color: var(--main-color);
  text-align: right;
  font-size: 1rem;
  line-height: 1.5rem;
}

.offer-cards {
  width: 100%;
  justify-content: space-between;
  margin-top: 1rem;
  display: flex;
}

.offer-card {
  height: 100%;
  background-color: #fff;
  border-radius: 25px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  transition: all .5s ease-in;
  display: flex;
}

.offer-card:hover {
  background-color: #fff;
  background-image: linear-gradient(315deg, #e5edff, #fff);
}

.collection-list-wrapper {
  width: 100%;
  height: auto;
  margin-top: 3rem;
}

.offer-icon {
  display: none;
}

.offer-name {
  color: var(--main-color);
  font-size: var(--title-text);
  margin-top: 0;
  line-height: 2rem;
}

.offer-description {
  font-size: var(--body-text);
  margin-bottom: 0;
  line-height: 1.5rem;
}

.collection-list {
  width: 100%;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 3rem;
  display: grid;
}

.offer-card-header {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.offer-card-description {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.partners-section {
  height: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: none;
}

.partners-wrapper {
  height: auto;
  max-width: 1440px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
}

.partners-heading {
  width: 100%;
  height: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.logos-without-title {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

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

.clients-wrapper-three {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 0;
  display: flex;
}

.clients-image-three {
  mix-blend-mode: multiply;
  margin-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.footer-section {
  height: auto;
  background-color: var(--main-color);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-wrapper {
  height: auto;
  max-width: 1440px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
}

.footer-text {
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
}

.grid {
  width: 100%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: center;
  align-items: center;
}

.social-icons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  display: flex;
}

.footer-text-r {
  color: #fff;
  text-align: right;
  margin-bottom: 0;
  font-size: 1rem;
}

.social-icon-w {
  width: 25px;
  height: 25px;
  -webkit-text-fill-color: inherit;
  background-clip: content-box;
}

.contact-section {
  height: auto;
  background-color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact-wrapper {
  height: auto;
  max-width: 1440px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
}

.contact-heading {
  width: 50%;
  height: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 5rem;
  display: flex;
}

.form-wrapper {
  width: 50%;
  height: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.form-block {
  width: 100%;
}

.image-3 {
  width: 80%;
  border-radius: 50px;
}

.text-field-inform {
  height: 48px;
  border: 1px solid #dbdbdb;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 22px;
}

.text-field-inform:active {
  color: #3b2ae5;
  border-color: #dbdbdb;
}

.text-field-inform.bigger {
  height: auto;
  min-height: 58px;
}

.form-03-outer-div {
  width: 100%;
  max-width: 1100px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-title {
  color: #3b2ae5;
  text-transform: none;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

.button {
  text-transform: none;
  background-color: #3b2ae5;
  border-radius: 0;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  transition: all .2s;
}

.button:hover {
  opacity: .8;
}

.button.in-form {
  width: 100%;
  text-align: center;
}

.heading-2 {
  margin-top: 0;
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
}

.form-spacer {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  flex: 0 auto;
}

.content-wrap-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 40px;
  display: flex;
}

.paragraph-2 {
  opacity: .75;
  font-size: 16px;
  line-height: 22px;
}

._2-questions-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.contact-text {
  color: var(--main-color);
  margin-bottom: 1px;
}

.contact-method {
  color: #3b2ae5;
  align-items: center;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  transition: all .2s;
  display: flex;
}

.contact-method:hover {
  opacity: .8;
}

.contact-method.no-link:hover {
  opacity: 1;
}

.contact-method-wrap {
  align-items: center;
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
}

.form-block-03 {
  width: 100%;
  border: 1px solid #dbdbdb;
  margin-bottom: 0;
  padding: 20px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  background-color: var(--main-color);
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding: 4px;
  display: flex;
}

.link {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .menu-button {
    padding-top: 33px;
    padding-bottom: 33px;
  }

  .icon {
    color: #fff;
  }

  .hero-section {
    height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-heading {
    width: 100%;
  }

  .hero-image {
    display: none;
  }

  .about-section {
    height: auto;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .about-wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-image {
    margin-right: 0;
  }

  .collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .container {
    max-width: 728px;
  }

  .clients-image-three {
    margin-bottom: 30px;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-heading {
    width: 100%;
    padding-right: 0;
  }

  .form-wrapper {
    width: 100%;
    margin-top: 2rem;
  }

  .form-03-outer-div {
    grid-template-columns: 1fr;
  }

  .content-wrap-left {
    padding-left: 0;
    padding-right: 0;
  }

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

@media screen and (max-width: 767px) {
  .collection-list {
    grid-template-columns: 1fr;
  }

  .logos-without-title {
    padding: 60px 15px;
  }

  .clients-wrapper-three {
    margin-bottom: -30px;
  }

  .clients-image-three {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .social-icon-w {
    height: 30px;
  }

  .contact-heading {
    padding-right: 0;
  }

  .content-wrap-left {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .brand {
    max-width: 70%;
  }

  .menu-button {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-section {
    padding-top: 1rem;
  }

  .hero-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .text-bold-xl {
    text-align: center;
    font-size: 2rem;
    line-height: 2.5rem;
  }

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

  .hero-heading {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    align-items: center;
  }

  .text-base {
    text-align: center;
  }

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

  .about-wrapper {
    flex-direction: column-reverse;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about-heading {
    width: 100%;
    align-items: center;
  }

  .about-image {
    width: 100%;
  }

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

  .stankowsky-photo {
    height: 250px;
  }

  .text-base-w {
    text-align: center;
  }

  .offer-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .offer-heading {
    flex-direction: column;
    align-items: center;
  }

  .text-base-r, .offer-name {
    text-align: center;
  }

  .offer-description {
    display: none;
  }

  .offer-card-header {
    align-items: center;
  }

  .partners-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .partners-heading {
    flex-direction: column;
    align-items: center;
  }

  .container {
    max-width: none;
  }

  .clients-wrapper-three {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-bottom: 0;
    display: grid;
  }

  .clients-image-three {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-wrapper {
    flex-direction: column;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

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

  .footer-text-r {
    text-align: center;
  }

  .contact-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contact-heading, .form-wrapper {
    width: 100%;
    align-items: center;
  }

  ._2-questions-wrap {
    flex-direction: column;
  }

  .contact-method {
    margin-bottom: 10px;
  }

  .contact-method-wrap {
    flex-direction: column;
    margin-right: 0;
  }

  .form-block-03 {
    width: 100%;
    max-width: 100%;
  }

  .contact-icon {
    min-height: 22px;
    min-width: 22px;
  }
}

#w-node-_37f63927-d40e-21cd-02c2-3a67285003a6-d6fa0012 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_0e613c5e-2b31-925e-1c26-c3bee88947e4-d6fa0012 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-bbb8b8f4-8dc1-31ea-d8c3-0d185b3a2e05-d6fa0012 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


