.sticky-nav {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 3;
  width: 100vw;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.sticky-nav.button {
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  border-style: none;
  border-width: 0px;
  background-color: rgba(0, 0, 0, 0.25);
  color: #a7a7a7;
}

.sticky-nav.button:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

.nav-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  margin: 0px;
  padding: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr -webkit-max-content -webkit-max-content -webkit-max-content;
  -ms-grid-columns: 1fr max-content max-content max-content;
  grid-template-columns: 1fr -webkit-max-content -webkit-max-content -webkit-max-content;
  grid-template-columns: 1fr max-content max-content max-content;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.nav-grid.nav-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.nav-grid.nav-button:hover {
  background-color: transparent;
}

.nav-logo-link {
  display: block;
  height: 60px;
  margin-right: 0px;
  margin-left: 0px;
  padding: 0px;
}

.nav-logo {
  width: 170px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
}

.embend {
  display: block;
  width: 30px;
  color: #fff;
  text-decoration: none;
}

.embend.p-b {
  width: 23px;
  color: #a7a7a7;
}

.list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column-gap: 25px;
}

.list-item.li--b {
  grid-column-gap: 15px;
}

.phones {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-row-gap: 0px;
}

.phones.phone-hidden {
  display: none;
}

.phones.phones-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  grid-column-gap: 20px;
}

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

.phone.p-b {
  color: #a7a7a7;
}

.main {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  color: #fff;
}

.background-video {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.button {
  padding: 7px 11px;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 4px;
  background-color: rgba(56, 152, 236, 0);
  -webkit-transition: background-color 350ms ease;
  transition: background-color 350ms ease;
}

.button:hover {
  background-color: #3c81bd;
}

.click-button {
  display: none;
}

.cover {
  position: absolute;
  z-index: 3;
  display: block;
  width: 100vw;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
}

.text-block {
  color: #a7a7a7;
  text-decoration: none;
}

.link-block {
  text-decoration: none;
}

.container {
  display: -ms-grid;
  display: grid;
  max-width: 1200px;
  margin-top: 110px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto auto;
}

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

.info-section {
  display: -ms-grid;
  display: grid;
  margin-top: 10px;
  grid-auto-columns: 1fr;
  grid-column-gap: 8px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1.25fr 1fr 1fr;
  grid-template-columns: 1.25fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.card {
  display: -ms-grid;
  display: grid;
  height: 250px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: minmax(600px, 1fr) 1fr;
  grid-template-columns: minmax(600px, 1fr) 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-radius: 5px;
  background-color: #000;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.7);
}

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

.inp {
  border-radius: 5px;
}

.inp.inp2 {
  width: 250px;
}

.submit-button {
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 5px;
  background-color: transparent;
  -webkit-transition: background-color 350ms ease;
  transition: background-color 350ms ease;
}

.submit-button:hover {
  background-color: #3c81bd;
}

.line {
  width: 15%;
  height: 5px;
  border-radius: 1px;
  background-color: #fff;
}

.heading {
  text-transform: none;
}

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

.success-message {
  border-style: solid;
  border-width: 1px;
  border-color: #19e298;
  border-radius: 5px;
  background-color: hsla(0, 0%, 86.7%, 0);
}

.error-message {
  background-color: rgba(179, 30, 30, 0.85);
}

.modal {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 10;
  display: none;
  width: 100vw;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.m-card {
  position: relative;
  width: 330px;
  height: 270px;
  border-radius: 5px;
  background-color: #774545;
  box-shadow: 0 0 10px 2px #000;
  color: #fff;
  text-align: center;
}

.container-6 {
  display: block;
  max-width: 1100px;
  padding-top: 80px;
  padding-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading-31 {
  margin-top: 26px;
  margin-bottom: 26px;
  text-align: center;
}

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

.rich-text-block-2 {
  margin-top: 15px;
}

.close-icon {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 5;
  display: block;
  width: 20px;
  margin-top: 10px;
  margin-right: 10px;
  color: #fff;
  font-size: 10px;
}

.heading-32 {
  margin-top: 40px;
}

.form-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.success-message-2 {
  background-color: hsla(0, 0%, 86.7%, 0);
}

.error-message-2 {
  background-color: transparent;
}

.div-block {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-2 {
  position: absolute;
  top: -40px;
  width: 420px;
  height: 240px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 1px 1px 10px 2px #000;
}

.slider {
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 86.7%, 0);
}

.slide-nav {
  display: none;
}

.slide {
  width: 100%;
  height: 100%;
}

.image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}

.image.plan {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.icon {
  color: #fff;
  text-shadow: 1px 1px 10px #000;
  mix-blend-mode: color-burn;
}

.lightbox-link {
  display: block;
  width: 100%;
  height: 100%;
}

.main-cover {
  position: absolute;
  z-index: 3;
}

@media screen and (min-width: 1280px) {
  .inp.inp2 {
    width: 250px;
  }

  .m-card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #774545;
    color: #fff;
  }

  .container-6 {
    max-width: 1200px;
  }

  .close-icon {
    color: #fff;
  }

  .heading-32 {
    margin-top: 30px;
  }

  .form-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .form-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

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

  .card {
    -ms-grid-columns: minmax(340px, 1fr) 1fr;
    grid-template-columns: minmax(340px, 1fr) 1fr;
  }

  .inp.inp2 {
    width: 250px;
  }

  .modal {
    display: none;
  }

  .m-card {
    position: relative;
    color: #fff;
    text-align: center;
  }

  .container-6 {
    max-width: 750px;
  }

  .close-icon {
    color: #fff;
  }

  .heading-32 {
    margin-top: 40px;
  }

  .form-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-2 {
    width: 349px;
  }

  .icon {
    border-radius: 25%;
  }
}

@media screen and (max-width: 767px) {
  .sticky-nav {
    position: absolute;
    display: block;
    background-color: rgba(0, 0, 0, 0.25);
  }

  .sticky-nav.button {
    position: relative;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    margin-top: 0px;
  }

  .nav-grid {
    text-align: center;
  }

  .nav-grid.nav-button {
    grid-column-gap: 10px;
  }

  .nav-logo {
    width: 140px;
  }

  .list-item {
    grid-column-gap: 15px;
  }

  .main {
    overflow: visible;
    height: 905px;
    min-height: auto;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .background-video {
    position: relative;
    height: 960px;
    min-height: auto;
  }

  .cover {
    position: absolute;
    height: auto;
    min-height: auto;
    padding-right: 5px;
    padding-left: 5px;
  }

  .text-block.tx {
    width: 150px;
    text-align: center;
  }

  .container {
    max-width: 560px;
    margin-top: 0px;
    -ms-grid-rows: auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto;
  }

  .card-section {
    margin-top: 30px;
  }

  .head-section {
    margin-top: 91px;
  }

  .card {
    height: 500px;
    margin-right: 5px;
    margin-left: 5px;
    padding-right: 15px;
    padding-left: 15px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 250px auto;
    grid-template-rows: 250px auto;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.7);
  }

  .heading {
    font-size: 35px;
  }

  .heading-2 {
    margin-top: 5px;
  }

  .modal {
    display: none;
  }

  .container-6 {
    max-width: 550px;
  }

  .div-block-2 {
    position: static;
    width: 500px;
    height: 225px;
  }

  .icon {
    mix-blend-mode: color-burn;
  }
}

@media screen and (max-width: 479px) {
  .sticky-nav {
    padding: 0px;
  }

  .sticky-nav.button {
    position: relative;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    display: block;
    margin-top: 15px;
  }

  .nav-grid {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: row;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 100px;
    grid-template-rows: 100px;
  }

  .nav-logo-link {
    margin-left: 10px;
    border: 0px none #000;
    text-decoration: line-through;
  }

  .nav-logo {
    display: block;
    width: 140px;
    text-decoration: none;
  }

  .list-item {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .list-item.li--b {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    grid-column-gap: 20px;
  }

  .phones {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .phones.phone-hidden {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .phone.mimi {
    font-size: 16px;
  }

  .background-video {
    height: 960px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
  }

  .list-item-2 {
    display: none;
  }

  .list-item-2.lb {
    display: none;
  }

  .button {
    display: none;
  }

  .list-item-3 {
    text-decoration: none;
  }

  .click-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

  .container {
    max-width: 350px;
    padding-right: 2px;
    padding-left: 2px;
    grid-row-gap: 8px;
  }

  .card-section {
    margin-top: 0px;
  }

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

  .card {
    height: 450px;
    max-width: 340px;
    grid-row-gap: 5px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 230px auto;
    grid-template-rows: 230px auto;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.7);
  }

  .form {
    grid-row-gap: 8px;
  }

  .heading {
    font-size: 25px;
    line-height: 30px;
  }

  .heading-3 {
    font-size: 18px;
  }

  .modal {
    display: none;
  }

  .container-6 {
    max-width: 350px;
  }

  .heading-31 {
    font-size: 30px;
    line-height: 35px;
  }

  .div-block {
    display: block;
    padding-right: 5px;
    padding-left: 5px;
  }

  .div-block-2 {
    position: static;
    width: 100%;
    height: 200px;
  }

  .icon {
    mix-blend-mode: color-dodge;
  }

  .form-block-2 {
    padding-right: 6px;
    padding-left: 6px;
  }
}

#w-node-_64d960c7-7731-ac04-2d1c-959ba952eab4-44311aef {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_2516edc3-c3a3-b0bb-ce46-d20070aa972e-44311aef {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-a4a2301d-e71f-8a8e-ed31-af5eeccf84c5-44311aef {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-_01666681-c9f3-c3b6-28a1-0f0166d0059d-44311aef {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_3d68adca-862d-61ca-5533-835840dd013e-44311aef {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-cc91c60a-e09a-5ac9-71ea-af71faf7ef31-44311aef {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-af2f1172-f35f-2814-4c52-04aafa7c2d36-44311aef {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-row-span: 5;
  grid-row-end: 8;
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_4a7f5289-2030-b020-3db9-6031c6efedf5-44311aef {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-aad58672-7873-1757-7e7e-900c0f79db25-44311aef {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-_4a7f5289-2030-b020-3db9-6031c6efedfd-44311aef {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_066d3944-d737-5e52-e9de-1800b0b6b105-44311aef {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_1dc160bd-4706-cc08-386c-b7d144641513-44311aef {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-f10b06c9-0703-1b78-d944-2a445134d810-1ebb2179 {
  -ms-grid-column-align: start;
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-_01666681-c9f3-c3b6-28a1-0f0166d0059d-44311aef {
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  #w-node-af2f1172-f35f-2814-4c52-04aafa7c2d36-44311aef {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 3;
    grid-row-end: 6;
    -ms-grid-row-align: start;
    align-self: start;
  }

  #w-node-_4a7f5289-2030-b020-3db9-6031c6efedf5-44311aef {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-_4a7f5289-2030-b020-3db9-6031c6efedfd-44311aef {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_64d960c7-7731-ac04-2d1c-959ba952eab4-44311aef {
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-_64d960c7-7731-ac04-2d1c-959ba952eabd-44311aef {
    -ms-grid-column-align: end;
    justify-self: end;
  }

  #w-node-_01666681-c9f3-c3b6-28a1-0f0166d0059d-44311aef {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-_3d68adca-862d-61ca-5533-835840dd013e-44311aef {
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-cc91c60a-e09a-5ac9-71ea-af71faf7ef31-44311aef {
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-_066d3944-d737-5e52-e9de-1800b0b6b105-44311aef {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  #w-node-_1dc160bd-4706-cc08-386c-b7d144641513-44311aef {
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-f10b06c9-0703-1b78-d944-2a445134d810-1ebb2179 {
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-f10b06c9-0703-1b78-d944-2a445134d823-1ebb2179 {
    -ms-grid-column-align: end;
    justify-self: end;
  }
}