/*!
 * Bootstrap Grid v5.3.0-alpha3 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container-x,
.wp-block-columns,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .container-x,
.wp-block-columns,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
  }
}
@media (min-width: 992px) {
  .container-x,
.wp-block-columns,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}

@media (min-width: 576px) {
  .container-sm,
.container-x,
.wp-block-columns {
    max-width: 540px;
  }
}
@media (min-width: 769px) {
  .container-md,
.container-sm,
.container-x,
.wp-block-columns {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
.container-md,
.container-sm,
.container-x,
.wp-block-columns {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
.container-lg,
.container-md,
.container-sm,
.container-x,
.wp-block-columns {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-x,
.wp-block-columns {
    max-width: 1312px;
  }
}
@media (min-width: 1660px) {
  .container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-x {
    max-width: 1312px;
  }
}
@media (min-width: 2500px) {
  .container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-x,
.wp-block-columns {
    max-width: 1680px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.d-none {
  display: none !important;
}

.col {
  flex: 1 0 0%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.btn {
  font-family: "Public Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  border-radius: 30px;
  padding: 20px 40px;
  text-decoration: none;
  border: none;
}

.btn:hover,
.btn:focus {
  color: #9D9EB3;
}

.btn.btn-small {
  padding: 10px 24px;
}

.btn.btn-primary {
  color: #fff;
  background: #D11655;
  background-size: 100% 200%;
  background-position: 0 0;
  background-repeat: no-repeat;
  transition: background-position 0.27s ease-in-out;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  color: #fff;
  background-position: 0 100%;
}

.btn.btn-dark {
  color: #FFFFFF;
  background: #1C1D28;
}

.btn.btn-dark:hover,
.btn.btn-dark:focus {
  background: #272837;
  color: #FFFFFF;
}

.btn.btn-darken {
  color: #FFFFFF;
  background: #282934;
}

.btn.btn-darken:hover,
.btn.btn-darken:focus {
  background: #1C1D28;
  color: #FFFFFF;
}

.btn-group {
  margin: 0 -5px -10px;
  display: flex;
  flex-wrap: wrap;
}

.btn-group .btn {
  margin: 0 5px 10px;
}

.btn-white {
  color: #000;
  background-color: #fff;
}
.btn-white:hover {
  color: #000;
}

.megamenu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  z-index: 999;
}
.megamenu.open {
  display: block;
}
.megamenu-inner {
  height: 100%;
  background-color: rgb(26, 28, 42);
  overflow-y: auto;
}
.megamenu-section {
  padding: 2rem;
}
.megamenu-section-header {
  margin: 0 0 2rem;
}
.megamenu-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.megamenu-section .section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
}
.megamenu-section .section-text {
  color: rgb(157, 158, 179);
  margin: 0 0 1.5rem;
}
.megamenu-section .section-links, .megamenu-section .section-terms {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}
.megamenu-section .section-links a, .megamenu-section .section-terms a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
}
.megamenu-section .section-terms {
  align-items: center;
  gap: 0.5rem;
  flex-direction: row;
  flex-wrap: wrap;
}
.megamenu-section .section-terms a {
  background-color: rgb(36, 39, 51);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
}
.megamenu-section.links_section {
  background-color: rgb(36, 39, 51);
  height: 100%;
}
.megamenu-section.learn_section .section-links li {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.9939 1.5H4.80682C4.4993 1.5 4.25 1.7493 4.25 2.05682V21.9432C4.25 22.2507 4.4993 22.5 4.80682 22.5H20.9432C21.2507 22.5 21.5 22.2507 21.5 21.9432V5.85629M16.9939 1.5L21.5 5.85629M16.9939 1.5V5.29947C16.9939 5.607 17.2432 5.85629 17.5507 5.85629L21.5 5.85629' stroke='%23FF1560' stroke-width='1.67045' stroke-linejoin='round'/%3E%3Cpath d='M6.5 4.50013H14.75V8.25013H19.25V19.6364H6.5L6.5 4.50013Z' fill='%23FF1560'/%3E%3Cpath d='M13.25 12.75L19.25 12.75' stroke='%2311121C' stroke-width='1.53125'/%3E%3Crect x='11.2188' y='11.25' width='3.0625' height='3' fill='%2311121C'/%3E%3C/svg%3E%0A");
  padding-left: 2.5rem;
  text-align: left;
}
.megamenu-section .learn-section-col.left {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(137, 142, 163, 0.2);
}
.megamenu-section .learn-section-col.left .section-subtitle {
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .megamenu {
    display: none;
    width: 740px;
    top: 100%;
    transform: translateX(-60%);
    left: 50%;
  }
  .megamenu.open {
    display: block;
  }
  .megamenu-inner {
    border: 1px solid rgb(137, 142, 163);
    border-radius: 0.375rem;
    height: auto;
    overflow-y: initial;
    display: flex;
    overflow: hidden;
  }
  .megamenu-column {
    flex: 0 0 auto;
    width: 200px;
  }
  .megamenu-column:last-child {
    flex: 1 0 1%;
    width: auto;
  }
  .megamenu-section {
    text-align: left;
  }
  .megamenu-section .section-subtitle {
    margin: 0 0 1.75rem;
  }
  .megamenu-section .section-links, .megamenu-section .section-terms {
    max-width: initial;
  }
  .megamenu-section .section-terms {
    align-items: flex-start;
    text-align: left;
  }
  .megamenu-section .learn-section {
    display: flex;
  }
  .megamenu-section .learn-section-col.left {
    flex: 0 0 auto;
    width: 270px;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    border-right: 1px solid rgba(137, 142, 163, 0.2);
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  .menu-item-object-megamenu {
    position: relative;
  }
}
.megamenu-section.solutions_section {
  padding: 0;
  text-align: left;
}
.megamenu-section.solutions_section .solutions-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.megamenu-section.solutions_section .solutions-section-col {
  border-bottom: 1px solid rgba(137, 142, 163, 0.2);
  padding-bottom: 2rem;
}
.megamenu-section.solutions_section .solutions-section-col:last-child {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .megamenu-section.solutions_section .solutions-section {
    flex-direction: row;
    padding: 1rem 2rem;
  }
  .megamenu-section.solutions_section .solutions-section-col {
    width: calc(33% - 1.333rem);
    padding-bottom: 0;
    padding-right: 2rem;
    border-bottom: none;
    border-right: 1px solid rgba(137, 142, 163, 0.2);
  }
  .megamenu-section.solutions_section .solutions-section-col:last-child {
    border-right: none;
  }
}
.megamenu-section.solutions_section .section-links {
  max-width: 100%;
}
.megamenu-section.solutions_section .megamenu-section-header {
  display: none;
  padding: 1rem 2rem;
  background-color: #242733;
}
@media (min-width: 1024px) {
  .megamenu-section.solutions_section .megamenu-section-header {
    display: block;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .menu-item-has-children > a,
.menu-item-object-megamenu > a {
    padding-right: 1.5rem !important;
  }
  .menu-item-has-children > a:after,
.menu-item-object-megamenu > a:after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotateZ(90deg);
    background-image: url(/wp-content/themes/blastradius/images/chevron-right.svg);
  }
}
@media (max-width: 1023.98px) {
  .menu-item-has-children > a:before,
.menu-item-object-megamenu > a:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-image: url(/wp-content/themes/blastradius/images/chevron-right.svg);
  }
  .menu-item-has-children > a.active-dropdown:before,
.menu-item-object-megamenu > a.active-dropdown:before {
    display: none;
  }
}
.case-study .container {
  max-width: 1312px;
}
.case-study-header {
  padding: 3rem 0;
}
.case-study-header-top {
  margin-bottom: 2.5rem;
}
.case-study-header-top .breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.case-study-header-top .breadcrumbs-step {
  color: rgb(157, 158, 179);
}
.case-study-header-top .breadcrumbs-title {
  color: #fff;
}
.case-study-header-top .title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 3rem;
  text-align: center;
}
.case-study-header-box {
  background: rgba(26, 28, 42, 0.1);
  border: 1px solid rgba(193, 199, 222, 0.2);
  border-radius: 0.25rem;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.4);
  padding: 0.5rem;
}
.case-study-header-box .box-inner {
  background: rgb(36, 39, 51);
  border: 1px solid rgba(193, 199, 222, 0.5);
  border-radius: 0.25rem;
  overflow: hidden;
}
.case-study-header-box .box-content {
  text-align: center;
  padding: 2rem;
}
.case-study-header-box .box-content h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
}
.case-study-header-box .box-logo {
  background: rgb(21, 23, 37);
  padding: 3.5rem 4rem;
  height: 180px;
}
.case-study-header-box .box-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 744px) {
  .case-study-header-box {
    border-radius: 1rem;
    padding: 1rem;
  }
  .case-study-header-box .box-inner {
    border-radius: 0.5rem;
  }
  .case-study-header-box .box-content h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .case-study-header {
    position: relative;
    padding: 5rem 0;
  }
  .case-study-header:before {
    content: "";
    z-index: -1;
    position: absolute;
    left: 15%;
    right: 15%;
    top: 5rem;
    height: 60%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 21, 96, 0.5) 0%, rgba(255, 21, 96, 0) 100%);
  }
  .case-study-header:after {
    content: "";
    display: none;
  }
  .case-study-header-top {
    margin-bottom: 4rem;
  }
  .case-study-header-top .breadcrumbs {
    margin-bottom: 1.5rem;
  }
  .case-study-header-top .title {
    font-size: 2.625rem;
  }
  .case-study-header-box .box-inner {
    display: flex;
    align-items: stretch;
  }
  .case-study-header-box .box-content {
    text-align: left;
  }
  .case-study-header-box .box-content h1 {
    font-size: 3.5rem;
  }
  .case-study-header-box .box-logo {
    flex: 0 0 auto;
    width: 380px;
    padding: 3rem;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .case-study-header:before {
    content: "";
    width: 1080px;
    left: 50%;
    right: auto;
    margin-left: -540px;
  }
  .case-study-header-box .box-inner {
    display: flex;
    align-items: stretch;
  }
  .case-study-header-box .box-content {
    padding: 4rem 3.5rem;
  }
  .case-study-header-box .box-content h1 {
    line-height: 1.4;
  }
}
.case-study-entry {
  display: flex;
  flex-direction: column-reverse;
  gap: 4rem;
}
.case-study-entry-content .wp-block-embed__wrapper {
  position: relative;
}
.case-study-entry-content .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.case-study-entry-content .wp-block-embed__wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-entry-content .wp-block-embed,
.case-study-entry-content .wp-block-video {
  background: rgba(37, 39, 50, 0.4);
  border: 1px solid rgba(193, 199, 222, 0.25);
  border-radius: 0.25rem;
  padding: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.case-study-entry-content .wp-block-image {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.case-study-entry-content .wp-block-image img {
  background: rgba(37, 39, 50, 0.4);
  border: 1px solid rgba(193, 199, 222, 0.25);
  border-radius: 0.25rem;
  padding: 0.5rem;
  width: 100%;
  height: auto;
}
.case-study-entry-content .wp-block-image figcaption {
  margin-top: 1rem;
  border-left: 4px solid rgb(255, 21, 96);
  font-size: 0.875rem;
  padding-left: 1rem;
  margin-bottom: 0;
}
.case-study-entry-content p {
  line-height: 1.6;
}
.case-study-entry-content ul li {
  margin: 1rem 0;
  line-height: 1.6;
}
.case-study-entry-content ul li strong {
  border-bottom: 1px solid #fff;
}
.case-study-entry .customer-box {
  background: rgb(26, 28, 42);
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgb(137, 142, 163);
}
.case-study-entry .customer-box-logo {
  padding: 1rem 3.5rem 2rem;
  display: none;
}
.case-study-entry .customer-box-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.case-study-entry .customer-box-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgb(26, 28, 42);
  border: 1px solid rgb(137, 142, 163);
  border-radius: 0.25rem;
  padding: 2rem 1.5rem;
}
.case-study-entry .customer-box-meta-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
.case-study-entry .customer-box-meta-item .item-name {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: rgb(36, 39, 51);
  color: rgb(155, 156, 176);
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .case-study-entry-content h2 {
    font-size: 2rem;
    margin: 0 0 1.5rem;
  }
  .case-study-entry-content h3 {
    font-size: 1.5rem;
  }
  .case-study-entry-content p {
    margin: 0 0 1rem;
  }
}
@media (min-width: 1024px) {
  .case-study-entry {
    flex-direction: row;
    gap: 3rem;
    padding-top: 5rem;
  }
  .case-study-entry-content > *:first-child h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
  .case-study-entry-content h2 {
    font-size: 2.625rem;
  }
  .case-study-entry-content h3 {
    font-size: 2.125rem;
  }
  .case-study-entry-content .wp-block-embed,
.case-study-entry-content .wp-block-video {
    padding: 1rem;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
  .case-study-entry-content .wp-block-image {
    margin-bottom: 3.5rem;
  }
  .case-study-entry-content .wp-block-image img {
    padding: 1rem;
  }
  .case-study-entry-content .wp-block-image figcaption {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  .case-study-entry-aside {
    flex: 0 0 auto;
    width: 360px;
  }
  .case-study-entry .customer-box {
    padding: 1rem;
  }
  .case-study-entry .customer-box-logo {
    display: block;
  }
}
@media (min-width: 1200px) {
  .case-study-entry {
    gap: 5rem;
  }
  .case-study-entry-aside {
    width: 420px;
  }
}

.custom-quote {
  border: 1px solid rgb(255, 21, 96);
  border-radius: 0.25rem;
  padding: 1.5rem;
  margin: 3rem 0;
}
.custom-quote-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.custom-quote-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.custom-quote-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.custom-quote-author .author-avatar {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  padding: 0.25rem;
  border-radius: 0.25rem;
  background: rgb(49, 51, 63);
  border: 0.16px solid rgba(193, 199, 222, 0.25);
  box-shadow: 0px 0px 6.39px 0px rgba(0, 0, 0, 0.8);
}
.custom-quote-author .author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}
.custom-quote-author .author-info .name {
  font-weight: 600;
}
.custom-quote-logo {
  max-width: 150px;
}
.custom-quote-logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .custom-quote {
    margin: 4rem 0;
  }
  .custom-quote-text {
    margin-bottom: 2rem;
  }
  .custom-quote-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .custom-quote-author .author-avatar {
    width: 4.625rem;
    height: 4.625rem;
  }
  .custom-quote-author .author-info .name {
    font-size: 20px;
  }
  .custom-quote-logo {
    max-width: 195px;
  }
}

.about-box {
  position: relative;
  border: 1px solid rgb(80, 80, 80);
  border-radius: 0.25rem;
  padding: 1.5rem;
  margin: 3rem 0;
  overflow: hidden;
}
.about-box:before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 21, 96, 0.5) 0%, rgba(255, 21, 96, 0) 100%);
  z-index: -1;
}
.about-box-header {
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-box-header .title {
  font-size: 1.5rem;
}
.about-box-logo {
  width: 180px;
}
.about-box-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.about-box-text {
  font-size: 1.25rem;
}
.about-box-text > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about-box:before {
    left: 30%;
    top: 0%;
  }
}
@media (min-width: 1024px) {
  .about-box {
    margin: 4rem 0;
  }
  .about-box-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  .about-box-header .title {
    font-size: 1.75rem;
  }
}

.customers-grid {
  padding-bottom: 4rem;
  padding-top: 4rem;
}
.customers-grid-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.customers-grid .customer-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: rgb(26, 28, 42);
  border: 1px solid rgb(137, 142, 163);
  border-radius: 0.25rem;
  height: 100%;
}
.customers-grid .customer-item-thumbnail {
  position: relative;
  padding: 3.375rem;
  background: linear-gradient(218.02deg, #1A1C2A 23.75%, #151725 62.53%);
  overflow: hidden;
  height: 180px;
  margin-bottom: 1rem;
}
.customers-grid .customer-item-thumbnail:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -22px;
  right: -42px;
  width: 405px;
  height: 240px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='287' height='150' viewBox='0 0 287 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.6' d='M188.991 -67.8506L-76.4293 171.799H233.237L329.207 73.4042V-67.8506H188.991Z' fill='url(%23paint0_linear_715_1596)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_715_1596' x1='133.547' y1='159.441' x2='252.014' y2='-14.9483' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.07' stop-color='%23FF1560' stop-opacity='0'/%3E%3Cstop offset='0.17' stop-color='%23FF1560' stop-opacity='0.02'/%3E%3Cstop offset='0.31' stop-color='%23FF1560' stop-opacity='0.09'/%3E%3Cstop offset='0.46' stop-color='%23FF1560' stop-opacity='0.2'/%3E%3Cstop offset='0.62' stop-color='%23FF1560' stop-opacity='0.35'/%3E%3Cstop offset='0.8' stop-color='%23FF1560' stop-opacity='0.55'/%3E%3Cstop offset='0.99' stop-color='%23FF1560' stop-opacity='0.78'/%3E%3Cstop offset='1' stop-color='%23FF1560' stop-opacity='0.8'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
.customers-grid .customer-item-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 265px;
  max-height: 85px;
  margin: 0 auto;
}
.customers-grid .customer-item-title {
  font-size: 1.75rem;
}
.customers-grid .customer-item-title a {
  color: #fff;
}
.customers-grid .customer-item-title a:hover {
  color: #FF1560;
}
.customers-grid .customer-item-excerpt {
  margin-bottom: 1rem;
  color: rgb(155, 156, 176);
}
.customers-grid .customer-item-more {
  margin-top: auto;
}
.customers-grid .customer-item-more a {
  display: flex;
  gap: 0.5rem;
  color: #fff;
}
.customers-grid .customer-item-more a svg path {
  transition: all 0.27s ease;
}
.customers-grid .customer-item-more a:hover {
  color: #FF1560;
}
.customers-grid .customer-item-more a:hover svg path {
  stroke: #FF1560;
}
@media (min-width: 768px) {
  .customers-grid-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .customers-grid-item {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
  }
}
@media (min-width: 1024px) {
  .customers-grid-item {
    width: calc(33.33% - 1.333rem);
  }
}

.breadcrumbs-heading {
  padding: 4rem 0;
}
.breadcrumbs-heading-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.breadcrumbs-heading .title {
  margin-bottom: 1.5rem;
}
.breadcrumbs-heading .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.breadcrumbs-heading .breadcrumbs a {
  color: rgb(157, 158, 179);
  display: flex;
  align-items: center;
}
.breadcrumbs-heading .breadcrumbs a:not(:last-child):after {
  content: "";
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L1 9' stroke='%239D9EB3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.breadcrumbs-heading .breadcrumbs a:first-child:before {
  content: "";
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/breadcrumbs_icon.png");
}
.breadcrumbs-heading .breadcrumbs a:last-child {
  color: #fff;
}
.breadcrumbs-heading.simple {
  padding-bottom: 0;
}
.breadcrumbs-heading.simple .breadcrumbs {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .breadcrumbs-heading {
    padding: 5rem 0;
  }
}

.video-slider-section {
  padding: 1rem 0 4rem;
}
.video-slider-section-inner {
  position: relative;
}
.video-slider-section-title {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .video-slider-section {
    padding: 1rem 0 5rem;
    background-size: auto;
  }
  .video-slider-section-title {
    margin-bottom: 5rem;
  }
}
@media (max-width: 991.98px) {
  .video-slider-section__rsa .video-slider {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 991.98px) {
  .video-slider-section__rsa .slider-styles.slick-slider .slick-dots {
    padding: 0 0 30px;
  }
}
.video-slider-item-content .text {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.video-slider-item-customer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.video-slider-item-customer .avatar {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  padding: 0.25rem;
  margin: 0;
  border-radius: 0.25rem;
  background: rgb(49, 51, 63);
  border: 0.16px solid rgba(193, 199, 222, 0.25);
  box-shadow: 0px 0px 6.39px 0px rgba(0, 0, 0, 0.8);
}
.video-slider-item-customer .avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}
.video-slider-item-customer .info .name {
  font-weight: 500;
}
@media (min-width: 1024px) {
  .video-slider-item {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 5rem;
    align-items: center;
    padding-bottom: 10rem;
  }
  .video-slider-item-content {
    flex: 0 0 auto;
    width: 440px;
  }
  .video-slider-item-content .text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
  .video-slider-item-customer .avatar {
    width: 5rem;
    height: 5rem;
  }
  .video-slider-item-customer .info .name {
    font-size: 1.5rem;
  }
}
.video-slider-video {
  position: relative;
  background: rgb(49, 51, 63);
  border: 1px solid rgba(193, 199, 222, 0.25);
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.video-slider-video-wrapper {
  margin-top: 1.5rem;
}
.video-slider-video-inner {
  position: relative;
}
.video-slider-video-logo {
  position: absolute;
  left: 50%;
  margin-left: -100px;
  bottom: 100px;
  margin-top: 1.5rem;
  max-width: 200px;
  text-align: center;
}
.video-slider-video .video-wrapper {
  position: relative;
}
.video-slider-video .video-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-slider-video .video-wrapper-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-slider-video .video-wrapper-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.video-slider-video .video-wrapper-placeholder-play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -38px;
  margin-top: -24px;
  z-index: 3;
  transition: all 0.3s ease;
}
.video-slider-video .video-wrapper-placeholder-play svg {
  display: block;
  width: 60px;
  height: auto;
}
@media (min-width: 1024px) {
  .video-slider-video-wrapper {
    flex: 1 0 1%;
    margin: 0;
  }
  .video-slider-video:before {
    content: "";
    position: absolute;
    right: -22%;
    top: 0;
    display: block;
    width: 192%;
    height: 154%;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='1372' height='717' viewBox='0 0 1372 717' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.6' d='M593.149 0L-82 605.86L1127.88 717L1372 468.247H593.151L593.149 0Z' fill='url(%23paint0_linear_715_1320)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_715_1320' x1='452.117' y1='685.758' x2='1040.4' y2='-233.761' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.07' stop-color='%23FF1560' stop-opacity='0'/%3E%3Cstop offset='0.17' stop-color='%23FF1560' stop-opacity='0.02'/%3E%3Cstop offset='0.31' stop-color='%23FF1560' stop-opacity='0.09'/%3E%3Cstop offset='0.46' stop-color='%23FF1560' stop-opacity='0.2'/%3E%3Cstop offset='0.62' stop-color='%23FF1560' stop-opacity='0.35'/%3E%3Cstop offset='0.8' stop-color='%23FF1560' stop-opacity='0.55'/%3E%3Cstop offset='0.99' stop-color='%23FF1560' stop-opacity='0.78'/%3E%3Cstop offset='1' stop-color='%23FF1560' stop-opacity='0.8'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  }
  .video-slider-video .video-wrapper-placeholder-play {
    margin-left: -64px;
    margin-top: -51px;
  }
  .video-slider-video .video-wrapper-placeholder-play svg {
    width: 128px;
  }
}

.home .video-slider-section {
  background-color: #1A1C2A;
}

.video-slider-section .slider-styles.slick-slider .slick-dots {
  gap: 2rem;
  height: auto;
}
.video-slider-section .slider-styles.slick-slider .slick-dots > li {
  transform: none;
  margin: 0;
}
.video-slider-section .slider-styles.slick-slider .slick-dots > li.slick-active .video-slide-bullet {
  border-bottom: 2px solid #D11655;
}
.video-slider-section .slider-styles.slick-slider .slick-dots > li.slick-active .video-slide-bullet img {
  filter: brightness(1);
}
.video-slider-section .slider-styles.slick-slider .slick-dots .video-slide-bullet {
  max-width: 100px;
  padding: 0.5rem 0;
  cursor: pointer;
}
.video-slider-section .slider-styles.slick-slider .slick-dots .video-slide-bullet img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.5);
}
@media (min-width: 1024px) {
  .video-slider-section .slider-styles.slick-slider .slick-dots {
    margin-top: -6rem;
    padding: 0;
    gap: 3rem;
  }
  .video-slider-section .slider-styles.slick-slider .slick-dots .video-slide-bullet {
    padding: 1rem 0;
    max-width: 150px;
  }
}

@media (max-width: 991.98px) {
  .block-fifty-fifty {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .block-fifty-fifty {
    padding: 80px 0;
  }
}
.block-fifty-fifty.color {
  background-color: #1A1C2A;
}
.block-fifty-fifty.gradient {
  background: linear-gradient(160deg, rgb(15, 16, 28) 0%, rgb(26, 28, 42) 100%);
}
@media (max-width: 991.98px) {
  .block-fifty-fifty .container-x > .row {
    row-gap: 48px;
  }
}
.block-fifty-fifty__container .container-x {
  max-width: 1176px;
}
@media (min-width: 992px) {
  .block-fifty-fifty__container .block-fifty-fifty__wrap h2 {
    font-size: 48px;
    max-width: 500px;
  }
  .block-fifty-fifty__container .block-fifty-fifty__wrap p,
.block-fifty-fifty__container .block-fifty-fifty__wrap ul,
.block-fifty-fifty__container .block-fifty-fifty__wrap ol {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 20px;
    line-height: 1.3em;
  }
  .block-fifty-fifty__container .block-fifty-fifty__wrap p:first-child {
    font-family: "Public Sans", sans-serif;
  }
}
@media (max-width: 991.98px) {
  .block-fifty-fifty__title {
    margin-bottom: 44px;
  }
}
@media (min-width: 992px) {
  .block-fifty-fifty__title {
    margin-bottom: 80px;
  }
}
.block-fifty-fifty__title.center {
  text-align: center;
}
@media (max-width: 991.98px) {
  .block-fifty-fifty__title.center {
    margin: 0 auto 44px;
  }
}
@media (min-width: 992px) {
  .block-fifty-fifty__title.center {
    margin: 0 auto 80px;
  }
}
.block-fifty-fifty .row.top {
  align-items: flex-start;
}
.block-fifty-fifty .row.center {
  align-items: center;
}
.block-fifty-fifty .row.bottom {
  align-items: flex-end;
}
.block-fifty-fifty .row.reverse {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .block-fifty-fifty__wrap.left {
    margin-right: auto;
  }
  .block-fifty-fifty__wrap.center {
    margin: 0 auto;
  }
  .block-fifty-fifty__wrap.right {
    margin-left: auto;
  }
}
.block-fifty-fifty__wrap h1,
.block-fifty-fifty__wrap h2,
.block-fifty-fifty__wrap h3,
.block-fifty-fifty__wrap h4,
.block-fifty-fifty__wrap h5,
.block-fifty-fifty__wrap h6 {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .block-fifty-fifty__wrap h2 {
    font-weight: 500;
    font-size: 55px;
    line-height: 1.3em;
  }
}
@media (min-width: 992px) {
  .block-fifty-fifty__wrap h3 {
    font-weight: 500;
    font-size: 42px;
    line-height: 1.3em;
  }
}
@media (max-width: 991.98px) {
  .block-fifty-fifty__wrap p,
.block-fifty-fifty__wrap ul,
.block-fifty-fifty__wrap ol {
    line-height: 1.6em;
  }
}
@media (min-width: 992px) {
  .block-fifty-fifty__wrap p,
.block-fifty-fifty__wrap ul,
.block-fifty-fifty__wrap ol {
    font-size: 18px;
    line-height: 1.6em;
  }
}
.block-fifty-fifty figure {
  position: relative;
  z-index: 1;
}
.block-fifty-fifty__shadow {
  position: absolute;
  width: 200%;
  height: 115%;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
.block-fifty-fifty .noreverse .block-fifty-fifty__shadow {
  clip-path: polygon(100% 30%, 100% 80%, 80% 100%, 0 100%, 50% 0);
  background: linear-gradient(35deg, rgba(15, 16, 28, 0) 35%, rgba(209, 22, 85, 0.5) 100%);
  right: 0;
}
.block-fifty-fifty .reverse .block-fifty-fifty__shadow {
  clip-path: polygon(0 30%, 50% 0, 100% 100%, 20% 100%, 0 80%);
  background: linear-gradient(-35deg, rgba(15, 16, 28, 0) 35%, rgba(209, 22, 85, 0.5) 100%);
  left: 0;
}
@media (max-width: 991.98px) {
  .block-fifty-fifty__button {
    margin-top: 4px;
  }
}
@media (max-width: 575.98px) {
  .block-fifty-fifty__button {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .block-fifty-fifty__button {
    margin-top: 28px;
  }
}

.block-team {
  background-color: #1A1C2A;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .block-team {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .block-team {
    padding: 112px 0;
  }
}
.block-team .row {
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .block-team .row {
    row-gap: 24px;
  }
}
@media (min-width: 992px) {
  .block-team .row {
    margin: 0 -24px;
    row-gap: 48px;
  }
  .block-team .row > div {
    padding: 0 24px;
  }
}
.block-team .entry-decor {
  width: 93%;
  height: 53%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 21, 96, 0.5) 0%, rgba(255, 21, 96, 0) 100%);
  filter: blur(100px);
  -webkit-filter: blur(100px);
  -moz-filter: blur(100px);
  -o-filter: blur(100px);
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  border-radius: 50%;
}
.block-team__title {
  text-align: center;
}
@media (max-width: 991.98px) {
  .block-team__title {
    margin-bottom: 44px;
  }
}
@media (min-width: 992px) {
  .block-team__title {
    font-size: 42px;
    line-height: 1.3em;
    margin-bottom: 64px;
  }
}
.block-team__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 12px 24px;
  border: 1px solid rgba(193, 199, 222, 0.36);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.8);
  background-color: #31333F;
  color: #fff;
  position: relative;
}
.block-team__card-thumbnail {
  display: block;
  margin: 0 0 24px;
  position: relative;
}
.block-team__card-thumbnail:hover .block-team__card-text {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.block-team__card-text {
  font-size: 18px;
  line-height: 1.6em;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  padding: 12px 0;
  background-color: #31333F;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.block-team__card-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  object-position: top center;
}
.block-team__card-name {
  display: block;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.5em;
}
.block-team__card-position {
  font-size: 18px;
  line-height: 1.6em;
}
.block-team__card-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}
.block-team__card-read {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  color: #8A8F98;
}
.block-team__card-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
  padding-right: 7px;
}
.block-team__card-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #8A8F98;
}

@media (max-width: 991.98px) {
  .block-cards-icon {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .block-cards-icon {
    padding: 80px 0;
  }
}
.block-cards-icon__title {
  text-align: center;
}
@media (max-width: 991.98px) {
  .block-cards-icon__title {
    margin-bottom: 44px;
  }
}
@media (min-width: 992px) {
  .block-cards-icon__title {
    font-size: 42px;
    line-height: 1.3em;
    margin-bottom: 64px;
  }
}
@media (max-width: 991.98px) {
  .block-cards-icon .row {
    row-gap: 24px;
  }
}
@media (min-width: 992px) {
  .block-cards-icon .row {
    margin: 0 -24px;
    row-gap: 48px;
  }
  .block-cards-icon .row > div {
    padding: 0 24px;
  }
}
.block-cards-icon__card {
  display: flex;
  color: #fff;
}
@media (max-width: 991.98px) {
  .block-cards-icon__card {
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .block-cards-icon__card {
    gap: 32px;
  }
}
.block-cards-icon__card p {
  margin: 0;
}
.block-cards-icon__card.top {
  flex-direction: column;
}
.block-cards-icon__card-figure {
  width: 55px;
  height: 55px;
  min-width: 55px;
  margin: 0;
}
.block-cards-icon__card-flex {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.block-cards-icon__card-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5em;
}
.block-cards-icon__card-text {
  font-size: 18px;
  line-height: 1.6em;
}

@media (max-width: 991.98px) {
  .block-cards-members {
    padding: 48px 0;
  }
}
@media (min-width: 992px) {
  .block-cards-members {
    padding: 128px 0;
  }
}
.block-cards-members__title {
  text-align: center;
}
@media (max-width: 991.98px) {
  .block-cards-members__title {
    margin-bottom: 48px;
  }
}
@media (min-width: 992px) {
  .block-cards-members__title {
    margin-bottom: 64px;
  }
}
.block-cards-members .row {
  row-gap: 48px;
}
@media (min-width: 992px) {
  .block-cards-members .row {
    margin: 0 -16px;
  }
  .block-cards-members .row > div {
    padding: 0 16px;
  }
}
.block-cards-members__card {
  text-align: center;
}
.block-cards-members__card-figure {
  overflow: hidden;
  border: 2px solid #898EA3;
  border-radius: 50%;
}
@media (max-width: 575.98px) {
  .block-cards-members__card-figure {
    width: 123px;
    height: 123px;
    margin: 0 auto 14px;
  }
}
@media (min-width: 576px) {
  .block-cards-members__card-figure {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
  }
}
.block-cards-members__card-img {
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .block-cards-members__card-img {
    width: 123px;
    height: 123px;
  }
}
@media (min-width: 576px) {
  .block-cards-members__card-img {
    width: 200px;
    height: 200px;
  }
}
.block-cards-members__card-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Bai Jamjuree", sans-serif;
}
@media (max-width: 575.98px) {
  .block-cards-members__card-flex {
    row-gap: 6px;
  }
}
@media (min-width: 576px) {
  .block-cards-members__card-flex {
    row-gap: 6px;
  }
}
.block-cards-members__card-flex p {
  margin: 0;
}
.block-cards-members__card-name {
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .block-cards-members__card-name {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (min-width: 576px) {
  .block-cards-members__card-name {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (max-width: 575.98px) {
  .block-cards-members__card-position {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (min-width: 576px) {
  .block-cards-members__card-position {
    font-size: 16px;
    line-height: 16px;
  }
}

@media (max-width: 991.98px) {
  .block-awards {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  .block-awards {
    padding: 80px 0;
  }
}
.block-awards__title {
  text-align: center;
}
@media (max-width: 991.98px) {
  .block-awards__title {
    margin-bottom: 44px;
  }
}
@media (min-width: 992px) {
  .block-awards__title {
    font-size: 42px;
    line-height: 1.3em;
    margin-bottom: 64px;
  }
}
.block-awards__gallery {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .block-awards__gallery {
    gap: 36px 24px;
  }
}
@media (min-width: 1200px) {
  .block-awards__gallery {
    gap: 48px;
  }
}
.block-awards__gallery-figure {
  margin: 0;
}
.block-awards__gallery-img {
  width: 100%;
  max-height: 115px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .block-slider-quote {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  .block-slider-quote {
    padding: 80px 0;
  }
}
.block-slider-quote__title {
  text-align: center;
}
@media (max-width: 991.98px) {
  .block-slider-quote__title {
    margin-bottom: 44px;
  }
}
@media (min-width: 992px) {
  .block-slider-quote__title {
    margin-bottom: 80px;
    font-weight: 500;
    font-size: 55px;
    line-height: 1.3em;
  }
}
.block-slider-quote__slider .slick-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 0;
  color: #fff;
  border: 1px solid rgba(137, 142, 163, 0.3);
  background-color: #1A1C2A;
  z-index: 7;
}
@media (max-width: 991.98px) {
  .block-slider-quote__slider .slick-arrow {
    bottom: -24px;
  }
}
@media (min-width: 992px) {
  .block-slider-quote__slider .slick-arrow {
    bottom: 0;
  }
}
.block-slider-quote__slider .slick-dots {
  list-style-type: none;
  display: flex;
  gap: 8px;
  padding: 0;
  position: relative;
  z-index: 7;
}
@media (max-width: 991.98px) {
  .block-slider-quote__slider .slick-dots {
    justify-content: center;
    margin: 24px 0 0;
  }
}
@media (min-width: 992px) {
  .block-slider-quote__slider .slick-dots {
    margin: -28px 0 0 0;
    justify-content: flex-start;
  }
}
.block-slider-quote__slider .slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.block-slider-quote__slider .slick-dots li button {
  padding: 0;
  margin: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: transparent;
  background-color: #3A3D47;
}
.block-slider-quote__slider .slick-dots li.slick-active button {
  background-color: #898EA3;
}

.quote-slider__flex {
  display: flex;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .quote-slider__flex {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .quote-slider__flex {
    justify-content: space-between;
  }
}
.quote-slider__media {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .quote-slider__media {
    flex-basis: auto;
  }
}
@media (min-width: 992px) {
  .quote-slider__media {
    flex-basis: 470px;
    padding-bottom: 126px;
  }
}
.quote-slider__media-photo {
  flex-basis: 184px;
  border: 1px solid rgba(193, 199, 222, 0.3);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.8);
  background-color: #31333F;
  padding: 12px;
  position: relative;
}
.quote-slider__media-photo::after {
  position: absolute;
  content: "";
  width: 258%;
  height: 307px;
  top: 0;
  left: 0;
  background: linear-gradient(142deg, rgb(255, 21, 96) 10%, rgba(255, 21, 96, 0) 55%, rgba(255, 21, 96, 0) 50%);
  filter: blur(50px);
  opacity: 0.8;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 39% 0, 100% 100%, 37% 100%, 0 52%);
  clip-path: polygon(0 0, 39% 0, 100% 65%, 37% 100%, 0 52%);
}
.quote-slider__media-info {
  flex-basis: 222px;
  text-align: right;
  color: #fff;
}
.quote-slider__media-name {
  display: block;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6em;
}
.quote-slider__media-subname {
  font-size: 18px;
  line-height: 1.6em;
}
.quote-slider__media-logo {
  max-width: 140px;
  margin: 25px 0 0 auto;
}
.quote-slider__text {
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399.98px) {
  .quote-slider__text {
    flex-basis: 575px;
  }
}
@media (max-width: 991.98px) {
  .quote-slider__text {
    flex-basis: auto;
  }
}
@media (min-width: 992px) {
  .quote-slider__text {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.5em;
    padding-bottom: 84px;
  }
}
@media (min-width: 1400px) {
  .quote-slider__text {
    flex-basis: 682px;
  }
}
.quote-slider__text svg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .quote-slider__text svg {
    justify-content: center;
    width: 50px;
  }
}
@media (max-width: 1399.98px) {
  .quote-slider .slick-next {
    left: 37.8%;
  }
}
@media (max-width: 991.98px) {
  .quote-slider .slick-next {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .quote-slider .slick-next {
    left: 32.8%;
  }
}
@media (max-width: 1399.98px) {
  .quote-slider .slick-prev {
    left: 30%;
  }
}
@media (max-width: 991.98px) {
  .quote-slider .slick-prev {
    left: 0;
  }
}
@media (min-width: 1400px) {
  .quote-slider .slick-prev {
    left: 26%;
  }
}

.content-slider__content {
  display: flex;
  flex-direction: column;
  color: #fff;
  max-width: 592px;
}
@media (max-width: 991.98px) {
  .content-slider__content {
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .content-slider__content {
    gap: 32px;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .content-slider__content-title {
    font-weight: 500;
    font-size: 42px;
    line-height: 1.3em;
    margin-top: 22px;
  }
}
@media (min-width: 992px) {
  .content-slider__content-text {
    font-size: 18px;
    line-height: 1.6em;
  }
}
.content-slider__image {
  display: block;
  width: 100%;
}
@media (max-width: 1399.98px) {
  .content-slider .slick-next {
    left: 44.5%;
  }
}
@media (max-width: 1199.98px) {
  .content-slider .slick-next {
    left: 43.5%;
  }
}
@media (max-width: 991.98px) {
  .content-slider .slick-next {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .content-slider .slick-next {
    left: 42%;
  }
}
@media (max-width: 1399.98px) {
  .content-slider .slick-prev {
    left: 36%;
  }
}
@media (max-width: 1199.98px) {
  .content-slider .slick-prev {
    left: 35%;
  }
}
@media (max-width: 991.98px) {
  .content-slider .slick-prev {
    left: 0;
  }
}
@media (min-width: 1400px) {
  .content-slider .slick-prev {
    left: 35%;
  }
}

.block-vacancy {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .block-vacancy {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  .block-vacancy {
    padding: 112px 0;
  }
}
.block-vacancy__heading {
  text-align: center;
}
@media (max-width: 991.98px) {
  .block-vacancy__heading {
    margin-bottom: 44px;
  }
}
@media (min-width: 992px) {
  .block-vacancy__heading {
    margin-bottom: 64px;
  }
}
@media (min-width: 992px) {
  .block-vacancy__heading-title {
    font-size: 42px;
    line-height: 1.3em;
  }
}
@media (min-width: 992px) {
  .block-vacancy__heading-text {
    font-size: 18px;
    line-height: 1.6em;
  }
}
.block-vacancy .entry-decor {
  width: 56%;
  height: 7%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 21, 96, 0.5) 0%, rgba(255, 21, 96, 0) 100%);
  filter: blur(100px);
  -webkit-filter: blur(100px);
  -moz-filter: blur(100px);
  -o-filter: blur(100px);
  position: absolute;
  top: 240px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  border-radius: 50%;
}
.block-vacancy ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.block-vacancy__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.block-vacancy__list-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 32px 56px;
  background-color: #242733;
  border-radius: 4px;
}
.block-vacancy__list-department {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 18px;
  line-height: 1;
  color: #FF1560;
  border: 1px solid #898EA3;
  border-radius: 2px;
  height: 41px;
}
.block-vacancy__list-sublist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.block-vacancy__list-item {
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .block-vacancy__list-item {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .block-vacancy__list-item {
    justify-content: space-between;
  }
}
.block-vacancy__list-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -32px;
  background-color: #898EA3;
}
.block-vacancy__list-item:last-child::after {
  display: none;
}
.block-vacancy__list-flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.block-vacancy__list-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.5em;
  color: #fff;
}
.block-vacancy__list-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  color: #fff;
}
.block-vacancy__list-location span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.block-vacancy__list-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 18px;
  line-height: 1;
  padding: 11px 32px;
  color: #fff;
  background-color: #31333F;
  border-radius: 51px;
  transition: all 0.25s ease-in-out;
}
.block-vacancy__list-btn:hover {
  color: #fff;
  background-color: rgba(255, 21, 96, 0.3);
  transform: scale(0.98);
}

.block-mansonry {
  background-color: #1A1C2A;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .block-mansonry {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  .block-mansonry {
    padding: 80px 0;
  }
}
.block-mansonry .entry-decor {
  width: 65%;
  height: 40%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 21, 96, 0.3) 0%, rgba(255, 21, 96, 0) 100%);
  filter: blur(60px);
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  border-radius: 50%;
}
.block-mansonry__title {
  text-align: center;
}
@media (max-width: 991.98px) {
  .block-mansonry__title {
    margin-bottom: 44px;
  }
}
@media (min-width: 992px) {
  .block-mansonry__title {
    font-size: 42px;
    line-height: 1.3em;
    margin-bottom: 64px;
  }
}
.block-mansonry__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 991.98px) {
  .block-mansonry__gallery {
    grid-auto-rows: 114px;
    gap: 12px;
  }
}
@media (max-width: 767.98px) {
  .block-mansonry__gallery {
    grid-auto-rows: 92px;
    gap: 5px;
  }
}
@media (min-width: 992px) {
  .block-mansonry__gallery {
    grid-auto-rows: 232px;
    gap: 27px 32px;
  }
}
.block-mansonry__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-mansonry__gallery-item:nth-child(15n+1) {
  grid-column: 1/2;
  grid-row: 1;
}
.block-mansonry__gallery-item:nth-child(15n+2) {
  grid-column: 1/2;
  grid-row: 2;
}
.block-mansonry__gallery-item:nth-child(15n+3) {
  grid-column: 2/4;
  grid-row: span 2;
}
.block-mansonry__gallery-item:nth-child(15n+4) {
  grid-column: 4/6;
}
.block-mansonry__gallery-item:nth-child(15n+5) {
  grid-column: 4/6;
}
.block-mansonry__gallery-item:nth-child(15n+6) {
  grid-column: 1/3;
  grid-row: span 2;
}
.block-mansonry__gallery-item:nth-child(15n+7) {
  grid-column: 3/3;
  grid-row: span 2;
}
.block-mansonry__gallery-item:nth-child(15n+8) {
  grid-column: 4/6;
  grid-row: span 2;
}
.block-mansonry__gallery-item:nth-child(15n+9) {
  grid-column: 5/6;
  grid-row: 3;
}
.block-mansonry__gallery-item:nth-child(15n+10) {
  grid-column: 5/6;
  grid-row: 4;
}
.block-mansonry__gallery-item:nth-child(15n+11) {
  grid-column: 1/2;
  grid-row: 5;
}
.block-mansonry__gallery-item:nth-child(15n+12) {
  grid-column: 1/2;
  grid-row: 6;
}
.block-mansonry__gallery-item:nth-child(15n+13) {
  grid-column: 2/4;
  grid-row: span 2;
}
.block-mansonry__gallery-item:nth-child(15n+14) {
  grid-column: 4/6;
}
.block-mansonry__gallery-item:nth-child(15n+15) {
  grid-column: 4/6;
}

.section-media-text__heading {
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
}
.section-media-text__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section-media-text__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-media-text__list-item img {
  width: 26px;
  height: 26px;
  min-width: 26px;
  object-fit: contain;
  object-position: center;
}
.section-media-text__video {
  position: relative;
  z-index: 2;
}
.section-media-text__video video {
  display: block;
  width: 100%;
  max-width: 100%;
}
.section-media-text__code .hbspt-form {
  background-color: #151725;
  padding: 3rem 2rem;
  max-width: 400px;
  border-radius: 1rem;
  margin: 0 auto;
  position: relative;
}
.section-media-text__code .hbspt-form label span:not(.hs-form-required) {
  color: #fff;
}
.section-media-text__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .section-media-text__buttons {
    justify-content: center;
    margin-top: 36px;
  }
}
@media (min-width: 768px) {
  .section-media-text__buttons {
    padding-left: 60px;
    margin-top: 48px;
  }
}
.section-media-text .media-wrapper::before {
  z-index: -1;
}
@media (max-width: 991.98px) {
  .section-media-text.fz-40 .section-inner-media__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .section-media-text.fz-40 .section-inner-media__title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 28px;
  }
}
.section-media-text.section-media-text__align-top .section-inner {
  align-items: flex-start;
}

.section-inner-media__title {
  display: block;
  text-align: center;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .section-inner-media__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .section-inner-media__title {
    font-size: 50px;
    margin-bottom: 32px;
  }
}
.section-inner-media__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 991.98px) {
  .block-video-limited {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .block-video-limited {
    padding: 80px 0;
  }
}
.block-video-limited__wrap.center {
  margin: 0 auto;
}
.block-video-limited__wrap.center .block-video-limited__heading {
  text-align: center;
}
.block-video-limited__wrap.right {
  margin-left: auto;
}
.block-video-limited__wrap.right .block-video-limited__heading {
  text-align: right;
}
.block-video-limited__heading {
  margin-bottom: 42px;
}
.block-video-limited__heading-subtitle {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  margin: 0;
}
.block-video-limited__video {
  position: relative;
  z-index: 1;
}
.block-video-limited__video video {
  width: 100%;
  max-width: 100%;
}
.block-video-limited__popup {
  display: none;
  width: 100%;
  height: 100%;
  overflow: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 0;
  transition: all 0.3s;
}
.block-video-limited__popup::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 145%;
  top: 0;
  left: 0;
  background: rgba(23, 22, 20, 0.01);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: -1;
}
.block-video-limited__popup.active {
  display: block;
}
.block-video-limited__popup-content {
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  padding: 38px 24px 10px;
}
.block-video-limited__popup-close {
  font-size: 28px;
  line-height: 1;
  color: #000;
  display: block;
  padding: 0px 9px;
  margin-left: auto;
  max-width: 50px;
  text-align: center;
  transform: translateX(33px);
}

.section-hubspot-widget .hbspt-form {
  background-color: #1A1C2A;
}
@media (max-width: 991.98px) {
  .section-hubspot-widget .hbspt-form {
    padding: 48px 24px;
  }
}
@media (min-width: 992px) {
  .section-hubspot-widget .hbspt-form {
    padding: 54px 48px;
  }
}
@media (max-width: 1023.98px) {
  .section-hubspot-widget.demo-a-book {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
@media (min-width: 1024px) {
  .section-hubspot-widget.demo-a-book {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.block-book-a-demo {
  position: relative;
}
@media (max-width: 991.98px) {
  .block-book-a-demo {
    padding: 40px 0 60px;
  }
}
@media (min-width: 992px) {
  .block-book-a-demo {
    padding: 80px 0 230px;
  }
}
@media (max-width: 991.98px) {
  .block-book-a-demo__heading {
    margin: 0 auto 48px;
  }
}
@media (min-width: 992px) {
  .block-book-a-demo__heading {
    margin: 0 auto 64px;
  }
  .block-book-a-demo__heading p {
    font-size: 18px;
    line-height: 1.35em;
  }
}
.block-book-a-demo__code {
  margin: 0 auto;
}
.block-book-a-demo__bg {
  position: absolute;
  width: 100%;
  max-width: 837px;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.block-book-a-demo .entry-decor {
  position: absolute;
  width: 100%;
  height: 65%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 21, 96, 0.3) 0%, rgba(15, 16, 28, 0) 100%);
  z-index: -2;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .block-webinar .row {
    row-gap: 36px;
  }
}
@media (min-width: 992px) {
  .block-webinar .row.reverse {
    flex-direction: row-reverse;
  }
  .block-webinar .row.top {
    align-items: flex-start;
  }
  .block-webinar .row.center {
    align-items: center;
  }
  .block-webinar .row.bottom {
    align-items: flex-end;
  }
}
.block-webinar-hero {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .block-webinar-hero {
    padding: 56px 0 96px;
  }
}
@media (min-width: 992px) {
  .block-webinar-hero {
    padding: 56px 0 96px;
  }
}
.block-webinar-hero .entry-decor {
  width: 100%;
  height: 385px;
  position: absolute;
  left: 50%;
  bottom: -305px;
  transform: translate3d(-50%, 0, 0);
  border-radius: 50%;
  background: linear-gradient(180deg, #FF1560 0%, #FF5D60 100%);
  filter: blur(100px);
  -webkit-filter: blur(100px);
  -moz-filter: blur(100px);
  -o-filter: blur(100px);
  z-index: -1;
  animation: 1.77s ease-out forwards heroDecor;
}
.block-webinar-hero__pretitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  background: linear-gradient(180deg, rgb(255, 93, 96) 0%, rgb(255, 21, 96) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.block-webinar-hero__title {
  max-width: 757px;
}
@media (max-width: 991.98px) {
  .block-webinar-hero__title br {
    display: none;
  }
}
@media (min-width: 992px) {
  .block-webinar-hero__title {
    font-size: 55px;
    line-height: 1.3em;
    letter-spacing: 0;
  }
}
.block-webinar-hero__subtitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}
.block-webinar-hero__speakers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .block-webinar-hero__speakers {
    max-width: 400px;
    margin-left: auto;
  }
}
.block-webinar-hero__speakers-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.block-webinar-hero__speakers-figure {
  margin: 0;
  flex: 0 0 100px;
}
.block-webinar-hero__speakers-photo {
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.block-webinar-hero__speakers-flex {
  display: flex;
  flex-direction: column;
}
.block-webinar-hero__speakers-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
.block-webinar-hero__speakers-position {
  font-size: 14px;
  line-height: 20px;
  color: #B2B3BF;
}
.block-webinar-logos {
  background-color: #1A1C2A;
  margin-top: -40px;
}
@media (max-width: 991.98px) {
  .block-webinar-logos {
    padding: 56px 0 0;
    border-radius: 30px 30px 0 0;
  }
}
@media (min-width: 992px) {
  .block-webinar-logos {
    padding: 56px 0 0;
    border-radius: 45px 45px 0 0;
  }
}
.block-webinar-logos__gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 48px;
}
.block-webinar-logos__gallery-figure {
  flex: 0 0 200px;
  margin: 0;
}
.block-webinar-logos__gallery-image {
  max-height: 100px;
  object-fit: contain;
}
.block-webinar-content {
  background-color: #1A1C2A;
}
@media (max-width: 991.98px) {
  .block-webinar-content {
    padding: 56px 0;
  }
}
@media (min-width: 992px) {
  .block-webinar-content {
    padding: 56px 0 104px;
  }
}
@media (min-width: 992px) {
  .block-webinar-content__row {
    margin: 0 -55px;
  }
  .block-webinar-content__row > div {
    padding: 0 55px;
  }
}
.block-webinar-content__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.block-webinar-content__heading-pretitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, rgb(255, 93, 96) 0%, rgb(255, 21, 96) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.block-webinar-content__heading-title {
  font-weight: 300;
  margin: 0;
}
.block-webinar-content__heading-title b {
  font-weight: 700;
}
@media (min-width: 992px) {
  .block-webinar-content__heading-title {
    font-size: 42px;
    line-height: 53px;
  }
}
.block-webinar-content__heading-subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-top: 24px;
}
.block-webinar-content__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .block-webinar-content__text {
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .block-webinar-content__text {
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .block-webinar-content__text p {
    font-size: 18px;
    line-height: 1.6em;
  }
}
@media (max-width: 991.98px) {
  .block-webinar-content__text strong {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.03em;
  }
}
@media (min-width: 992px) {
  .block-webinar-content__text strong {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.03em;
  }
}
.block-webinar-content__text p,
.block-webinar-content__text ul,
.block-webinar-content__text ol {
  margin: 0;
}
.block-webinar-content__text ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.block-webinar-content__text ul li {
  padding-left: 48px;
  position: relative;
}
@media (max-width: 991.98px) {
  .block-webinar-content__text ul li {
    font-size: 18px;
    line-height: 1.5em;
  }
}
@media (min-width: 992px) {
  .block-webinar-content__text ul li {
    font-size: 20px;
    line-height: 1.6em;
  }
}
.block-webinar-content__text ul li::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="33" fill="none"><circle cx="16" cy="16.5" r="16" fill="url(%23a)"/><path fill="%23fff" fill-rule="evenodd" d="M22.965 11.134a.8.8 0 0 1 0 1.132l-8.8 8.8a.8.8 0 0 1-1.13 0l-4-4a.8.8 0 0 1 1.13-1.132L13.6 19.37l8.234-8.235a.8.8 0 0 1 1.131 0Z" clip-rule="evenodd"/></svg>');
  width: 32px;
  height: 32px;
  background: linear-gradient(180deg, rgb(255, 93, 96) 0%, rgb(255, 21, 96) 100%);
  border-radius: 50%;
}
.block-webinar-content__speakers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.block-webinar-content__speakers-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, rgb(255, 93, 96) 0%, rgb(255, 21, 96) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.block-webinar-content__speakers-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.block-webinar-content__speakers-figure {
  margin: 0;
  flex: 0 0 80px;
}
.block-webinar-content__speakers-photo {
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.block-webinar-content__speakers-flex {
  display: flex;
  flex-direction: column;
}
.block-webinar-content__speakers-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}
.block-webinar-content__speakers-position {
  font-size: 14px;
  line-height: 20px;
  color: #B2B3BF;
}
.block-webinar-content__code {
  padding: 40px 40px 10px;
  border-radius: 45px;
  background-color: #0F101C;
}

.block-hero-background {
  position: relative;
}
@media (max-width: 991.98px) {
  .block-hero-background {
    padding: 48px 0 56px;
  }
}
@media (min-width: 992px) {
  .block-hero-background {
    padding: 128px 0 413px;
  }
}
.block-hero-background::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(15, 16, 28, 0) 17%, rgb(15, 16, 28) 78%, rgb(15, 16, 28) 100%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .block-hero-background .row {
    row-gap: 40px;
  }
}
@media (min-width: 992px) {
  .block-hero-background .row {
    margin: 0 -16px;
  }
  .block-hero-background .row > div {
    padding: 0 16px;
  }
}
.block-hero-background__title {
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .block-hero-background__title {
    font-size: 42px;
    line-height: 1.2em;
  }
}
@media (min-width: 992px) {
  .block-hero-background__title {
    max-width: 540px;
    font-size: 80px;
    line-height: 1.3em;
  }
}
.block-hero-background__subtitle {
  display: block;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .block-hero-background__subtitle {
    font-size: 24px;
    line-height: 1.2em;
    margin-top: 16px;
  }
}
@media (min-width: 992px) {
  .block-hero-background__subtitle {
    font-size: 42px;
    line-height: 1.3em;
    margin-top: 24px;
  }
}
.block-hero-background__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 575.98px) {
  .block-hero-background__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 991.98px) {
  .block-hero-background__text h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .block-hero-background__text h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.3em;
  }
}
@media (min-width: 992px) {
  .block-hero-background__text p {
    font-size: 20px;
  }
}
.block-hero-background__text p strong {
  display: block;
  font-weight: 500;
  margin-bottom: 32px;
}
@media (max-width: 575.98px) {
  .block-hero-background__text img {
    max-width: 290px;
  }
}
.block-hero-background__bg {
  position: absolute;
  z-index: -2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: center bottom;
}

.block-our-booth {
  position: relative;
}
@media (max-width: 991.98px) {
  .block-our-booth {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .block-our-booth {
    padding: 80px 0 144px;
  }
}
@media (max-width: 575.98px) {
  .block-our-booth .row {
    flex-direction: column-reverse;
    row-gap: 36px;
  }
}
@media (min-width: 576px) {
  .block-our-booth .row {
    align-items: center;
  }
}
.block-our-booth__title {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .block-our-booth__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.3em;
  }
}
.block-our-booth__subtitle {
  display: block;
  font-family: "Bai Jamjuree", sans-serif;
  color: #FF1560;
}
@media (max-width: 991.98px) {
  .block-our-booth__subtitle {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3em;
    margin-top: 20px;
  }
}
@media (max-width: 575.98px) {
  .block-our-booth__subtitle {
    max-width: 265px;
  }
}
@media (min-width: 992px) {
  .block-our-booth__subtitle {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3em;
    max-width: 420px;
    margin-top: 12px;
  }
}
.block-our-booth__info {
  display: flex;
  border: 2px solid #898EA3;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .block-our-booth__info {
    margin-top: 56px;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .block-our-booth__info {
    margin-top: 128px;
  }
}
.block-our-booth__info-pretitle {
  display: block;
  font-weight: 500;
  color: #FF1560;
}
@media (min-width: 992px) {
  .block-our-booth__info-pretitle {
    font-size: 32px;
  }
}
.block-our-booth__info-title {
  margin: 0;
  line-height: 1.3em;
}
@media (min-width: 992px) {
  .block-our-booth__info-title {
    max-width: 410px;
  }
}
.block-our-booth__info-text {
  font-family: "Bai Jamjuree", sans-serif;
}
@media (min-width: 992px) {
  .block-our-booth__info-text p {
    font-size: 20px;
  }
}
.block-our-booth__info-text strong {
  display: block;
  font-weight: 500;
  line-height: 1.3em;
}
.block-our-booth__info-text strong a {
  text-decoration: underline;
}
@media (max-width: 1199.98px) {
  .block-our-booth__info-text strong {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 991.98px) {
  .block-our-booth__info-text strong {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .block-our-booth__info-text strong {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.block-our-booth__info-text a {
  color: #fff;
}
.block-our-booth__info-text a:hover {
  color: #FF1560;
}
.block-our-booth__info-small {
  display: block;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 300;
  font-size: 14px;
  margin-top: 16px;
}
.block-our-booth__info-wrap {
  position: relative;
  z-index: 1;
  background: linear-gradient(320deg, rgba(15, 16, 28, 0.55) 24%, rgba(122, 122, 123, 0.55) 100%);
}
@media (max-width: 991.98px) {
  .block-our-booth__info-wrap {
    flex-basis: 100%;
  }
}
@media (min-width: 992px) {
  .block-our-booth__info-wrap {
    flex-basis: 50%;
  }
}
@media (max-width: 991.98px) {
  .block-our-booth__info-fadeout {
    padding: 40px 24px;
  }
}
@media (min-width: 992px) {
  .block-our-booth__info-fadeout {
    padding: 57px 76px 57px 66px;
  }
}
.block-our-booth__info-fadeout_hide {
  display: none;
}
.block-our-booth__info-fadein {
  display: none;
}
@media (max-width: 991.98px) {
  .block-our-booth__info-fadein {
    padding: 40px 24px 24px;
  }
}
@media (min-width: 992px) {
  .block-our-booth__info-fadein {
    padding: 57px 76px 57px 66px;
  }
}
.block-our-booth__info-fadein_visible {
  display: block;
}
.block-our-booth__info-figure {
  margin: 0;
  height: 100%;
}
.block-our-booth__info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .block-our-booth__button {
    width: 100%;
    margin-top: 4px;
  }
}
@media (min-width: 576px) {
  .block-our-booth__button {
    margin-top: 16px;
  }
}
.block-our-booth__bg {
  position: absolute;
  width: 53%;
  max-width: 775px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .block-our-booth__bg {
    top: -36px;
    right: -15px;
  }
}
@media (min-width: 576px) {
  .block-our-booth__bg {
    top: 40px;
    right: 0;
  }
}
.block-our-booth .entry-decor {
  position: absolute;
  width: 100%;
  height: 45%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 21, 96, 0.3) 0%, rgba(15, 16, 28, 0) 100%);
  z-index: -2;
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .block-our-booth__info-title_custom .block-our-booth__info-title {
    font-size: 32px;
  }
}

.block-our-booth-2 {
  position: relative;
}
@media (max-width: 991.98px) {
  .block-our-booth-2 {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2 {
    padding: 80px 0 144px;
  }
}
@media (max-width: 575.98px) {
  .block-our-booth-2 .row {
    flex-direction: column-reverse;
    row-gap: 36px;
  }
}
@media (min-width: 576px) {
  .block-our-booth-2 .row {
    align-items: center;
  }
}
.block-our-booth-2__title {
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .block-our-booth-2__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.3em;
  }
}
.block-our-booth-2__subtitle {
  display: block;
  font-family: "Bai Jamjuree", sans-serif;
  color: #FF1560;
}
@media (max-width: 991.98px) {
  .block-our-booth-2__subtitle {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3em;
    margin-top: 20px;
  }
}
@media (max-width: 575.98px) {
  .block-our-booth-2__subtitle {
    max-width: 265px;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__subtitle {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3em;
    max-width: 420px;
    margin-top: 12px;
  }
}
.block-our-booth-2__info {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info {
    margin: 36px auto 0;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info {
    margin: 48px auto 0;
  }
  .block-our-booth-2__info.reverse {
    flex-direction: row-reverse;
  }
}
.block-our-booth-2__info-bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info-bg {
    object-fit: contain;
    object-position: top center;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info-bg {
    object-fit: cover;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info.reverse .block-our-booth-2__info-bg {
    object-position: center;
  }
  .block-our-booth-2__info.reverse::before {
    background: linear-gradient(88deg, rgb(15, 9, 28) 13%, rgb(41, 53, 105) 37%, rgba(162, 30, 93, 0.5) 100%);
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info.no-reverse .block-our-booth-2__info-bg {
    object-position: center;
  }
  .block-our-booth-2__info.no-reverse::before {
    background: linear-gradient(280deg, rgb(15, 9, 28) 13%, rgb(41, 53, 105) 37%, rgba(162, 30, 93, 0.5) 100%);
  }
}
.block-our-booth-2__info::after {
  position: absolute;
  content: "";
  border: 1px solid #9B1045;
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info::after {
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info::after {
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
}
.block-our-booth-2__info::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info::before {
    background: linear-gradient(0deg, rgb(15, 9, 28) 10%, rgb(41, 53, 105) 40%, rgba(162, 30, 93, 0.5) 100%);
  }
}
.block-our-booth-2__info-pretitle {
  display: block;
  font-weight: 500;
  color: #FF1560;
}
@media (min-width: 992px) {
  .block-our-booth-2__info-pretitle {
    font-size: 30px;
  }
}
.block-our-booth-2__info-title {
  margin: 0;
  line-height: 1.3em;
}
@media (min-width: 992px) {
  .block-our-booth-2__info-title {
    max-width: 410px;
    font-size: 40px;
    line-height: 46px;
  }
}
.block-our-booth-2__info-text {
  font-family: "Bai Jamjuree", sans-serif;
}
@media (min-width: 992px) {
  .block-our-booth-2__info-text p {
    font-size: 18px;
  }
}
.block-our-booth-2__info-text strong {
  display: block;
  font-weight: 500;
  line-height: 1.3em;
}
.block-our-booth-2__info-text strong a {
  text-decoration: underline;
}
@media (max-width: 1199.98px) {
  .block-our-booth-2__info-text strong {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info-text strong {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .block-our-booth-2__info-text strong {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.block-our-booth-2__info-text a {
  color: #fff;
}
.block-our-booth-2__info-text a:hover {
  color: #FF1560;
}
.block-our-booth-2__info-small {
  display: block;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 300;
  font-size: 14px;
  margin-top: 16px;
}
.block-our-booth-2__info-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info-wrap {
    flex-basis: 100%;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info-wrap {
    flex-basis: 50%;
  }
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info-fadeout {
    padding: 40px 24px;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info-fadeout {
    padding: 50px 76px 50px 0;
  }
}
.block-our-booth-2__info-fadeout_hide {
  display: none;
}
.block-our-booth-2__info-fadein {
  display: none;
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info-fadein {
    padding: 40px 24px 24px;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info-fadein {
    padding: 57px 76px 57px 66px;
    height: 100%;
  }
}
.block-our-booth-2__info-fadein_visible {
  display: block;
}
@media (min-width: 992px) {
  .block-our-booth-2__info-fadein .hbspt-form {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
.block-our-booth-2__info-figure {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  .block-our-booth-2__info-figure {
    padding: 0 20px 56px;
  }
}
@media (min-width: 992px) {
  .block-our-booth-2__info-figure {
    padding: 56px;
  }
}
.block-our-booth-2__info-img {
  width: 100%;
}
@media (max-width: 575.98px) {
  .block-our-booth-2__button {
    width: 100%;
    margin-top: 4px;
  }
}
@media (min-width: 576px) {
  .block-our-booth-2__button {
    margin-top: 16px;
  }
}
.block-our-booth-2__bg {
  position: absolute;
  width: 53%;
  max-width: 775px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .block-our-booth-2__bg {
    top: -36px;
    right: -15px;
  }
}
@media (min-width: 576px) {
  .block-our-booth-2__bg {
    top: 40px;
    right: 0;
  }
}
.block-our-booth-2 .entry-decor {
  position: absolute;
  width: 100%;
  height: 45%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 21, 96, 0.3) 0%, rgba(15, 16, 28, 0) 100%);
  z-index: -2;
  pointer-events: none;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.email a:before {
  content: "\e915";
}

.whatsapp a:before, .whatsapp button:before {
  content: "\e911";
}

.linkedin a:before {
  content: "\e900";
}

.twitter a:before {
  content: "\e918";
}

.facebook a:before {
  content: "\e902";
}

.youtube a:before {
  content: "\e906";
}

.instagram a:before {
  content: "\e912";
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.cover-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.l0 {
  left: 0;
}

.justify-center {
  display: flex;
  display: -ms-flex;
  justify-content: center;
  -ms-flex-align: center;
}

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

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.t0 {
  top: 0;
}

.b0 {
  bottom: 0;
}

.r0 {
  right: 0;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.fixed {
  position: fixed;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.clearer {
  clear: both;
}

.flex {
  display: -ms-flexbox;
  display: flex;
}

.flex-center-all {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.flex-v-align {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
}

.flex-h-align {
  display: flex;
  justify-content: center;
}

.flex-v-bottom {
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  -ms-flex-align: end;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-column {
  display: flex;
  flex-direction: column;
  display: -ms-flexbox;
  -ms-flex-direction: column;
}

.flex-wrap {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.space-between {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -ms-flex-pack: justify;
}

.space-around {
  justify-content: space-around;
}

.inline-block {
  display: inline-block;
}

.ver-align-mid {
  vertical-align: middle;
}

.absolute {
  position: absolute;
}

.flex-justify-center {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-flex-pack: center;
}

.simpleHover {
  opacity: 1;
  transition: 0.2s opacity;
}

.simpleHover:hover {
  opacity: 0.7;
}

.relative {
  position: relative;
}

.flex-end {
  display: flex;
  display: -ms-flexbox;
  align-items: flex-end;
  -ms-flex-align: flex-end;
}

.static {
  position: static;
}

.absolute-full-size {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.pre-wrap {
  white-space: pre-wrap;
}

.h100 {
  height: 100%;
}

.w100 {
  width: 100%;
}

.height-auto {
  height: auto;
}

.width-auto {
  width: auto;
}

.flex-grow-1 {
  flex-grow: 1;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.inline-flex {
  display: inline-flex;
  display: -ms-inline-flexbox;
}

.inline {
  display: inline;
}

ul {
  padding: 0;
  list-style: none;
}

.z-index-1 {
  z-index: 1;
}

.fz8 {
  font-size: 0.8rem;
}

.fz9 {
  font-size: 0.9rem;
}

.fz10 {
  font-size: 1rem;
}

.fz11 {
  font-size: 1.1rem;
}

.fz12 {
  font-size: 1.2rem;
}

.fz13 {
  font-size: 1.3rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz15 {
  font-size: 1.5rem;
}

.fz16 {
  font-size: 1.6rem;
}

.fz17 {
  font-size: 1.7rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz19 {
  font-size: 1.9rem;
}

.fz20 {
  font-size: 2rem;
}

.fz21 {
  font-size: 2.1rem;
}

.fz22 {
  font-size: 2.2rem;
}

.fz23 {
  font-size: 2.3rem;
}

.fz24 {
  font-size: 2.4rem;
}

.fz25 {
  font-size: 2.5rem;
}

.fz26 {
  font-size: 2.6rem;
}

.fz27 {
  font-size: 2.7rem;
}

.fz28 {
  font-size: 2.8rem;
}

.fz29 {
  font-size: 2.9rem;
}

.fz30 {
  font-size: 3rem;
}

.fz32 {
  font-size: 3.2rem;
}

.fz37 {
  font-size: 3.7rem;
}

.fz38 {
  font-size: 3.8rem;
}

.fz54 {
  font-size: 5.4rem;
}

.fz55 {
  font-size: 5.5rem;
}

.fz65 {
  font-size: 6.5rem;
}

.fz70 {
  font-size: 7rem;
}

.block {
  display: block;
}

.uppercase {
  text-transform: uppercase;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.pre-line {
  white-space: pre-line;
}

:root {
  --grey-bg: #F3F3F3;
  --Radient-blue: #111933;
  --BG-grey-solid: #EAEEFB;
}

body {
  background: white;
  overflow: visible !important;
}
body #wrapper {
  overflow: visible !important;
}

.white-bg {
  background: #FFF !important;
}

.rd-trusted-by-section.white-bg .rd-trusted-by:before {
  background: linear-gradient(270deg, rgba(8, 6, 14, 0) 0%, #ffffff 75%) !important;
}
.rd-trusted-by-section.white-bg .rd-trusted-by:after {
  background: linear-gradient(270deg, #ffffff 25%, rgba(8, 6, 14, 0) 100%);
}

.scrolling-cards {
  height: 100vh;
  min-height: 75rem;
  position: relative;
}
.scrolling-cards .basic-grid {
  position: relative;
  z-index: 99;
}
.scrolling-cards:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30rem;
  z-index: 2;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1306' height='818' viewBox='0 0 1306 818' fill='none'><g filter='url(%23filter0_f_1713_2084)'><path d='M1199.92 787.09L-206.452 383.634L-72.2824 30.2475L1275.87 587.024L1199.92 787.09Z' fill='url(%23paint0_linear_1713_2084)' fill-opacity='0.6'/></g><defs><filter id='filter0_f_1713_2084' x='-236.452' y='0.248047' width='1542.33' height='816.842' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'><feFlood flood-opacity='0' result='BackgroundImageFix'/><feBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/><feGaussianBlur stdDeviation='15' result='effect1_foregroundBlur_1713_2084'/></filter><linearGradient id='paint0_linear_1713_2084' x1='359.926' y1='542.979' x2='159.442' y2='7.51081' gradientUnits='userSpaceOnUse'><stop offset='0.105' stop-color='white'/><stop offset='0.587975' stop-color='%23FFE8C3'/><stop offset='1' stop-color='%23FFB5CE'/></linearGradient></defs></svg>") no-repeat center/cover;
  filter: blur(15px);
  rotate: 20deg;
  transform: skew(20deg);
  transform-origin: left center;
}
.scrolling-cards .rd-container {
  height: 100vh;
}
.scrolling-cards .splide__track {
  overflow: visible;
}
@media screen and (max-width: 1023px) {
  .scrolling-cards {
    height: auto;
  }
  .scrolling-cards .stack-on-790 {
    display: block !important;
  }
  .scrolling-cards .cards-splide {
    padding: 0 3rem;
    box-sizing: border-box;
  }
  .scrolling-cards .splide__list {
    flex-direction: row !important;
  }
  .scrolling-cards .splide__track {
    display: initial;
  }
}
@media screen and (max-width: 1023px) {
  .scrolling-cards .card-mobile-block {
    display: block;
  }
}
.scrolling-cards .content {
  flex: 0 0 35%;
}
.scrolling-cards .cards {
  flex-grow: 1;
  height: 100vh;
}
@media screen and (max-width: 1023px) {
  .scrolling-cards .cards {
    height: auto;
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: flex-start !important;
  }
}
.scrolling-cards .cards h2 {
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 5.2rem */
}
.scrolling-cards .card {
  background: white;
  width: 50vw;
  max-width: 65rem;
  height: auto;
  aspect-ratio: 1/1;
  padding: 7rem 14rem 14rem 14rem;
  box-sizing: border-box;
  border-radius: 2rem;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .scrolling-cards .card {
    position: static !important;
    margin-top: 0 !important;
    transform: none;
    padding: 7rem;
    width: auto;
  }
  .scrolling-cards .card > div {
    width: 25rem;
  }
  .scrolling-cards .card h2 {
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 2.6rem */
  }
  .scrolling-cards .card p {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 1.56rem */
  }
}
.scrolling-cards .card figure {
  display: flex;
  justify-content: center;
}
.scrolling-cards .card p {
  margin-bottom: 0;
}
.scrolling-cards .card-1 {
  background: linear-gradient(180deg, #FFF 0%, #EAEEFB 100%);
  z-index: 3;
  margin-top: -4rem;
}
.scrolling-cards .card-2 {
  z-index: 2;
  background: linear-gradient(180deg, #FFF 0%, #F7F9FF 100%);
  position: relative;
}
.scrolling-cards .card-3 {
  background: linear-gradient(180deg, #FFF 0%, #F2F4FD 100%);
  z-index: 1;
  margin-top: 4rem;
}
.scrolling-cards .wp-block-group.content {
  flex: 0 0 40%; /* give it a fixed width */
}
.scrolling-cards .wp-block-group.cards {
  flex: 1; /* takes the remaining space */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

html {
  font-size: 10px;
}

.w4-white-bg {
  background: #FFF !important;
}

.w4-grey-bg {
  background: var(--BG-grey-solid);
}

.w4-blue-grey-bg {
  background: var(--BG-grey-solid) !important;
}

.w4-no-top-padding {
  padding-top: 0 !important;
}

.w4-no-bottom-padding {
  padding-bottom: 0 !important;
}

.w4-no-grad-bg {
  background: none !important;
}

.w4-plain-icons .awards-list li {
  background: none !important;
}

.rd-resources-section h3 a {
  color: #111933;
}

.post-article ul {
  list-style: circle !important;
  padding-left: 2rem;
}
.post-article ul li {
  margin-bottom: 1rem;
}

.soc-page-hero {
  padding-top: 5rem !important;
}

.page-id-7149 .info-popup-construction p {
  font-weight: 700 !important;
}

.w4-bottom-banner {
  background: var(--Radient-blue);
}
.w4-bottom-banner .wp-block-columns {
  margin-bottom: 0 !important;
}
.w4-bottom-banner .basic-grid {
  position: relative;
  z-index: 1;
  height: 65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.w4-bottom-banner .basic-grid h2 {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.2px;
}
.w4-bottom-banner .basic-grid figure {
  margin: 0 !important;
}
.w4-bottom-banner .basic-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.w4-bottom-banner .basic-grid h2 {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.2px;
  position: relative;
}
.w4-bottom-banner .basic-grid a {
  position: relative;
}

.component {
  padding: 13rem 0;
}

.basic-grid {
  width: 100%;
  max-width: 119rem;
  margin: auto;
  padding: 0;
  padding: 0 5rem;
  box-sizing: border-box;
}

.big-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 6.1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 7.4228rem */
  letter-spacing: -0.1237rem;
  line-height: 1.1;
  color: #111933;
}

.medium-title {
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 4.32rem */
  line-height: 1.1;
  color: #111933;
}

.qoute {
  color: #FFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.6rem;
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
}

.normal-paragraph {
  color: #111933;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
}

.basic-button {
  border-radius: 1rem;
  background: linear-gradient(287deg, #FF719E 34.69%, #FD3A76 75.36%);
  color: #FFF;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  position: relative;
  transition: all 0.3s !important;
  height: 4.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5rem 0 2rem;
}
.basic-button:hover {
  color: #000;
  background: linear-gradient(90deg, #F9E6AE 0%, #F9C0D2 100%);
}
.basic-button:hover:before {
  background: #fff;
}
.basic-button:hover:after {
  background: #000;
}
.basic-button:before {
  content: "";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  z-index: 10;
  background: #000;
  --icon: url("data:image/svg+xml;charset=utf8,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.8916 1.09143L9.84863 6.04854L4.8916 11.0056' stroke='black' stroke-width='2'/%3E%3Cpath d='M9.78735 6.10974H0.240234' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  -webkit-mask: var(--icon) center/contain no-repeat;
  mask: var(--icon) center/contain no-repeat;
  transition: all 0.3s linear;
  transition: all 0.3s !important;
}
.basic-button:after {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  right: 1rem;
  transition: all 0.3s !important;
}

.splide__sr {
  display: none !important;
}

.testimonials-block {
  margin: 16rem;
}
.testimonials-block .splide__pagination {
  position: static;
  justify-content: center;
  width: 100%;
}
.testimonials-block .splide__pagination button {
  background: #EAEEFB;
  opacity: 1 !important;
  transform: none !important;
}
.testimonials-block .splide__pagination button.is-active {
  background: #62687A;
}
.testimonials-block h2 {
  text-align: center;
  margin: 0 0 6.4rem;
}
.testimonials-block .test-splide {
  max-width: 87.1rem;
  width: 100%;
  margin: auto;
}
.testimonials-block .testemonial-conetnt {
  background: #EAEEFB;
  border-radius: 1rem;
  padding: 3rem;
  box-sizing: border-box;
  position: relative;
}
.testimonials-block .testemonial-conetnt p {
  margin: 2rem 0;
}
.testimonials-block .testemonial-conetnt .test-bottom {
  width: 100%;
  display: grid;
  grid-template-columns: 7.1rem 1fr 1fr 1fr;
}
.testimonials-block .testemonial-conetnt .test-bottom .gd {
  grid-column: 4/5;
}
.testimonials-block .testemonial-conetnt .test-bottom p {
  grid-column: 2/3;
  grid-row: 1/2;
}
.testimonials-block .testemonial-conetnt .qt-img {
  border-radius: 50%;
  width: 7.1rem;
  height: 7.1rem;
  overflow: hidden;
  display: block;
  margin-right: 1.5rem;
}
.testimonials-block .testemonial-conetnt .the-quote {
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 500;
  line-height: 140%; /* 3.36rem */
  margin: 0 0 2.4rem 0;
}
.testimonials-block .testemonial-conetnt .quoted {
  font-size: 2rem;
  font-style: normal;
  line-height: 150%; /* 3rem */
  margin: 0;
}
.testimonials-block .testemonial-conetnt:before {
  content: "";
  width: 4.6rem;
  height: 3.6rem;
  background: url("../images/qt.svg") no-repeat center/contain;
}

.become-a-partner {
  margin-bottom: 12rem;
}

@media only screen and (min-width: 861px) {
  .w4-table-component .w4-no-bottom-padding {
    align-items: center;
  }
  .w4-table-component .rd-solutions-slider-wrapper {
    margin-left: auto;
    align-self: unset !important;
    justify-self: unset !important;
    margin-right: unset !important;
    margin-bottom: unset !important;
  }
  .w4-table-component .rd-solutions-white-block {
    z-index: 90;
    align-self: flex-end;
    justify-self: flex-end;
    margin-top: 0 !important;
    margin-right: 292px !important;
    margin-left: unset !important;
    padding-right: min(max(22px, (100vw - 800px) / 3.4483 + 22px), 138px);
    padding-left: min(max(22px, (100vw - 800px) / 8.3333 + 22px), 70px);
  }
}
.new-life-at-radiant {
  padding-top: 15rem;
  background: url("../images/new-life-bg.svg") no-repeat top center;
  background-size: 100% auto;
}
.new-life-at-radiant .head {
  max-width: 61rem;
  margin: auto;
  text-align: center;
  margin-bottom: 13rem;
}
.new-life-at-radiant .head .wp-block-buttons {
  display: flex;
  justify-content: center;
}
.new-life-at-radiant .head h2 {
  margin: 0;
}
.new-life-at-radiant .head p {
  margin: 3.2rem;
}
.new-life-at-radiant .life-item {
  justify-content: space-between;
  gap: 7.2rem;
  margin-bottom: 12rem;
}
.new-life-at-radiant .life-item .text-side {
  flex-grow: 1;
}
.new-life-at-radiant .life-item .image-side {
  width: 50%;
  flex: 0 0 50%;
  padding: 5.9rem 7rem;
  background: #EAEEFB;
  border-radius: 1.6rem;
}
.new-life-at-radiant .life-item .image-side img {
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  object-fit: cover;
}

.mmp h2 {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  box-sizing: border-box;
  max-width: 90rem;
  margin: auto;
}
.mmp .table-of-comparing-features {
  max-width: 1200px;
}
.mmp .table-of-comparing-features h3 {
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 2.1rem */
}
.mmp .table-of-comparing-features > div > * {
  padding: 15px !important;
}

.quote-section {
  margin-bottom: 13rem;
}
.quote-section h2 {
  text-align: center;
}
.quote-section .basic-grid.section-content {
  position: relative;
  height: 60.4rem;
  background: #EAEEFB;
  border-radius: 2.4rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}
.quote-section .basic-grid.section-content:before {
  position: absolute;
  opacity: 0.8;
  background: linear-gradient(302deg, rgba(255, 226, 145, 0.4) 20.21%, rgba(255, 144, 178, 0.4) 80.92%);
  filter: blur(91.6999969482px);
  content: "";
  right: 0;
  top: 0;
  width: 40rem;
  height: 40rem;
}
.quote-section .basic-grid.section-content div {
  height: 100%;
}
.quote-section .basic-grid.section-content .image-side {
  flex: 0 0 54rem;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.quote-section .basic-grid.section-content .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-section .basic-grid.section-content .flex-v-align {
  justify-content: center;
}
.quote-section .basic-grid.section-content .quote {
  padding: 0 0 0 7rem;
  box-sizing: border-box;
  position: relative;
  flex-direction: column;
  justify-content: center;
}
.quote-section .basic-grid.section-content .quote .the-quote {
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 500;
  line-height: 140%; /* 3.36rem */
  margin: 0 0 2.4rem 0;
}
.quote-section .basic-grid.section-content .quote .quoted {
  font-size: 2rem;
  font-style: normal;
  line-height: 150%; /* 3rem */
  margin: 0;
}
.quote-section .basic-grid.section-content .quote:before {
  content: "";
  width: 4.6rem;
  height: 3.6rem;
  background: url("../images/qt.svg") no-repeat center/contain;
}

.partner-call-section p {
  white-space: pre-line;
}

@media only screen and (min-width: 791px) {
  .mmp .table-of-comparing-features::before {
    top: min(max(73px, (100vw - 800px) / 8.6957 + 73px), 112px);
  }
}
@media screen and (max-width: 1024px) {
  .basic-grid {
    padding: 0;
  }
  section.title-text-cta-image-hero {
    display: block !important;
  }
  section.title-text-cta-image-hero img {
    margin-top: 5rem;
  }
  section.rd-trusted-by-section, section.icon-bullets {
    display: block !important;
  }
  section.icon-bullets.component {
    background: linear-gradient(0deg, rgba(234, 238, 251, 0) 0%, #EAEEFB 72.5%);
    display: block !important;
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
    box-sizing: border-box;
  }
  section.icon-bullets.component .basic-grid {
    padding: 0;
  }
  section.icon-bullets.component .s-block li {
    margin-bottom: 2.4rem;
    padding: 4rem !important;
  }
  section.quote-section {
    display: block !important;
    padding: 16rem 2.4rem 0 !important;
    box-sizing: border-box;
  }
  section.quote-section .section-content {
    box-sizing: border-box;
    height: auto !important;
    max-width: 50rem;
    margin: auto;
  }
  section.quote-section .section-content:before {
    top: auto !important;
    bottom: 0;
  }
  section.quote-section .section-content .image-side {
    flex: auto !important;
  }
  section.quote-section .section-content .image-side figure {
    margin: 0 !important;
  }
  section.quote-section .section-content .quote {
    padding: 3rem 3rem 0 3rem !important;
    box-sizing: border-box;
  }
  section.quote-section .section-content p {
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
  }
  section.quote-section .is-layout-flex {
    flex-direction: column;
  }
  section.partner-call-section {
    background: #EAEEFB;
  }
  section.testimonials-block {
    display: block !important;
    margin: 18rem 0 0 0 !important;
    padding: 0 2.4rem;
    box-sizing: border-box;
  }
  section.testimonials-block .basic-grid {
    padding: 0;
  }
  section.testimonials-block .splide__track, section.testimonials-block .splide, section.testimonials-block .splide__list, section.testimonials-block .splide__slide {
    width: 100% !important;
    gap: 0 !important;
  }
  section.testimonials-block .test-bottom {
    grid-template-columns: 7.1rem 1fr !important;
    row-gap: 0;
  }
  section.testimonials-block .test-bottom p {
    margin: 0;
    font-size: 1.6rem;
  }
  section.testimonials-block .test-bottom .gd {
    grid-row: 2/3;
    grid-column: 2/3 !important;
  }
  section.testimonials-block .test-bottom .gd img {
    height: 2rem;
    width: auto;
  }
  section.become-a-partner {
    display: block !important;
    padding: 18rem 2.4rem 0 2.4rem;
    box-sizing: border-box;
  }
  section.w4-bottom-banner {
    display: block !important;
    width: 100vw;
    overflow: hidden;
  }
  .scrolling-cards {
    width: 100vw;
    overflow: hidden;
    padding: 0 2.4rem;
    box-sizing: border-box;
    display: block !important;
  }
  .scrolling-cards .rd-container {
    height: auto;
  }
  .scrolling-cards:before {
    content: "";
    position: absolute;
    left: 0;
    top: 54px;
    width: 210%;
    height: 34rem;
    z-index: 2;
    filter: blur(15px);
    rotate: 0deg;
    transform: skew(20deg);
    transform-origin: left center;
  }
  .scrolling-cards .basic-grid {
    padding: 0;
  }
  .scrolling-cards .splide__track, .scrolling-cards .splide, .scrolling-cards .splide__list, .scrolling-cards .splide__slide {
    width: 100% !important;
    gap: 0 !important;
  }
  .scrolling-cards .splide {
    max-width: 40rem;
    margin: auto;
    overflow: hidden;
  }
  .scrolling-cards .splide .splide__pagination {
    position: static;
    justify-content: center;
    width: 100%;
  }
  .scrolling-cards .splide .splide__pagination button {
    background: #EAEEFB;
    opacity: 1 !important;
    transform: none !important;
  }
  .scrolling-cards .splide .splide__pagination button.is-active {
    background: #62687A;
  }
  .scrolling-cards .content .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .scrolling-cards .splide__track {
    display: block !important;
  }
  .scrolling-cards .splide__pagination {
    position: static;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .scrolling-cards .cards-splide {
    margin-top: 5rem;
    gap: 0 !important;
    padding: 0;
  }
  .scrolling-cards .cards .card {
    padding: 0;
    aspect-ratio: auto;
  }
  .scrolling-cards .cards .card .wp-block-group__inner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 7rem;
    box-sizing: border-box;
    text-align: center;
  }
  .scrolling-cards .cards .card .wp-block-group__inner-container img {
    width: 11rem !important;
    height: auto !important;
  }
  .scrolling-cards .cards .card > div {
    width: 100%;
  }
  .mmp h3 {
    font-size: 2rem !important;
  }
  .mpad {
    padding-bottom: 5rem !important;
  }
  .mmp {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
    box-sizing: border-box;
  }
  .mmp h2 {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    box-sizing: border-box;
  }
  .big-title {
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 4.4rem */
    letter-spacing: -0.08rem;
  }
  .normal-paragraph {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 2.08rem */
  }
  .component {
    padding: 9rem 0;
  }
  .rd-section-how-outpaces .wp-block-buttons {
    display: flex !important;
  }
  .rd-section-how-outpaces .wp-block-buttons .wp-block-button__link {
    width: 20px;
  }
  .w4-table-component {
    padding-bottom: 7rem !important;
  }
  .w4-featured-components {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .w4-bottom-banner .basic-grid {
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding-top: 9rem;
    height: 75rem;
  }
  .w4-bottom-banner .basic-grid .is-layout-flex {
    justify-content: center;
  }
  .w4-bottom-banner .w4-bottom-image {
    width: 172vw;
    max-width: 80rem;
    height: auto;
    bottom: 0;
    top: auto;
  }
  .w4-bottom-banner .w4-bottom-image img {
    object-fit: unset !important;
    height: auto !important;
    width: 100%;
  }
  .new-life-at-radiant {
    padding-top: 10rem;
    background-size: 200%;
  }
  .new-life-at-radiant .head {
    margin-bottom: 2.4rem;
  }
  .new-life-at-radiant .text-side p {
    margin-bottom: 0;
  }
  .new-life-at-radiant .life-item {
    flex-direction: column;
    padding: 2.4rem 3.6rem;
    margin-bottom: 2.4rem;
    text-align: center;
  }
  .new-life-at-radiant .life-item:nth-child(even) {
    flex-direction: column-reverse;
  }
  .new-life-at-radiant .life-item .image-side {
    width: 100%;
    flex: 0 0 100%;
    padding: 2.4rem;
  }
}
.title-text-cta-image-hero {
  background: var(--grey-bg);
}
.title-text-cta-image-hero p {
  max-width: 45rem;
}
.title-text-cta-image-hero .basic-grid {
  gap: 6.4rem;
}
.title-text-cta-image-hero .basic-grid.right-to-left {
  flex-direction: row-reverse;
}
.title-text-cta-image-hero .text-content {
  flex: 0 0 50%;
}
.title-text-cta-image-hero .text-content h1 {
  color: black;
}
.title-text-cta-image-hero .image-content {
  flex: 0 0 45%;
}
@media screen and (max-width: 1024px) {
  .title-text-cta-image-hero {
    padding-bottom: 6rem;
  }
  .title-text-cta-image-hero.nmp {
    padding-top: 0;
    padding-bottom: 0;
  }
  .title-text-cta-image-hero.nmp .basic-grid {
    padding: 0 2rem;
  }
  .title-text-cta-image-hero.nmp .basic-grid .image-content {
    margin-top: 4.17rem;
  }
  .title-text-cta-image-hero.nmp .basic-grid .image-content img {
    transform: scale(1.4);
    transform-origin: 50% 0;
  }
  .title-text-cta-image-hero.nmp h2 {
    padding-top: 2.4rem;
    margin-top: 0 !important;
  }
  .title-text-cta-image-hero .basic-grid {
    padding: 0 5rem;
    box-sizing: border-box;
    display: block;
    text-align: center;
  }
  .title-text-cta-image-hero .basic-grid h1, .title-text-cta-image-hero .basic-grid h2 {
    margin: 2.4rem 0;
  }
  .title-text-cta-image-hero .basic-grid a {
    margin-top: 2.4rem;
  }
  .title-text-cta-image-hero .basic-grid p {
    margin: 0;
  }
}

.icon-bullets {
  box-sizing: border-box;
  background: linear-gradient(117deg, rgba(255, 255, 255, 0.6) 70.23%, rgba(255, 232, 195, 0.6) 84.87%, rgba(255, 181, 206, 0.6) 97.36%);
}
.icon-bullets .cta-wrapper {
  margin-top: 4rem;
}
.icon-bullets.grid-icons {
  background: linear-gradient(0deg, rgba(234, 238, 251, 0) 32.51%, #EAEEFB 100.29%);
}
.icon-bullets.grid-icons .awards-slider {
  max-width: 80rem !important;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .icon-bullets.grid-icons .awards-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
    gap: 2.4rem;
  }
}
.icon-bullets.grid-icons .awards-list li {
  background: white;
}
.icon-bullets .head {
  max-width: 80%;
  margin: auto;
}
.icon-bullets .head h2 {
  margin: 0 0 3rem 0;
  white-space: pre-line;
  text-align: center;
}
.icon-bullets .head p {
  margin: 1rem auto 5rem;
  text-align: center;
  max-width: 60rem;
}
.icon-bullets .splide {
  width: 100%;
}
.icon-bullets .splide__track {
  overflow: visible !important;
}
.icon-bullets .awards-list {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.4rem;
}
.icon-bullets .awards-list li {
  flex: 1 1 10%;
  padding: 2.4rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(234, 238, 251, 0) 0%, #EAEEFB 100%);
  border-radius: 2rem;
  padding: 4rem;
  box-sizing: border-box;
  text-align: center;
  transition: 0.3s all;
  color: black;
  text-decoration: none;
}
.icon-bullets .awards-list li:hover {
  scale: 1.02;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.icon-bullets .awards-list li img {
  width: 6rem;
  height: 6rem;
}
.icon-bullets .awards-list li h3 {
  flex-grow: 1;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.icon-bullets .awards-list li .read-more {
  text-decoration: underline;
}
.icon-bullets .basic-btn {
  margin-top: 4rem;
  border: none;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .icon-bullets.component {
    padding: 4rem 0 !important;
  }
  .icon-bullets .s-block .awards-list {
    display: block !important;
  }
  .icon-bullets .s-block .awards-list .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }
  .icon-bullets .s-block .awards-list .splide__slide:first-child {
    padding-top: 0;
  }
  .icon-bullets .head {
    max-width: unset;
  }
  .icon-bullets .head p {
    padding: 0 1.6rem;
    box-sizing: border-box;
  }
  .icon-bullets .big-title {
    padding: 0 1.6rem;
    box-sizing: border-box;
    margin-bottom: 4rem;
  }
  .icon-bullets .awards-list {
    justify-content: unset;
    flex-wrap: nowrap;
    gap: 0;
  }
  .icon-bullets .awards-list li {
    flex: 0 0 calc(25% - 2.2rem);
  }
  .icon-bullets .awards-list li div.inner {
    width: 70vw;
    max-width: 40rem;
  }
  .icon-bullets .awards-list li div.inner h3 {
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 3.84rem */
  }
  .icon-bullets .open-contact {
    margin-left: 1.6rem;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 2.4rem */
    padding: 0.8rem 2rem;
  }
  .icon-bullets .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2rem;
    position: static;
  }
  .icon-bullets .splide__pagination button {
    flex: 0 0 1.1rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #EAEEFB;
    padding: 0;
  }
  .icon-bullets .splide__pagination button.is-active {
    background: var(--Radient-blue);
    transform: none !important;
  }
}

.video-bullets h2 {
  text-align: center;
  margin-bottom: 12.4rem;
}
.video-bullets > li {
  background: var(--Radient-blue);
  padding: 6.4rem !important;
  box-sizing: border-box;
  border-radius: 1.6rem;
  display: flex;
  color: white;
  margin-bottom: 12.4rem;
  align-items: center !important;
}
.video-bullets > li:nth-child(odd) {
  flex-direction: row-reverse;
}
.video-bullets > li:last-child {
  margin-bottom: 0;
}
.video-bullets > li .video-slider-video-wrapper {
  flex: 0 0 64rem;
  height: auto;
  border-radius: 2.4rem;
  overflow: hidden;
}
.video-bullets > li .video-slider-item-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 38.2rem;
}
.video-bullets > li .video-slider-item-customer {
  margin-top: 2.4rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.4rem;
}
@media screen and (max-width: 1023px) {
  .video-bullets {
    padding: 0 3.6rem;
    box-sizing: border-box;
  }
  .video-bullets .basic-grid {
    padding: 0;
  }
  .video-bullets .big-title {
    margin: 4.2rem 0 2.4rem;
  }
  .video-bullets .video-bullets {
    padding: 0;
    display: flex;
  }
  .video-bullets .video-bullets .video-slider-item {
    padding: 2.6rem !important;
    flex-direction: column-reverse;
    align-self: flex-start;
    margin-bottom: 0;
  }
  .video-bullets .video-bullets .video-slider-item .video-slider-item-content, .video-bullets .video-bullets .video-slider-item .video-slider-item-customer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
  }
  .video-bullets .video-bullets .video-slider-item .video-slider-video-wrapper {
    flex: 1 1 auto;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 0 0 2.4rem 0;
  }
  .video-bullets .video-bullets .qoute {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 500;
    line-height: 150%;
  }
  .video-bullets .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2rem;
    position: static;
  }
  .video-bullets .splide__pagination button {
    flex: 0 0 1.1rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #EAEEFB;
    padding: 0;
  }
  .video-bullets .splide__pagination button.is-active {
    background: var(--Radient-blue);
    transform: none !important;
  }
}

.numbers-animation-bullets {
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(234, 238, 251, 0) 12.51%, #EAEEFB 100.29%);
}
.numbers-animation-bullets .head {
  max-width: 80%;
  margin: auto;
}
.numbers-animation-bullets .head h2 {
  margin: 0 0 3rem 0;
  white-space: pre-line;
  text-align: center;
}
.numbers-animation-bullets .head p {
  margin: 1rem 0 5rem;
  text-align: center;
}
.numbers-animation-bullets .splide {
  width: 100%;
}
.numbers-animation-bullets .awards-list {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 78rem;
  margin: auto;
}
.numbers-animation-bullets .awards-list li {
  flex: 0 0 49%;
  margin-bottom: 1%;
  border: 4px solid #FFF;
  box-sizing: border-box;
  background: var(--BG-grey-solid);
  border-radius: 4.1412rem;
  padding: 4rem;
  box-sizing: border-box;
  text-align: center;
  color: black;
  text-decoration: none;
}
.numbers-animation-bullets .awards-list li .suffix {
  padding-left: 0.7rem;
}
.numbers-animation-bullets .awards-list li p {
  flex-grow: 1;
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin: 0;
}
.numbers-animation-bullets .awards-list li .n-text {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 3.12rem */
  letter-spacing: -0.0816rem;
}
.numbers-animation-bullets .awards-list li .read-more {
  text-decoration: underline;
}
.numbers-animation-bullets .basic-btn {
  margin-top: 4rem;
  border: none;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .numbers-animation-bullets {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
    box-sizing: border-box;
  }
  .numbers-animation-bullets .awards-list {
    width: 100%;
    display: block !important;
  }
  .numbers-animation-bullets .awards-list li {
    width: 100%;
    border-radius: 3.0687rem;
    padding: 2rem 5rem;
    margin-bottom: 1rem;
  }
  .numbers-animation-bullets .awards-list li .n-text {
    font-size: 1.8rem;
  }
}

.single-video {
  background: var(--Radient-blue);
}
.single-video h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}
.single-video p {
  text-align: center;
  margin: 0;
  color: white;
}
.single-video .video-bullets-section-inner {
  padding: 9rem 0;
}
.single-video .video-bullets {
  margin-top: 8.4rem;
}
.single-video .video-slider-video-wrapper {
  flex: 0 0 64rem;
  height: auto;
  border-radius: 2.4rem;
  overflow: hidden;
}
.single-video .video-slider-item-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 38.2rem;
}
.single-video .video-slider-item {
  display: block !important;
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
}
.single-video .video-slider-item-customer {
  margin-top: 2.4rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.4rem;
}
@media screen and (max-width: 1032px) {
  .single-video {
    padding: 5rem 2rem;
  }
  .single-video p {
    margin: 2.4rem 0;
  }
  .single-video .video-bullets {
    margin-top: 2.4rem;
  }
  .single-video .video-bullets-section-inner {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .w4-realted {
    padding: 0 2.4rem;
    box-sizing: border-box;
  }
}

/*# sourceMappingURL=radiant.css.map */
