@font-face {
  font-family: "GCBlaft";
  src: url("fonts/GCBlaft-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "DMSans";
  src: url("fonts/DMSans-Regular.ttf") format("truetype");
}

main {
  min-height: 100vh;
}

html.faq-sticky .tab-container {
  padding-top: 100px !important;
}

html.faq-sticky .tab-container .tab-header {
  position: fixed !important;
  top: 88px !important;
  left: 0 !important;
  z-index: 5 !important;
  height: 68px !important;
  margin: 0 !important;
  width: 100% !important;
  padding-top: 24px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

html.no-scroll {
  overflow: hidden;
}

html.modal-open {
  overflow: hidden;
}

html.modal-open .contact-modal {
  visibility: visible;
  opacity: 1;
}

html.notice-modal-open {
  overflow: hidden;
}

html.notice-modal-open .notice-modal {
  visibility: visible;
  opacity: 1;
}

html .desktop {
  display: none !important;
}

@media all and (min-width: 1024px) {
  html .desktop {
    display: block !important;
    width: 100%;
  }
}

html .mobile {
  display: block !important;
  width: 100%;
}

@media all and (min-width: 1024px) {
  html .mobile {
    display: none !important;
    width: 100%;
  }
}

html .invisible {
  visibility: hidden;
}

body {
  font-family: "GCBlaft", sans-serif;
  margin: 0;
  background: #ffff;
}

#wpadminbar {
  display: none;
}

.loading {
  width: 100%;
  height: 100%;
  background: #e1eeff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transition: visibility 0.5s ease, opacity 0.5s ease;
  transition: visibility 0.5s ease, opacity 0.5s ease;
}

.loading span {
  color: white;
  font-size: 60px;
}

.loading.hide {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes slideup1 {
  0% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideup1 {
  0% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideup2 {
  0% {
    -webkit-transform: translateY(250px);
    transform: translateY(250px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideup2 {
  0% {
    -webkit-transform: translateY(250px);
    transform: translateY(250px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideup3 {
  0% {
    -webkit-transform: translateY(350px);
    transform: translateY(350px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideup3 {
  0% {
    -webkit-transform: translateY(350px);
    transform: translateY(350px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideup4 {
  0% {
    -webkit-transform: translateY(350px);
    transform: translateY(350px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideup4 {
  0% {
    -webkit-transform: translateY(350px);
    transform: translateY(350px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideup5 {
  0% {
    -webkit-transform: translateY(350px);
    transform: translateY(350px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideup5 {
  0% {
    -webkit-transform: translateY(350px);
    transform: translateY(350px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.notice-modal .text-area h1 {
  text-align: center;
}

@media all and (min-width: 1024px) {
  .notice-modal .text-area h1 {
    text-align: left;
  }
}

.contact-modal,
.notice-modal {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0.5s ease, opacity 0.5s ease;
  transition: visibility 0.5s ease, opacity 0.5s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-modal .modal-dimmer,
.notice-modal .modal-dimmer {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}

.contact-modal .modal-body,
.notice-modal .modal-body {
  width: 90%;
  background-color: white;
  position: relative;
  margin: auto;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 13% 9%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-modal .modal-body .modal-image-container,
.notice-modal .modal-body .modal-image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-modal .modal-body .modal-image-container img,
.notice-modal .modal-body .modal-image-container img {
  width: 100%;
  margin: auto;
}

.contact-modal .modal-body .text-area,
.notice-modal .modal-body .text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
}

.contact-modal .modal-body .text-area *,
.notice-modal .modal-body .text-area * {
  z-index: 1;
}

.contact-modal .modal-body .text-area h5,
.notice-modal .modal-body .text-area h5 {
  font-weight: 500;
  margin: 0;
  font-size: 14px;
  color: #1a5de5;
  letter-spacing: 0.09em;
  color: #0caf74;
}

.contact-modal .modal-body .text-area h4,
.notice-modal .modal-body .text-area h4 {
  font-size: 20px;
  line-height: 20px;
  margin: 0;
}

.contact-modal .modal-body .text-area h1,
.notice-modal .modal-body .text-area h1 {
  font-size: 32px;
  margin: 16px 0 24px 0;
  color: #093793;
  line-height: 100%;
}

.contact-modal .modal-body .text-area h1.long,
.notice-modal .modal-body .text-area h1.long {
  font-size: 18px;
}

.contact-modal .modal-body .text-area p,
.notice-modal .modal-body .text-area p {
  font-family: "RubikRegular";
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  margin: 5px 0 25px 0;
  color: #71747d;
}

@media all and (min-width: 1024px) {
  .contact-modal .modal-body,
  .notice-modal .modal-body {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    width: 65%;
    padding: 4%;
  }
  .contact-modal .modal-body .modal-image-container,
  .notice-modal .modal-body .modal-image-container {
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
  }
  .contact-modal .modal-body .modal-image-container img,
  .notice-modal .modal-body .modal-image-container img {
    margin: 0;
  }
  .contact-modal .modal-body .text-area,
  .notice-modal .modal-body .text-area {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
  }
  .contact-modal .modal-body .text-area *,
  .notice-modal .modal-body .text-area * {
    margin-left: 10% !important;
    margin-right: 5% !important;
  }
  .contact-modal .modal-body .text-area h5,
  .notice-modal .modal-body .text-area h5 {
    font-family: "Rubik";
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.09em;
  }
  .contact-modal .modal-body .text-area h4,
  .notice-modal .modal-body .text-area h4 {
    font-size: 32px;
    line-height: 35.2px;
  }
  .contact-modal .modal-body .text-area h1,
  .notice-modal .modal-body .text-area h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 100%;
  }
  .contact-modal .modal-body .text-area h1.long,
  .notice-modal .modal-body .text-area h1.long {
    font-size: 22px;
  }
  .contact-modal .modal-body .text-area p,
  .notice-modal .modal-body .text-area p {
    font-size: 16px;
    line-height: 140%;
  }
}

@media all and (min-width: 1280px) {
  .contact-modal .modal-body .text-area h1.long,
  .notice-modal .modal-body .text-area h1.long {
    font-size: 28px;
  }
}

nav {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffff;
  padding: 12px 24px;
  height: 88px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: background 0.5s ease, height 0.5s ease;
  transition: background 0.5s ease, height 0.5s ease;
  z-index: 120;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
}

nav.transparent {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #303236;
}

nav .logo * {
  vertical-align: middle;
}

nav .logo span {
  padding: 0 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

nav .logo img {
  width: 122px;
}

nav .menu {
  z-index: 6;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
  position: absolute;
  left: -100%;
  top: 88px;
  width: 100%;
  height: calc(100vh - 88px);
  background-color: #ffff;
  margin: 0;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

nav .menu .menu-navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
  -webkit-transition: border 0.5s ease;
  transition: border 0.5s ease;
}

nav .menu .menu-navs a {
  color: #2b1145;
  text-align: center;
  font-size: 16px;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

nav .menu .menu-navs a.button {
  font-size: 16px;
}

nav .menu .menu-navs a.button.transparent {
  padding: 12px 40px;
}

nav .menu .menu-navs a:hover {
  color: #ee4b54;
}

nav .menu li.bottom {
  padding-top: 32px;
  padding-right: 16px;
  padding-bottom: 32px;
  /* width: 100%; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
}

nav .menu li.bottom a {
  /* width: 100%; */
  margin-bottom: 16px;
}

nav .menu li.bottom a:last-child {
  margin-bottom: 0;
}

nav .menu.active {
  left: 0;
}

nav .nav-menu-button {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

nav .nav-menu-button .hamburger {
  width: 32px;
  height: 32px;
}

nav .nav-menu-button .nav-close {
  display: none;
}

nav .nav-menu-button.open .nav-open {
  display: none;
}

nav .nav-menu-button.open .nav-close {
  display: block;
}

@media all and (max-width: 1024px) {
  nav .menu .menu-navs {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: auto;
    width: 50%;
    justify-content: space-around;
    align-items: center;
  }
  nav .menu li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    white-space: nowrap;
    -webkit-transition: border 0.5s ease;
    transition: border 0.5s ease;
  }
}

@media all and (min-width: 1024px) {
  nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 96px;
    padding: 16px 20px;
  }
  nav.transparent {
    height: 160px;
  }
  nav .logo {
    -ms-flex-preferred-size: 32%;
    flex-basis: 32%;
  }
  nav .logo img {
    width: 140px;
  }
  nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    position: unset;
    right: unset;
    left: unset;
    width: unset;
    height: unset;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    /* -ms-flex-preferred-size: 80%;
        flex-basis: 80%; */
    background-color: transparent;
  }
  /* page hidden */
  .page-id-587 nav .menu-navs {
    display: hidden;
  }

  .page-id-581 nav .menu-navs {
    display: hidden;
  }

  nav .menu .menu-navs {
    display: flex;
    padding: 6px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
  nav .menu .menu-navs a {
    font-size: 16px;
  }
  nav .menu .menu-navs li.active:not(.bottom) {
    border-bottom: 4px solid #ee4b54;
  }
  nav .menu .menu-navs li.active:not(.bottom) a {
    color: #ee4b54;
  }
  nav .menu .menu-navs li.active:not(.bottom).bottom {
    border: none;
  }
  nav .menu li.bottom {
    /* padding-top: 32px;
    padding-right: 16px;
    padding-bottom: 32px; */
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    margin-bottom: 0%;
    display: flex;
    padding: 20px;
    /* border-top: 4px solid transparent; */
    /* border-bottom: 4px solid transparent; */
  }
  nav .menu li.bottom a:first-child {
    margin-right: 0;
    margin-bottom: 5;
  }
  nav .nav-menu-button {
    display: none;
  }
}

@media all and (min-width: 1024px) {
  nav {
    padding: 16px 80px;
  }
  nav .menu li {
    padding: 20px;
  }
}

main {
  overflow: hidden;
  padding-top: 80px;
}

main section {
  min-height: 100px;
  padding: 16px;
  position: relative;
}

main section .text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  position: relative;
}

main section .text-area * {
  z-index: 1;
}

main section .text-area h5 {
  font-family: "GCBlaft", sans-serif;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: #1a5de5;
  letter-spacing: 0.09em;
  line-height: 100%;
}

main section .text-area h1 {
  font-family: "GCBlaft", sans-serif;
  font-size: 48px;
  color: #093793;
  line-height: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
}

main section .text-area p {
  font-family: "DMSans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 140%;
  margin: 0;
  margin-bottom: 32px;
  color: #303236;
}

@media all and (min-width: 1024px) {
  main section .text-area {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  main section .text-area h5 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.09em;
    line-height: 100%;
  }
  main section .text-area h1 {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 56px;
    line-height: 100%;
  }
  main section .text-area p {
    font-size: 16px;
    line-height: 140%;
    margin: 8px 0 39px 0;
  }
}

@media all and (min-width: 1024px) {
  main section {
    padding-left: 120px;
    padding-right: 120px;
  }
}

main section.hero {
  padding: 0 16px 10px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffff;
}

main section.hero .text-area {
  margin: 0;
  color: #2b1145;
}

main section.hero .text-area h1 {
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 34px;
  line-height: 100%;
  color: #2b1145;
}

main section.hero .text-area h1 b {
  color: #ee4b54;
  position: relative;
}

main section.hero .text-area h1 b img {
  position: absolute;
  top: 0;
  left: 0;
}

main section.hero .text-area h1 b img.underline-bg {
  width: 110%;
  top: 55%;
  left: -4%;
}

main section.hero .text-area h1 b img.circle-bg {
  width: 152%;
  left: -22%;
  top: -19%;
}

main section.hero .text-area p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #2b1145;
}

main section.hero .image-area {
  position: relative;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

main section.hero .image-area img {
  width: 88%;
  margin: auto;
}

@media all and (min-width: 1024px) {
  main section.hero {
    padding: 5% 30px 0 120px;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main section.hero .text-area {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    margin: 100px 0;
  }
  main section.hero .text-area h1 {
    margin-right: 0;
    margin-bottom: 24px;
    font-size: 72px;
    line-height: 90%;
  }
  main section.hero .text-area h1 b img.underline-bg {
    width: 254px;
    top: 50px;
    left: -14px;
  }
  main section.hero .text-area p {
    font-size: 20px;
    margin-bottom: 24px;
  }
  main section.hero .image-area {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    margin-top: 5px;
  }
  main section.hero .image-area img {
    width: 96.7%;
    margin-left: -40px;
  }
}

@media all and (min-width: 1280px) {
  main section.hero .text-area {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
}

main section.about {
  padding: 0 16px 10px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffff;
}

main section.about .bg-image {
  width: 100%;
  height: 87.5%;
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

main section.about .text-area {
  margin-top: -21px;
  color: #2b1145;
}

main section.about .text-area h5 {
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #f99400;
}

main section.about .text-area h1 {
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 100%;
  color: #ffff;
}

main section.about .text-area p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #ffff;
  margin-bottom: 51px;
}

main section.about .image-area {
  z-index: 1;
  position: relative;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

main section.about .image-area img {
  width: 100%;
}

@media all and (min-width: 1024px) {
  main section.about {
    padding: 0 30px 0 0;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -52px;
  }
  main section.about .bg-image {
    height: 84%;
  }
  main section.about .text-area {
    margin-left: 37px;
    margin-top: 150px;
    margin-right: 90px;
  }
  main section.about .text-area h5 {
    font-size: 16px;
  }
  main section.about .text-area h1 {
    margin-right: 0;
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 100%;
  }
  main section.about .text-area p {
    margin-top: 0;
  }
  main section.about .image-area {
    -ms-flex-preferred-size: 60.72%;
    flex-basis: 60.72%;
    margin-top: 0;
  }
  main section.about .image-area img {
    width: 100%;
  }
}

main section.subscriptions {
  background-color: #fff4f4;
  padding: 64px 0 64px 0;
}

main section.subscriptions h1 {
  margin-top: 0;
  color: #2b1145;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
}

main section.subscriptions .card-container {
  width: 100%;
  margin: auto;
}

main section.subscriptions .card-container .card-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  counter-reset: item;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; */
  padding: 0 8% 20px 8%;
}

main section.subscriptions .card-container .card-carousel .card {
  position: relative;
  width: 100%;
  background-color: transparent;
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  counter-increment: item;
  margin: 0 12px 0 12px;
  min-height: 552px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 32px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(25%, transparent),
    color-stop(25%, #ffff),
    to(#ffff)
  );
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 25%,
    #ffff 25%,
    #ffff 100%
  );
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  margin-top: 45px;
}

main section.subscriptions .card-container .card-carousel .card:first-child {
  margin-left: 0;
}

main section.subscriptions .card-container .card-carousel .card:last-child {
  margin-right: 0;
}

main section.subscriptions .card-container .card-carousel .card .card-logo {
  width: 80px;
  position: absolute;
  left: calc(50% - 40px);
  top: -40px;
  z-index: 1;
}

main section.subscriptions .card-container .card-carousel .card .card-header {
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  background-color: #ee4b54;
  color: #ffff;
  padding: 62px 0 28px 0;
  text-align: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  line-height: 100%;
  margin: 0;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span
  .dropdown {
  margin-left: 8px;
  position: relative;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span
  .dropdown
  img {
  cursor: pointer;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span
  .dropdown
  ul {
  display: none;
  position: absolute;
  width: 200px;
  left: -165px;
  bottom: -250px;
  background-color: #fff4f4;
  list-style: none;
  padding: 0;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span
  .dropdown
  ul
  li {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #2b1145;
  padding: 16px 24px;
  border-bottom: 1px solid #d9d7d5;
  cursor: pointer;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span
  .dropdown
  ul
  li.active,
main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span
  .dropdown
  ul
  li:hover {
  background-color: #ee4b54;
  color: #ffff;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span
  .dropdown.active
  img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-header
  span
  .dropdown.active
  ul {
  display: block;
}

main section.subscriptions .card-container .card-carousel .card .card-tag {
  background-color: #ffe8bd;
  text-align: center;
  margin: 16px auto 0 auto;
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 24px;
  border-radius: 80px;
  border: 2px solid #f99400;
  z-index: 1;
  letter-spacing: 0.05em;
}

main section.subscriptions .card-container .card-carousel .card .card-body {
  background-color: #ffff;
  padding: 0px 24px 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -17px;
}

main section.subscriptions .card-container .card-carousel .card .card-body p {
  color: #363330;
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  margin-top: 0;
  margin-bottom: 24px;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-body
  .card-body-header {
  text-align: center;
  color: #800a10;
}

main section.subscriptions .card-container .card-carousel .card .card-body ul {
  border-top: 1px solid #d9d7d5;
  margin: 0;
  padding: 23px 0 0 24px;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .card-body
  ul
  li {
  color: #2b1145;
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .button-container {
  background-color: #ffff;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: auto;
}

main
  section.subscriptions
  .card-container
  .card-carousel
  .card
  .button-container
  .button {
  margin: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main section.subscriptions .button-view-all {
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: auto;
}

main section.subscriptions .button-view-all {
  margin: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main section.subscriptions .card-container .card-navigations {
  margin: 4px 0 4px 0;
  height: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main section.subscriptions .card-container .card-navigations .card-nav {
  border: 2px solid #fbd5d7;
  height: 0;
  width: 28px;
  margin: 0 4px 0 4px;
  border-radius: 2px;
  cursor: pointer;
}

main section.subscriptions .card-container .card-navigations .card-nav.active {
  width: 52px;
  border: 2px solid #ee4b54;
}

@media all and (min-width: 1024px) {
  main section.subscriptions h1 {
    font-size: 48px;
    line-height: 100%;
    margin: 16px 0 40px 0;
  }
  main section.subscriptions .card-container .card-carousel {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  main section.subscriptions .card-container .card-carousel .card {
    max-width: 349px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    margin: 80px 20px 0 20px;
  }
  main section.subscriptions .card-container .card-carousel .card .card-logo {
    width: 120px;
    left: calc(50% - 60px);
    top: -80px;
  }
  main
    section.subscriptions
    .card-container
    .card-carousel
    .card
    .card-header
    h5 {
    font-size: 24px;
  }
  main
    section.subscriptions
    .card-container
    .card-carousel
    .card
    .card-header
    span {
    font-size: 20px;
  }
  main section.subscriptions .card-container .card-carousel .card .card-body p {
    font-size: 20px;
  }
  main section.subscriptions .card-container .card-carousel .card .button {
    width: 88%;
  }
  main section.subscriptions .card-container .card-navigations {
    display: none;
  }
}

main section.promo {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(22, 16, 88, 0.5)),
      to(rgba(22, 16, 88, 0.5))
    ),
    -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(
      0deg,
      rgba(22, 16, 88, 0.5),
      rgba(22, 16, 88, 0.5)
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

main section.promo img {
  margin: auto;
}

main section.promo .text-area {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  padding: 64px 16px 64px 16px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #2b1145;
  text-align: center;
}

main section.promo .text-area h5 {
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #f99400;
  margin: 0 0 8px 0;
}

main section.promo .text-area h1 {
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 100%;
  color: #ffff;
  margin: 0 0 8px 0;
}

main section.promo .text-area p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #ffff;
  margin: 0 25px 0 25px;
}

main section.promo .text-area .button {
  margin-top: 300px;
}

@media all and (min-width: 1024px) {
  main section.promo {
    padding: 0;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main section.promo .text-area {
    width: 50%;
    padding: 86px 7% 102px 7%;
    margin-left: 37px;
    text-align: left;
  }
  main section.promo .text-area h5 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  main section.promo .text-area h1 {
    margin-right: 0;
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 100%;
  }
  main section.promo .text-area p {
    margin: 0 0 40px 0;
    font-size: 20px;
    line-height: 130%;
  }
  main section.promo .text-area .button {
    margin-top: 0;
  }
}

main section.why-woofy {
  background-color: #ffff;
  padding: 64px 0 64px 0;
}

main section.why-woofy h1 {
  color: #2b1145;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  margin: 0 auto 32px auto;
}

main section.why-woofy .list-container .list {
  width: 94%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 40px auto;
}

main section.why-woofy .list-container .list img {
  width: 64px;
  height: 64px;
  margin-right: 21px;
}

main section.why-woofy .list-container .list .text-area {
  margin: 0;
}

main section.why-woofy .list-container .list .text-area h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #f99400;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

main section.why-woofy .list-container .list .text-area h3 {
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  line-height: 100%;
  color: #2b1145;
  margin: 0 0 8px 0;
}

main section.why-woofy .list-container .list .text-area p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  margin: 0;
  color: #2b1145;
}

@media all and (min-width: 1024px) {
  main section.why-woofy {
    padding: 0 0 16px 0;
  }
  main section.why-woofy h1 {
    font-size: 48px;
    line-height: 100%;
    margin: 80px 0 40px 0;
  }
  main section.why-woofy .list-container {
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
  }
  main section.why-woofy .list-container .list {
    max-width: 373px;
    margin: 0 58px 64px 58px;
  }
  main section.why-woofy .list-container .list .text-area {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  main section.why-woofy .list-container .list .text-area h5 {
    font-size: 16px;
  }
  main section.why-woofy .list-container .list .text-area h3 {
    font-size: 24px;
  }
}

main section.technical-info {
  padding: 0 16px 10px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffe8bd;
}

main section.technical-info .text-area {
  margin-top: 64px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

main section.technical-info .text-area h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f99400;
  margin-bottom: 8px;
}

main section.technical-info .text-area h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 100%;
  color: #2b1145;
  margin-bottom: 24px;
  margin-top: 0;
}

main section.technical-info .text-area ul {
  margin-top: 0;
  padding: 0 10px 16px 25px;
  list-style: none;
}

main section.technical-info .text-area ul li {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 26px;
}

main section.technical-info .text-area ul li span {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 130%;
  color: #2b1145;
  font-size: 20px;
  width: 100%;
}

main section.technical-info .text-area ul li::before {
  content: "\2022";
  width: 8px;
  height: 8px;
  color: #f99400;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  margin-top: -2px;
}

main section.technical-info .image-area {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  position: relative;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

main section.technical-info .image-area img {
  width: 100%;
}

@media all and (min-width: 1024px) {
  main section.technical-info {
    padding: 40px 30px 64px 120px;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main section.technical-info .text-area {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    margin-right: 40px;
  }
  main section.technical-info .text-area h5 {
    margin-bottom: 16px;
  }
  main section.technical-info .text-area h1 {
    margin-right: 0;
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 100%;
  }
  main section.technical-info .text-area ul li {
    margin-bottom: 8px;
  }
  main section.technical-info .text-area ul li span {
    margin-left: 30px;
    font-size: 20px;
  }
  main section.technical-info .image-area {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 49.25%;
    flex-basis: 49.25%;
  }
  main section.technical-info .image-area img {
    width: 100%;
  }
}

main section.locations {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffff;
}

main section.locations .text-area {
  padding: 0 16px 10px 16px;
  color: #2b1145;
}

main section.locations .text-area h5 {
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #f99400;
}

main section.locations .text-area h1 {
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 26px;
  line-height: 100%;
  color: #2b1145;
}

main section.locations .text-area p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #2b1145;
  margin-bottom: 16px;
  margin-top: 0;
}

main section.locations .text-area a {
  margin: 16px 0;
}

main section.locations .image-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 64px 0 0 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ee4b54),
    color-stop(94%, #ee4b54),
    color-stop(94%, #ffff),
    to(#ffff)
  );
  background: linear-gradient(
    to right,
    #ee4b54 0%,
    #ee4b54 94%,
    #ffff 94%,
    #ffff 100%
  );
}

main section.locations .image-area .card-container {
  position: relative;
  width: 94%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    color-stop(19.31%, rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 19.31%
  );
}

main section.locations .image-area .card-container .chevron-left {
  position: absolute;
  top: calc(50% - 44px);
  left: 0;
  z-index: 1;
}

main section.locations .image-area .card-container .chevron-right {
  position: absolute;
  top: calc(50% - 36px);
  right: 0;
  z-index: 1;
}

main section.locations .image-area .card-container .card-carousel {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: hidden;
  counter-reset: item;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

main section.locations .image-area .card-container .card-carousel .card {
  position: relative;
  overflow: hidden;
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  counter-increment: item;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main
  section.locations
  .image-area
  .card-container
  .card-carousel
  .card
  .card-background-image {
  width: 100%;
  height: 100%;
}

main
  section.locations
  .image-area
  .card-container
  .card-carousel
  .card
  .card-logo {
  position: absolute;
  bottom: 17px;
  left: 16px;
  height: 12%;
}

main
  section.locations
  .image-area
  .card-container
  .card-carousel
  .card
  .card-next {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main
  section.locations
  .image-area
  .card-container
  .card-carousel
  .card
  .card-next
  span {
  color: #ffff;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-top: 4px;
}

main
  section.locations
  .image-area
  .card-container
  .card-carousel
  .card
  .card-next
  img {
  margin-left: 5px;
}

@media all and (min-width: 1024px) {
  main section.locations {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main section.locations .text-area {
    padding: 0;
    -ms-flex-preferred-size: 35.58%;
    flex-basis: 35.58%;
    margin-right: 120px;
  }
  main section.locations .text-area h5 {
    font-size: 16px;
  }
  main section.locations .text-area h1 {
    margin-right: 0;
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 100%;
  }
  main section.locations .text-area p {
    margin-bottom: 24px;
    line-height: 150%;
    margin-top: 0;
  }
  main section.locations .text-area a {
    margin-top: 24px;
  }
  main section.locations .image-area {
    padding-top: 88px;
    -ms-flex-preferred-size: 48.5%;
    flex-basis: 48.5%;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#ee4b54),
      color-stop(92%, #ee4b54),
      color-stop(92%, #ffff),
      to(#ffff)
    );
    background: linear-gradient(
      to right,
      #ee4b54 0%,
      #ee4b54 92%,
      #ffff 92%,
      #ffff 100%
    );
  }
  main section.locations .image-area .card-container {
    width: 39.75vw;
  }
  main section.locations .image-area .card-container .chevron-left {
    left: -44px;
  }
  main section.locations .image-area .card-container .chevron-right {
    right: -36px;
  }
}

main section.faq {
  padding: 0 16px 0px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff4f4;
  overflow: overlay;
}

main section.faq .text-area {
  margin-top: 64px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

main section.faq .text-area h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 100%;
  color: #2b1145;
  margin-top: 0;
  margin-bottom: 8px;
}

main section.faq .text-area p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #2b1145;
}

main section.faq .text-area p a {
  text-decoration: underline;
  color: #ee4b54;
}

main section.faq .text-area img {
  width: 80%;
  margin: auto;
}

main section.faq .tab-container {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

main section.faq .tab-container .tab-header {
  overflow-x: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  background-color: #fff4f4;
}

main section.faq .tab-container .tab-header li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px 16px;
  text-transform: uppercase;
  cursor: pointer;
  color: #2b1145;
  letter-spacing: 0.05em;
}

main section.faq .tab-container .tab-header li.active {
  color: #ee4b54;
  border-bottom: 2px solid #ee4b54;
}

main section.faq .tab-container .tab-header li:first-child {
  margin-left: 4px;
}

main section.faq .tab-container .tab-header li:last-child {
  margin-right: 4px;
}

main section.faq .tab-container .tab-body {
  padding: 0 16px;
  margin-left: -16px;
  margin-right: -16px;
}

main section.faq .tab-container .tab-body .tab {
  display: none;
}

main section.faq .tab-container .tab-body .tab.active {
  display: block;
}

main section.faq .tab-container .tab-body .accordions {
  position: relative;
  margin-bottom: 64px;
}

main section.faq .tab-container .tab-body .accordions .accordion {
  font-weight: 500;
  font-style: normal;
  color: #1a5de5;
  line-height: 22.4px;
  padding: 16px;
  margin-bottom: 16px;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background-color: white;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}

main section.faq .tab-container .tab-body .accordions .accordion h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #2b1145;
}

main section.faq .tab-container .tab-body .accordions .accordion h5 span {
  margin-left: 15px;
  height: 22px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

main section.faq .tab-container .tab-body .accordions .accordion h5 span .plus {
  display: block;
}

main
  section.faq
  .tab-container
  .tab-body
  .accordions
  .accordion
  h5
  span
  .minus {
  display: none;
}

main section.faq .tab-container .tab-body .accordions .accordion p {
  margin: 0;
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease, padding 0.5s ease;
  transition: max-height 0.5s ease, padding 0.5s ease;
  max-height: 0;
  color: #7d7871;
}

main section.faq .tab-container .tab-body .accordions .accordion.active p {
  padding-top: 16px;
  max-height: 2000px;
}

main
  section.faq
  .tab-container
  .tab-body
  .accordions
  .accordion.active
  h5
  span
  .plus {
  display: none;
}

main
  section.faq
  .tab-container
  .tab-body
  .accordions
  .accordion.active
  h5
  span
  .minus {
  display: block;
}

main section.faq .tab-container .tab-body::-webkit-scrollbar {
  width: 1em;
  margin-right: 5px;
}

main section.faq .tab-container .tab-body::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
}

main section.faq .tab-container .tab-body::-webkit-scrollbar-thumb {
  border: 4px solid #fff4f4;
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: #dbdfea;
}

@media all and (min-width: 1024px) {
  main section.faq {
    padding: 59px 24px 0 0;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main section.faq .text-area {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: 45.5%;
    flex-basis: 45.5%;
    padding-right: 70px;
    margin-top: 0;
    padding-top: 75px;
  }
  main section.faq .text-area h1 {
    margin: 0 20px 16px 120px;
    font-size: 48px;
    line-height: 100%;
  }
  main section.faq .text-area p {
    margin: 0 20px 116px 120px;
  }
  main section.faq .text-area img {
    width: 98%;
    margin-left: 17px;
  }
  main section.faq .tab-container {
    -ms-flex-preferred-size: 64.5%;
    flex-basis: 64.5%;
  }
  main section.faq .tab-container .tab-header {
    margin-bottom: 24px;
  }
  main section.faq .tab-container .tab-header li {
    margin: 5px 24px;
  }
  main section.faq .tab-container .tab-header li.active {
    color: #ee4b54;
    border-bottom: 2px solid #ee4b54;
  }
  main section.faq .tab-container .tab-header li:first-child {
    margin-left: 0;
  }
  main section.faq .tab-container .tab-header li:last-child {
    margin-right: 0;
  }
  main section.faq .tab-container .tab-body {
    overflow: auto;
    padding: 0 114px 0 16px;
  }
  main section.faq .tab-container .tab-body .accordions {
    margin-bottom: 0;
  }
  main section.faq .tab-container .tab-body .accordions .accordion {
    margin-bottom: 24px;
    padding: 16px 24px;
  }
}

main section.contact-us {
  padding: 0 16px 10px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffff;
}

main section.contact-us .text-area {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 64px;
}

main section.contact-us .text-area h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f99400;
}

main section.contact-us .text-area h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 100%;
  color: #2b1145;
}

main section.contact-us .text-area p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #2b1145;
}

main section.contact-us .text-area input,
main section.contact-us .text-area select,
main section.contact-us .text-area textarea {
  width: 100%;
  margin: 8px 0;
}

main section.contact-us .text-area .custom-select-div {
  z-index: 2;
}

main section.contact-us .text-area .form .field .error-message {
  display: none;
  color: #d82c0d;
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
}

main section.contact-us .text-area .form .field .error-message img {
  margin-right: 8px;
}

main section.contact-us .text-area .form .field.radio label {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
  color: #7d7871;
}

main section.contact-us .text-area .form .field.radio .choices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 8px 0 16px 0;
}

main section.contact-us .text-area .form .field.radio .choices label {
  padding: 8px 17px;
  background-color: #ffff;
  border: 2px solid #ee4b54;
  color: #ee4b54;
  border-radius: 8px;
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-align: center;
}

main
  section.contact-us
  .text-area
  .form
  .field.radio
  .choices
  label:first-of-type {
  margin-right: 10px;
}

main section.contact-us .text-area .form .field.radio .choices input {
  opacity: 0;
  position: fixed;
  width: 0;
}

main
  section.contact-us
  .text-area
  .form
  .field.radio
  .choices
  input:checked
  + label {
  background-color: #ee4b54;
  color: #ffff;
}

main section.contact-us .text-area .form button {
  width: 100%;
  margin: 24px 0;
}

main section.contact-us .image-area {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  position: relative;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media all and (min-width: 1024px) {
  main section.contact-us {
    padding: 50px 63px 70px 120px;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main section.contact-us .text-area {
    margin: 30px 30px 30px 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-preferred-size: 43.2%;
    flex-basis: 43.2%;
  }
  main section.contact-us .text-area h1 {
    margin-right: 40px;
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 100%;
  }
  main section.contact-us .text-area p {
    margin-top: 0;
    margin-bottom: 32px;
    margin-right: 20px;
  }
  main section.contact-us .text-area .form .field.radio .choices {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
  main section.contact-us .text-area .form .field.radio .choices label {
    margin-right: 16px;
    letter-spacing: 0.05em;
  }
  main section.contact-us .text-area button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 24px;
  }
  main section.contact-us .image-area {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 52%;
    flex-basis: 52%;
  }
  main section.contact-us .image-area img {
    width: 100%;
    margin: auto;
  }
}

main section.footer {
  background: #181260;
  position: relative;
  z-index: 2;
  padding: 0 16px 0 16px;
  color: #ffff;
}

main section.footer hr {
  position: relative;
  border: 1px solid #d5d6d9;
}

main section.footer .bg-image {
  position: absolute;
  top: -25vw;
  right: -22%;
  width: 200%;
}

main section.footer .upper-footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 0;
}

main section.footer .upper-footer .footer-logo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffff;
  cursor: default;
}

main section.footer .upper-footer .footer-logo .logo * {
  vertical-align: middle;
}

main section.footer .upper-footer .footer-logo .logo span {
  padding: 0 10px 0 24px;
  font-size: 21px;
  font-weight: 700;
  line-height: 100%;
}

main section.footer .upper-footer .footer-logo .logo span b {
  color: #ee4b54;
}

main section.footer .upper-footer .footer-logo .logo img {
  margin: 16px auto 0 auto;
  width: 100px;
}

main section.footer .upper-footer .footer-logo p {
  font-weight: normal;
  font-size: 12px;
  line-height: 140%;
  color: #71747d;
  margin-top: 16px;
  margin-bottom: 21px;
}

main section.footer .upper-footer a.button {
  margin: 32px auto 0 auto;
  background-color: #181260;
  color: #ffff;
  border: solid 2px #ffff;
  text-transform: uppercase;
  width: 100%;
  height: 56px;
}

main section.footer .upper-footer a.button img {
  width: 24px;
  margin-right: 16px;
}

main section.footer hr {
  margin: 0;
}

main section.footer .lower-footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #ffff;
  font-weight: normal;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  font-family: "DMSans", sans-serif;
}

main section.footer .lower-footer .policies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 8px 0;
}

main section.footer .lower-footer .policies a {
  font-family: "DMSans", sans-serif;
  color: #ffff;
}

main section.footer .lower-footer .policies a:visited {
  color: #ffff;
}

main section.footer .lower-footer .copyright {
  width: 100%;
  font-family: "DMSans", sans-serif;
  margin: 32px 0 40px 0;
}

@media all and (min-width: 1024px) {
  main section.footer {
    padding: 0 120px;
  }
  main section.footer .bg-image {
    position: absolute;
    top: -56%;
    right: 0;
    width: 100%;
    height: 170%;
  }
  main section.footer .upper-footer {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  main section.footer .upper-footer .footer-logo .logo {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
  }
  /* main section.footer .upper-footer .footer-logo .logo span {
    font-size: 24px; 
  }*/
  main section.footer .upper-footer a.button {
    margin: 0;
    padding: 22px 32px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 64px;
  }
  main section.footer .lower-footer {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 16px;
  }
  main section.footer .lower-footer .policies {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    margin: 16px 0;
  }
  main section.footer .lower-footer .copyright {
    margin: 16px 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    white-space: nowrap;
    width: unset;
  }
}

html.success section {
  display: none;
}

html.success .success-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (min-width: 1024px) {
  html.success .footer {
    display: block;
  }
}

.success-container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px 16px 16px 16px;
  text-align: center;
}

.success-container .image-container {
  width: 61.5%;
  margin: auto;
  margin-bottom: 24px;
}

.success-container .image-container img {
  width: 100%;
}

.success-container .text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.success-container .text-area h1 {
  margin: 0 auto 16px auto;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #2b1145;
  max-width: 280px;
}

.success-container .text-area p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  margin: 0 auto 32px auto;
  max-width: 280px;
  color: #2b1145;
}

@media all and (min-width: 1024px) {
  .success-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 120px;
  }
  .success-container .image-container {
    -ms-flex-preferred-size: 53%;
    flex-basis: 53%;
    margin: 0;
    text-align: right;
    margin-right: 60px;
  }
  .success-container .image-container img {
    max-width: 378px;
  }
  .success-container .text-area {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .success-container .text-area h1 {
    text-align: left;
    margin: 0 0 16px 0;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 100%;
    max-width: 365px;
  }
  .success-container .text-area p {
    text-align: left;
    margin: 0 0 32px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    max-width: 357px;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .menu .item.bottom {
      margin-bottom: 100px;
    }
  }
}

.promo-banner-background {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
}

.promo-banner-background .promo-banner-popup {
  z-index: 100;
  position: fixed;
  top: calc(74vh - 382px);
  right: 16px;
  padding: 36px 24px;
  width: 91.5%;
  background: #ffe8bd;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.promo-banner-background .promo-banner-popup .gradient-1 {
  position: absolute;
  width: 657px;
  height: 655px;
  left: -347px;
  top: calc(50% - 655px / 2 + 99.5px);
  background: radial-gradient(
    50% 50% at 50% 50%,
    #ffa800 0%,
    rgba(255, 153, 2, 0) 100%
  );
  opacity: 0.3;
  z-index: -1;
}

.promo-banner-background .promo-banner-popup .gradient-2 {
  position: absolute;
  width: 507px;
  height: 505px;
  right: -221px;
  top: -205px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #ffa800 0%,
    rgba(255, 153, 2, 0) 100%
  );
  opacity: 0.3;
  z-index: -1;
}

.promo-banner-background .promo-banner-popup .gradient-3 {
  position: absolute;
  width: 372px;
  height: 371px;
  right: -221px;
  bottom: -103px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #ffa800 0%,
    rgba(255, 153, 2, 0) 100%
  );
  opacity: 0.3;
  z-index: -1;
}

.promo-banner-background .promo-banner-popup .gradient-4 {
  position: absolute;
  width: 449px;
  height: 447px;
  left: -71px;
  bottom: -382px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #ffa800 0%,
    rgba(255, 153, 2, 0) 100%
  );
  opacity: 0.3;
  z-index: -1;
}

.promo-banner-background .promo-banner-popup .close-button {
  position: absolute;
  right: 12px;
  top: 16px;
  cursor: pointer;
}

.promo-banner-background .promo-banner-popup .dog {
  width: 80px;
  margin: 18px auto 24px auto;
}

.promo-banner-background .promo-banner-popup h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  line-height: 100%;
  text-align: center;
  margin: 0 auto 16px auto;
  color: #2b1145;
}

.promo-banner-background .promo-banner-popup p {
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  margin: 0 auto 64px auto;
}

.promo-banner-background .promo-banner-popup .button {
  margin: 0 auto 0 auto;
  width: 100%;
}

@media all and (min-width: 1024px) {
  .promo-banner-background {
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
    top: unset;
    left: unset;
  }
  .promo-banner-background .promo-banner-popup {
    width: 349px;
    height: 382px;
    right: 24px;
    bottom: 24px;
    top: unset;
    padding: 36px 24px;
  }
  .promo-banner-background .promo-banner-popup .dog {
    width: 80px;
    height: 80px;
    margin: 5px auto 16px auto;
  }
  .promo-banner-background .promo-banner-popup .close-button {
    right: 16px;
    top: 16px;
  }
  .promo-banner-background .promo-banner-popup h5 {
    font-size: 24px;
  }
  .promo-banner-background .promo-banner-popup p {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.ui-loader {
  display: none;
}

input,
textarea {
  background-color: #fff4f4;
  height: 56px;
  border-radius: 8px;
  padding: 16px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #363330;
  margin: 16px 0;
  outline: none;
}

input:focus,
input.error,
textarea:focus,
textarea.error {
  padding: 14px 22px;
  border: 2px solid #ee4b54;
}

textarea {
  resize: none;
  height: 168px;
}

.floating-field {
  position: relative;
}

.floating-field label {
  position: absolute;
  top: 21px;
  left: 24px;
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #71747d;
}

.floating-field input {
  padding: 22px 24px 0 24px;
  color: #2b1145;
}

.floating-field input:focus {
  padding: 22px 22px 0 22px;
}

.floating-field input::-webkit-input-placeholder {
  color: #7d7871;
}

.floating-field input::-moz-placeholder {
  color: #7d7871;
}

.floating-field input::-ms-input-placeholder {
  color: #7d7871;
}

.floating-field input::placeholder {
  color: #7d7871;
}

.floating-field input:placeholder-shown {
  padding: 16px 24px;
}

.floating-field input:placeholder-shown + label {
  display: none;
}

.custom-select {
  position: relative;
  margin: 8px 0;
  width: 100%;
  background-color: #fff4f4;
  font-family: "DMSans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 56px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100 !important;
}

.custom-select img {
  position: absolute;
  right: 15px;
  top: 15px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.custom-select label {
  font-family: "GCBlaft", sans-serif;
  font-style: normal;
  font-weight: bold;
  padding: 11px 16px 0 24px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #71747d;
}

.custom-select span {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding: 0 16px 0 24px;
  color: #2b1145;
}

.custom-select span[value=""] {
  padding: 16px 24px;
  color: #7d7871;
}

.custom-select span[value=""] + label {
  display: none;
}

.custom-select ul {
  display: none;
  padding: 0;
  list-style: none;
  border-radius: 8px;
  margin: 0;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  background-color: #fff4f4;
  overflow: auto;
}

.custom-select ul li {
  padding: 16px 24px;
  color: #2b1145;
}

.custom-select ul li.selected,
.custom-select ul li:hover {
  color: #ffff;
  background-color: #ee4b54;
}

.custom-select.expanded {
  border: 2px solid #ee4b54;
}

.custom-select.expanded img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.custom-select.expanded label {
  padding: 9px 14px 0 22px;
}

.custom-select.expanded span {
  border-radius: 8px;
  padding: 14px 22px;
}

.custom-select.expanded span:not([value=""]) {
  padding: 0 14px 0 22px;
}

.custom-select.expanded ul {
  display: block;
}

@media all and (min-width: 1024px) {
  .custom-select {
    cursor: pointer;
  }
}

.parallax {
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

a {
  text-decoration: none;
}

a.button,
button.button {
  border: 0;
  font-family: "GCBlaft", sans-serif;
  background-color: #ee4b54;
  padding: 16px 40px;
  color: white !important;
  border-radius: 80px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  height: 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
  white-space: nowrap;
}

a.button img,
button.button img {
  vertical-align: middle;
  margin-top: -2px;
}

a.button span,
button.button span {
  vertical-align: middle;
}

a.button.disabled,
button.button.disabled {
  opacity: 0.5;
}

a.button.transparent,
button.button.transparent {
  padding: 14px 40px;
  background-color: white;
  color: #6939ff !important;
  letter-spacing: 0.04em;
  border: solid 2px #6939ff;
}

a.button.transparent img:nth-child(2),
button.button.transparent img:nth-child(2) {
  display: none;
}

a.button.transparent:hover,
button.button.transparent:hover {
  background: #6939ff;
  color: #ffff !important;
}

a.button.transparent:hover img:nth-child(1),
button.button.transparent:hover img:nth-child(1) {
  display: none;
}

a.button.transparent:hover img:nth-child(2),
button.button.transparent:hover img:nth-child(2) {
  display: inline-block;
}

a.button.transparent:hover span,
button.button.transparent:hover span {
  color: #ffff;
}

a.button:hover,
button.button:hover {
  background: #8f242a;
}

@media all and (min-width: 1024px) {
  a.button,
  button.button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.circle-button {
  border: none;
  background-color: transparent;
}

.hidden {
  display: none !important;
}

.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: auto;
}

.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: lds-default 1.2s linear infinite;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.lds-default div:nth-child(2) {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.lds-default div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.lds-default div:nth-child(4) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.lds-default div:nth-child(5) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.lds-default div:nth-child(6) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.lds-default div:nth-child(7) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.lds-default div:nth-child(8) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.lds-default div:nth-child(9) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.lds-default div:nth-child(10) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.lds-default div:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.lds-default div:nth-child(12) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@-webkit-keyframes lds-default {
  0%,
  20%,
  80%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes lds-default {
  0%,
  20%,
  80%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

.hidden {
  display: none;
}

.page-id-587 nav .menu-navs {
  display: none;
}

.page-id-581 nav .menu-navs {
  display: none;
}
