@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

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

a, a:visited {
  text-decoration: none;
  color: unset;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, input, select, textarea {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  outline: none;
}

img, picture {
  max-width: 100%;
  display: block;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  line-height: 1.5;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.2;
}

blockquote {
  quotes: none;
}

blockquote::before, blockquote::after {
  content: "";
}

hr {
  border: 0;
  height: 1px;
  margin: 0;
}

label {
  margin: 0;
}

blockquote {
  border-left: 0;
}

.container {
  padding: 0;
}

.site-header,
.site-main,
.site-footer,
.site-main .section {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1300px;
}
@media (max-width: 1200px) {
  .container {
    max-width: calc(100% - 48px);
  }
}
@media (max-width: 768px) {
  .container {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 540px) {
  .container {
    max-width: calc(100% - 32px);
  }
}

.site-main .container {
  text-align: center;
}

body {
  font-family: Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, .body-text {
  color: rgba(0, 0, 0, 0.9);
}

h1, h2, h3, h4, h5 {
  font-weight: bold;
}

h1 {
  font-size: 46px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 40px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 30px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 18px;
}

.body-text {
  font-size: 18px;
}
@media (max-width: 768px) {
  .body-text {
    font-size: 16px;
  }
}

.bq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.bq-btn i {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url("/wp-content/themes/courtyard/images/icon/outline-arrow-white.svg") no-repeat;
  background-size: contain;
}
.bq-btn:disabled {
  cursor: not-allowed;
}

.bq-btn-l {
  padding: 12px 20px;
  font-size: 18px;
}
.bq-btn-l i {
  width: 24px;
  height: 24px;
}

.bq-btn-m {
  padding: 12px 16px;
  font-size: 16px;
}

.bq-btn-s {
  padding: 8px 16px;
  font-size: 14px;
}

.bq-btn-xs {
  padding: 4px 12px;
  font-size: 12px;
}

a.bq-btn-contain {
  background-color: #007BFF;
  color: rgb(255, 255, 255);
  border-color: #007BFF;
}
a.bq-btn-contain:hover:not(:disabled) {
  background-color: #439EFF;
  border-color: #439EFF;
}
a.bq-btn-contain:disabled {
  background-color: rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 0, 0, 0.3);
}

a.bq-btn-outline {
  background-color: rgb(255, 255, 255);
  color: #007BFF;
  border-color: #007BFF;
}
a.bq-btn-outline:hover:not(:disabled) {
  background-color: #DEEEFF;
}
a.bq-btn-outline:disabled {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 0, 0, 0.3);
}

a.bq-btn-contain-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #007BFF;
  color: rgb(255, 255, 255);
  border-color: #007BFF;
}
a.bq-btn-contain-icon i {
  display: inline-block;
  transition: transform 0.3s ease;
}
a.bq-btn-contain-icon:hover:not(:disabled) {
  background-color: #007BFF;
  border-color: #007BFF;
}
a.bq-btn-contain-icon:hover:not(:disabled) i {
  transform: translateX(6px);
}
a.bq-btn-contain-icon:disabled {
  background-color: rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 0, 0, 0.3);
}
a.bq-btn-contain-icon:disabled i {
  opacity: 0.5;
  transform: none;
}

.btn-groups a:not(:last-child) {
  margin-right: 16px;
}

a.text-link-arrow,
span.text-link-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: #007BFF;
}
a.text-link-arrow i,
span.text-link-arrow i {
  width: 24px;
  height: 24px;
  background: url("/wp-content/themes/courtyard/images/icon/outline-arrow-primary500.svg") no-repeat;
  background-size: contain;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
a.text-link-arrow:hover,
span.text-link-arrow:hover {
  opacity: 0.8;
}
a.text-link-arrow:hover i,
span.text-link-arrow:hover i {
  transform: translateX(6px);
}

.modal-home-cta .hk-modal-content {
  text-align: center;
}
.modal-home-cta .hk-modal-title {
  margin-bottom: 16px;
  border-bottom: 0;
}
.modal-home-cta .product-link {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.modal-home-cta .product-link li {
  flex: 1;
}
.modal-home-cta .product-link li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 24px 16px;
  border: 1px solid #439EFF;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.modal-home-cta .product-link li a::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 44px;
  height: 4px;
  background: linear-gradient(to left, #4DD3BA 0%, #48C0EE 55%, #559CFF 100%);
  border-radius: 0 0 3px 3px;
}
.modal-home-cta .product-link li a .product {
  font-weight: bold;
}
.modal-home-cta .product-link li a .text {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 24px;
}
@media (max-width: 540px) {
  .modal-home-cta .product-link {
    flex-direction: column;
    text-align: left;
    margin-top: 24px;
  }
  .modal-home-cta .product-link li {
    width: 100%;
  }
  .modal-home-cta .product-link li a {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 16px 16px 24px;
  }
  .modal-home-cta .product-link li a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4px;
    height: 44px;
    border-radius: 0 3px 3px 0;
  }
  .modal-home-cta .product-link li a .text {
    margin-bottom: 0;
  }
}

.pricing .toggle-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin: 0 auto 48px;
  position: relative;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  z-index: 3;
}
.pricing .toggle-container button {
  width: 120px;
  padding: 8px 12px;
  color: rgba(0, 0, 0, 0.9);
  background-color: #fff;
  cursor: pointer;
  position: relative;
  border: 0;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.pricing .toggle-container button span {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF9C46;
  color: white;
  font-size: 13px;
  white-space: nowrap;
  padding: 1px 8px;
  border-radius: 16px;
}
.pricing .toggle-container button.active {
  background-color: #DEEEFF;
}
@media (max-width: 768px) {
  .pricing .toggle-container {
    margin-bottom: 24px;
  }
  .pricing .toggle-container button {
    padding: 4px 12px;
  }
}
.pricing .marketplaces {
  margin: 48px auto;
}
.pricing .marketplaces h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}
.pricing .marketplaces ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing .marketplaces ul li {
  margin: 0 24px;
}
.pricing .marketplaces ul li img {
  width: 48px;
  height: 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pricing .marketplaces ul li p {
  margin-top: 16px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .pricing .marketplaces {
    margin: 24px auto;
  }
  .pricing .marketplaces ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pricing .marketplaces ul li {
    margin: 0 8px 24px;
  }
  .pricing .marketplaces ul li p {
    font-size: 13px;
  }
}

.pricing-box-group {
  display: none;
}

.pricing-box-group.active {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.pricing-box-group.active > div {
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.pricing-box-group.active > div > .title {
  position: relative;
  border-radius: 20px 20px 0 0;
  padding: 32px 32px 16px;
  border-bottom: 1px solid #DEEEFF;
}
.pricing-box-group.active > div > .title .btn-s {
  width: 100%;
}
.pricing-box-group.active > div > .title .plan {
  font-size: 20px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.7);
}
.pricing-box-group.active > div > .title .price span {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: line-through;
  margin-right: 8px;
}
.pricing-box-group.active > div > .title .price b {
  font-size: 46px;
}
@media (max-width: 768px) {
  .pricing-box-group.active > div > .title .price b {
    font-size: 40px;
  }
}
.pricing-box-group.active > div > .title .price-custom {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  margin: 16px auto 28px;
}
.pricing-box-group.active > div > .title .info {
  font-size: 13px;
  margin-bottom: 16px;
}
.pricing-box-group.active > div > .title a {
  width: 100%;
}
.pricing-box-group.active > div .body {
  border-radius: 0 0 15px 15px;
  padding: 16px 0;
  text-align: left;
}
.pricing-box-group.active > div .body > div, .pricing-box-group.active > div .body > ul {
  padding: 8px 16px;
  font-size: 13px;
}
.pricing-box-group.active > div .body > ul {
  -moz-text-align-last: left;
       text-align-last: left;
  color: rgba(0, 0, 0, 0.7);
}
.pricing-box-group.active > div .body > ul .title {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
}
.pricing-box-group.active > div .body > ul li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  line-height: 1;
}
.pricing-box-group.active > div .body > ul li i {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url("/wp-content/themes/courtyard/images/icon/line-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.pricing-box-group.active > div .body hr {
  border: none;
  border-top: 1px solid #DEEEFF;
}
.pricing-box-group.active > div .body .text-muted {
  color: rgba(0, 0, 0, 0.3);
  font-style: normal;
}
.pricing-box-group.active .highlight-box > .title {
  background: linear-gradient(0deg, rgba(222, 238, 255, 0.4) 0%, #DEEEFF 100%);
  position: relative;
}
.pricing-box-group.active .highlight-box > .title::before {
  position: absolute;
  top: -12px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "Most Popular";
  display: inline-block;
  color: #fff;
  background: linear-gradient(to left, #4DD3BA 0%, #48C0EE 55%, #559CFF 100%);
  font-size: 14px;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 20px;
}

.pricing-box-group-4 > div {
  width: calc(25% - 18px);
}
@media (max-width: 768px) {
  .pricing-box-group-4 > div {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .pricing-box-group-4 {
    flex-direction: column;
  }
}

.pricing-box-group-2.active {
  justify-content: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.pricing-box-group-2.active > div {
  width: 496px;
  position: relative;
  z-index: 2;
}
.pricing-box-group-2.active > div::after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.pricing-box-group-2.active > div .title,
.pricing-box-group-2.active > div .body {
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.pricing-box-group-2.active > div .title h3 {
  margin-bottom: 16px;
}
.pricing-box-group-2.active > div .title .price span {
  font-weight: bold;
}
.pricing-box-group-2.active > div .title .price b {
  font-size: 46px;
  color: #007BFF;
}
.pricing-box-group-2.active > div .title .info {
  height: 39px;
  color: rgba(0, 0, 0, 0.5);
}
.pricing-box-group-2.active > div .body {
  padding: 16px 32px;
}
.pricing-box-group-2.active > div .body ul li {
  margin-bottom: 8px;
}
.pricing-box-group-2.active > div .body a {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.pricing-box-group-2.active::after {
  content: "";
  display: block;
  position: absolute;
  width: 1000px;
  height: 825px;
  background: url(/wp-content/themes/courtyard/images/decor/blur-oval.png) no-repeat;
  background-size: contain;
  right: 0%;
  bottom: -130px;
}
@media (max-width: 768px) {
  .pricing-box-group-2.active {
    gap: 40px;
  }
  .pricing-box-group-2.active > div {
    margin-top: 24px;
  }
}
@media (max-width: 540px) {
  .pricing-box-group-2.active {
    flex-direction: column;
  }
  .pricing-box-group-2.active > div {
    width: calc(100% - 32px);
    margin: 24px auto 0;
  }
}

.tab-panel input {
  display: none;
}

.tab-panel input {
  display: none;
}

.tab-content,
.tab-panel__images .img {
  display: none;
}

.tab-panel-desktop {
  display: flex;
  align-items: center;
  position: relative;
}
.tab-panel-desktop::after {
  display: block;
  position: absolute;
  content: "";
  background: url(/wp-content/themes/courtyard/images/decor/blur-blue_green-ball.png) no-repeat;
  background-size: contain;
  width: 618px;
  height: 618px;
  right: -70px;
  top: -90px;
  z-index: -1;
  opacity: 0.7;
}
.tab-panel-desktop .tab-panel-tabs {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  text-align: left;
}
.tab-panel-desktop .tab-panel-tabs label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 16px 16px 88px;
  height: 104px;
  position: relative;
  font-weight: normal;
  cursor: pointer;
}
.tab-panel-desktop .tab-panel-tabs label::before {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tab-panel-desktop .tab-panel-tabs label img {
  width: 56px;
  height: 56px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.tab-panel-desktop .tab-panel-tabs label h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
}
.tab-panel-desktop .tab-panel-tabs label .tab-content {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .tab-panel-desktop {
    display: none;
  }
}

#tab1:checked ~ .tab-panel-tabs label[for=tab1] .tab-content,
#tab2:checked ~ .tab-panel-tabs label[for=tab2] .tab-content,
#tab3:checked ~ .tab-panel-tabs label[for=tab3] .tab-content {
  display: block;
  animation: slideUp 0.3s ease-out;
}

#tab1:checked ~ .tab-panel__images .img1,
#tab2:checked ~ .tab-panel__images .img2,
#tab3:checked ~ .tab-panel__images .img3 {
  display: block;
  animation: slideUp 0.3s ease-out;
}

#tab1:checked ~ .tab-panel-tabs label[for=tab1]::before,
#tab2:checked ~ .tab-panel-tabs label[for=tab2]::before,
#tab3:checked ~ .tab-panel-tabs label[for=tab3]::before {
  width: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  left: -1px;
}

#tab1:checked ~ .tab-panel-tabs label[for=tab1] h3,
#tab2:checked ~ .tab-panel-tabs label[for=tab2] h3,
#tab3:checked ~ .tab-panel-tabs label[for=tab3] h3 {
  color: rgba(0, 0, 0, 0.9);
}

.tab-panel-mobile {
  display: none;
}
@media (max-width: 768px) {
  .tab-panel-mobile {
    display: block;
  }
  .tab-panel-mobile details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .tab-panel-mobile details summary .icon::before {
    display: inline-block;
    content: "";
    width: 24px;
    height: 24px;
    background: url(/wp-content/themes/courtyard/images/icon/outline-add.svg) no-repeat;
  }
  .tab-panel-mobile details h3 {
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
  }
  .tab-panel-mobile details p {
    text-align: left;
    padding: 16px 16px 0 16px;
  }
  .tab-panel-mobile details img {
    display: none;
  }
  .tab-panel-mobile details[open] {
    position: relative;
  }
  .tab-panel-mobile details[open]::after {
    display: block;
    position: absolute;
    content: "";
    background: url(/wp-content/themes/courtyard/images/decor/blur-blue_green-ball.png) no-repeat;
    background-size: contain;
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    z-index: -1;
    opacity: 0.7;
  }
  .tab-panel-mobile details[open] summary {
    border-bottom: 2px solid rgba(0, 0, 0, 0.7);
  }
  .tab-panel-mobile details[open] summary .icon::before {
    background: url(/wp-content/themes/courtyard/images/icon/outline-remove.svg) no-repeat;
  }
  .tab-panel-mobile details[open] h3 {
    color: rgba(0, 0, 0, 0.9);
  }
  .tab-panel-mobile details[open] p {
    animation: slideUp 0.3s ease-out;
  }
  .tab-panel-mobile details[open] img {
    display: block;
    animation: slideUp 0.3s ease-out;
  }
}

.tab-panel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.tab-panel-card > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tab-panel-card .tab-panel-tabs {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tab-panel-card .tab-panel-tabs label {
  cursor: pointer;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgb(255, 255, 255);
  text-align: left;
  border-left: 4px solid transparent;
}
.tab-panel-card .tab-panel-tabs label:not(:last-child) {
  margin-bottom: 24px;
}
.tab-panel-card .tab-panel-tabs label h2 {
  font-size: 18px;
}
.tab-panel-card .tab-panel-tabs label p {
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.5);
}
.tab-panel-card .tab-panel__images {
  position: relative;
  width: 880px;
}
.tab-panel-card .tab-panel__images .img {
  display: none;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 55.45%;
}
.tab-panel-card .tab-panel__images .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#tab-card1:checked ~ .tab-panel-tabs label[for=tab-card1],
#tab-card2:checked ~ .tab-panel-tabs label[for=tab-card2],
#tab-card3:checked ~ .tab-panel-tabs label[for=tab-card3] {
  border-left: 4px solid #007BFF;
}
#tab-card1:checked ~ .tab-panel-tabs label[for=tab-card1] h2,
#tab-card2:checked ~ .tab-panel-tabs label[for=tab-card2] h2,
#tab-card3:checked ~ .tab-panel-tabs label[for=tab-card3] h2 {
  color: #007BFF;
}

#tab-card1:checked ~ .tab-panel__images .img1,
#tab-card2:checked ~ .tab-panel__images .img2,
#tab-card3:checked ~ .tab-panel__images .img3 {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@media (max-width: 540px) {
  .case-studies-stats .container {
    max-width: 100%;
  }
}

.casestudy-carousell {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 20px;
  color: rgb(255, 255, 255);
  padding: 32px 48px;
}
@media (max-width: 768px) {
  .casestudy-carousell {
    padding: 32px 20px;
  }
}
.casestudy-carousell .main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgb(255, 255, 255);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.casestudy-carousell .main-content .text-wrap {
  max-width: 760px;
  text-align: left;
}
.casestudy-carousell .main-content .text-wrap > h2 {
  margin-bottom: 16px;
  color: #439EFF;
  font-size: 18px;
}
.casestudy-carousell .main-content .text-wrap .body-text {
  color: rgb(255, 255, 255);
  margin-bottom: 32px;
}
.casestudy-carousell .main-content .text-wrap h3 {
  font-size: 40px;
  color: rgb(255, 255, 255);
  margin-bottom: 32px;
}
.casestudy-carousell .main-content .text-wrap .stats {
  display: flex;
  flex-wrap: wrap;
}
.casestudy-carousell .main-content .text-wrap .stats li {
  width: 50%;
  margin-bottom: 32px;
  padding-left: 24px;
  position: relative;
}
.casestudy-carousell .main-content .text-wrap .stats li p {
  font-size: 24px;
  color: #007BFF;
  line-height: 1;
}
.casestudy-carousell .main-content .text-wrap .stats li p b {
  font-size: 46px;
}
.casestudy-carousell .main-content .text-wrap .stats li::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #439EFF;
  left: 0;
}
.casestudy-carousell .main-content .img-wrap {
  width: 300px;
}
.casestudy-carousell .main-content .img-wrap > div,
.casestudy-carousell .main-content .img-wrap > a {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 130%;
  border-radius: 5px;
}
.casestudy-carousell .main-content .img-wrap > div > img,
.casestudy-carousell .main-content .img-wrap > a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.casestudy-carousell .main-content .img-wrap > div .customer-info,
.casestudy-carousell .main-content .img-wrap > a .customer-info {
  display: flex;
  align-items: center;
  text-align: left;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px 16px 16px;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
.casestudy-carousell .main-content .img-wrap > div .customer-info img,
.casestudy-carousell .main-content .img-wrap > a .customer-info img {
  display: none;
  width: 48px;
  height: 48px;
  background: url(https://www.bqool.com/wp-content/themes/courtyard/images/img-case-grupo-01.png) no-repeat;
  background-size: contain;
  margin-right: 16px;
  border-radius: 9999px;
}
.casestudy-carousell .main-content .img-wrap > a {
  display: block;
  position: relative;
}
.casestudy-carousell .main-content .img-wrap > a:hover {
  color: white;
}
.casestudy-carousell .main-content .img-wrap > a::before, .casestudy-carousell .main-content .img-wrap > a::after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.casestudy-carousell .main-content .img-wrap > a::before {
  width: 100px;
  height: 68px;
  background: url("/wp-content/themes/courtyard/images/icon/button-play.svg") no-repeat;
  background-size: contain;
  z-index: 2;
}
.casestudy-carousell .main-content .img-wrap > a::after {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .casestudy-carousell .main-content {
    flex-direction: column;
  }
  .casestudy-carousell .main-content .text-wrap > h2 {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .casestudy-carousell .main-content .text-wrap h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .casestudy-carousell .main-content .text-wrap .body-text {
    margin-bottom: 24px;
  }
  .casestudy-carousell .main-content .text-wrap .stats li p b {
    font-size: 40px;
  }
}
.casestudy-carousell .control-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.casestudy-carousell .control-bar span {
  font-size: 18px;
}
.casestudy-carousell .control-bar button {
  width: 40px;
  height: 40px;
  background: url("/wp-content/themes/courtyard/images/icon/carousel-control-white.svg") no-repeat;
}
.casestudy-carousell .control-bar .button-preview {
  transform: scaleX(-1);
  margin-right: 16px;
}

.testimonial-carousel .carousel-card {
  display: flex;
  gap: 36px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.testimonial-carousel .carousel-card figure {
  width: 215px;
  height: 215px;
}
.testimonial-carousel .carousel-card figure img {
  width: 100%;
}
.testimonial-carousel .carousel-card .carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-text {
  text-align: left;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}
.testimonial-carousel .carousel-card .carousel-content .carousel-text blockquote {
  font-size: 18px;
  padding-left: 72px;
  position: relative;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-text blockquote::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/wp-content/themes/courtyard/images/icon/double_quotes.svg) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial-carousel .carousel-card .carousel-content .seller-info {
  display: flex;
  margin-bottom: 32px;
}
.testimonial-carousel .carousel-card .carousel-content .seller-info h5 {
  font-size: 24px;
  margin-right: 16px;
}
.testimonial-carousel .carousel-card .carousel-content .seller-info span {
  background-color: #DEEEFF;
  padding: 4px 16px;
  border-radius: 9999px;
  color: #007BFF;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-bottom .start-row {
  display: inline-flex;
  align-items: center;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-bottom .start-row span {
  font-weight: bold;
  margin-right: 8px;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-bottom .start-row i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/wp-content/themes/courtyard/images/icon/star.svg) no-repeat;
  background-size: contain;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-bottom .carousel-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-bottom .carousel-controls .carousel-prev,
.testimonial-carousel .carousel-card .carousel-content .carousel-bottom .carousel-controls .carousel-next {
  width: 40px;
  height: 40px;
  background: url("/wp-content/themes/courtyard/images/icon/line-arrow-circle.svg") no-repeat;
  background-size: contain;
}
.testimonial-carousel .carousel-card .carousel-content .carousel-bottom .carousel-controls .carousel-prev {
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .testimonial-carousel .carousel-card {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 24px;
  }
  .testimonial-carousel .carousel-card figure {
    width: 160px;
    height: 160px;
  }
  .testimonial-carousel .carousel-card .carousel-content .carousel-text {
    text-align: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .testimonial-carousel .carousel-card .carousel-content .carousel-text blockquote {
    padding-left: 0;
    text-align: left;
    font-size: 16px;
  }
  .testimonial-carousel .carousel-card .carousel-content .carousel-text blockquote::before {
    display: none;
  }
  .testimonial-carousel .carousel-card .carousel-content .seller-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
  }
  .testimonial-carousel .carousel-card .carousel-content .seller-info h5 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .testimonial-carousel .carousel-card .carousel-content .seller-info span {
    font-size: 13px;
  }
  .testimonial-carousel .carousel-card .carousel-content .carousel-bottom .carousel-controls {
    gap: 16px;
  }
}
.testimonial-carousel .carousel-avatar,
.testimonial-carousel .carousel-content {
  transition: opacity 0.4s ease;
  opacity: 1;
}
.testimonial-carousel .fade-out {
  opacity: 0;
}
.testimonial-carousel .fade-in {
  opacity: 0;
}
.testimonial-carousel .fade-in.show {
  opacity: 1;
}

.site-main .container {
  padding: 72px 0;
}
@media (max-width: 768px) {
  .site-main .container {
    padding: 40px 0;
  }
}

.title-box {
  margin-bottom: 40px;
}
.title-box h2 {
  margin-bottom: 24px;
}
.title-box .body-text {
  margin-top: 24px;
}
.title-box b {
  display: inline-block;
  color: #007BFF;
  margin-bottom: 16px;
  font-size: 20px;
}

.section-dark {
  background-image: url("/wp-content/themes/courtyard/images/decor/blur-blue_green-lefttop.png"), url("/wp-content/themes/courtyard/images/decor/blur-blue_green-bottom.png");
  background-position: Left Top, Right -380px Bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 392px, 1050px;
  background-color: rgba(0, 0, 0, 0.9);
  color: rgb(255, 255, 255);
}
.section-dark .title-box h2 {
  color: rgb(255, 255, 255);
}

.button-groups {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.button-groups a {
  width: calc(50% - 8px);
}

.two-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.three-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.three-column li {
  flex: 1;
}
.three-column li .img-wrap {
  max-width: 280px;
  margin: 0 auto;
}
.three-column li .img-wrap div {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding-bottom: 60%;
}
.three-column li .img-wrap div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.three-column li p {
  font-size: 20px;
  font-weight: bold;
}
.three-column li a {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/wp-content/themes/courtyard/images/icon/outline-arrow-primary500.svg") no-repeat;
  background-size: contain;
  margin-top: 16px;
  transition: transform 0.3s ease;
}
.three-column li a:hover {
  transform: translateX(6px);
}
@media (max-width: 768px) {
  .three-column {
    flex-direction: column;
  }
  .three-column li {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .three-column li .img-wrap {
    width: 200px;
    margin: 0;
  }
  .three-column li p {
    text-align: left;
    font-size: 16px;
    width: calc(100% - 144px);
    font-weight: normal;
  }
  .three-column li a {
    margin-top: 0;
    margin-left: 16px;
  }
}
@media (max-width: 540px) {
  .three-column li .img-wrap {
    width: 120px;
  }
  .three-column li a {
    margin-left: 0px;
  }
}

.visual-content li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}
.visual-content li:last-child {
  margin-bottom: 0;
}
.visual-content li:nth-child(odd) {
  flex-direction: row-reverse;
}
.visual-content li .text-wrap {
  text-align: left;
}
.visual-content li .text-wrap h3 {
  margin-bottom: 16px;
  font-size: 40px;
}
.visual-content li .text-wrap p {
  font-size: 18px;
}
.visual-content li .bq-btn-contain-icon {
  width: 240px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .visual-content li {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .visual-content li:nth-child(odd) {
    flex-direction: column-reverse;
  }
  .visual-content li .bq-btn-contain-icon {
    display: flex;
    margin: 16px auto 0;
    text-align: center;
  }
  .visual-content li .text-wrap h3 {
    margin-bottom: 8px;
    font-size: 24px;
  }
  .visual-content li .text-wrap p {
    font-size: 16px;
  }
}

/* Blog/Resource */
.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 48px;
}
.card-list li {
  text-align: left;
}
.card-list li .img-wrap {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 56.35%;
  border-radius: 8px;
  margin-bottom: 24px;
}
.card-list li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-list li:hover img {
  transition: transform 0.3s;
  transform: scale(1.08);
}
.card-list li h3 {
  font-size: 18px;
}
.card-list li p {
  margin: 8px 0;
}
.card-list li span {
  text-align: right;
  justify-content: flex-end;
  width: 100%;
}

.card-3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .card-2col,
  .card-3col,
  .card-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 540px) {
  .card-2col,
  .card-3col,
  .card-4col {
    grid-template-columns: 1fr;
  }
}
.marquee-seller-logo {
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
}
.marquee-seller-logo .marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-seller-logo ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.marquee-seller-logo .marquee_img {
  flex: 0 0 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
}
.marquee-seller-logo .marquee_img img {
  width: 144px;
  height: auto;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes rotateAndZoom {
  0% {
    transform: rotate(0deg) scale(1);
  }
  40% {
    right: -24px;
  }
  50% {
    transform: rotate(15deg) scale(1.3);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes orbFloat {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
}
.hero .text-box {
  width: calc(100% - 670px);
  text-align: left;
}
.hero .text-box span {
  display: flex;
  color: #007BFF;
  font-size: 16px;
  font-weight: bold;
}
.hero .text-box span i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/wp-content/themes/courtyard/images/icon/filled-sparkles3-primary500.svg) no-repeat;
  background-size: contain;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .hero .text-box span {
    justify-content: center;
  }
}
.hero .text-box h1 {
  margin: 24px 0;
}
.hero .text-box .body-text {
  margin-bottom: 48px;
}
.hero .text-box .bq-btn {
  width: auto;
  background-color: #FF8012;
  border-color: #FF8012;
  color: rgb(255, 255, 255);
}
.hero .text-box .bq-btn:hover:not(:disabled) {
  background-color: #FF9C46;
  border-color: #FF9C46;
}
@media (max-width: 768px) {
  .hero .text-box {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .hero .text-box {
    width: 100%;
    text-align: center;
  }
  .hero .text-box h1 {
    margin: 16px 0;
    font-size: 24px;
  }
  .hero .text-box .body-text {
    margin-bottom: 24px;
  }
}
.hero .visual-wrap {
  width: 646px;
}
.hero .visual-wrap .img-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 55.45%;
  overflow: hidden;
  position: relative;
}
.hero .visual-wrap .img-wrap img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .hero .visual-wrap {
    width: 100%;
    margin-top: 24px;
  }
}
.hero .video-wrap {
  max-width: 646px;
  width: 646px;
}
.hero .video-wrap div {
  width: 100%;
  position: relative;
  padding-bottom: 55.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
}
.hero .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .hero .video-wrap {
    width: 100%;
  }
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  max-width: 880px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item::marker, .faq-item::-webkit-details-marker {
  display: none;
}

.faq-question {
  width: 100%;
  padding: 20px 50px 20px 16px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question::marker, .faq-question::-webkit-details-marker {
  display: none;
}
.faq-question .faq-question-text {
  font-size: 18px;
  font-weight: 600;
  padding-right: 20px;
}

.faq-icon {
  position: absolute;
  right: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  transition: transform 0.3s ease;
}
.faq-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
}
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 16px;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 0 16px 0;
}
.faq-answer .faq-answer-content {
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.6;
}
.faq-answer .faq-answer-content p {
  margin: 0 0 15px 0;
  padding-left: 16px;
}
.faq-answer .faq-answer-content p:last-child {
  margin-bottom: 0;
}

.bottom-cta {
  background-color: #DEEEFF;
}
.bottom-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom-cta .container .title-box {
  text-align: left;
  flex: 1;
  margin: 0 24px 48px 0;
}
.bottom-cta .container .title-box h3 {
  margin-bottom: 24px;
}
.bottom-cta .container .title-box p {
  margin-bottom: 48px;
}
.bottom-cta .container .visual-wrap {
  width: 540px;
}
.bottom-cta .container .visual-wrap div {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 66%;
}
.bottom-cta .container .visual-wrap div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .bottom-cta .container {
    flex-direction: column;
  }
  .bottom-cta .container .title-box {
    text-align: center;
    margin: 0 0px 24px 0;
  }
  .bottom-cta .container .title-box p {
    margin-bottom: 24px;
  }
  .bottom-cta .container .visual-wrap {
    width: 100%;
  }
  .bottom-cta .container .btn-groups {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bottom-cta .container .btn-groups .bq-btn {
    width: auto;
  }
  .bottom-cta .container .btn-groups a:not(:last-child) {
    flex: 1;
  }
}

.bottom-cta-card {
  background-image: url("/wp-content/themes/courtyard/images/decor/fluid-righttop.png"), url("/wp-content/themes/courtyard/images/decor/fluid-leftbottom.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom;
  background-size: 467px 320px, 677px 360px;
}
.bottom-cta-card .container .title-box p {
  margin-bottom: 0;
  font-size: 18px;
}
.bottom-cta-card .container .card-groups {
  display: flex;
  gap: 16px;
}
.bottom-cta-card .container .card-groups li {
  max-width: 370px;
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.bottom-cta-card .container .card-groups li h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.bottom-cta-card .container .card-groups li p {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #DEEEFF;
}
.bottom-cta-card .container .card-groups li a.text-link-arrow {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .bottom-cta-card .container .card-groups {
    flex-direction: column;
  }
  .bottom-cta-card .container .card-groups li {
    max-width: 100%;
  }
}

.header {
  background-color: transparent;
}
.header .container {
  margin: 0 auto;
}
.header .container .menu a {
  color: rgba(0, 0, 0, 0.7);
}
.header .logo-w {
  background: url(/wp-content/themes/courtyard/images/logo.png) no-repeat;
  background-size: contain;
}
.header .header-cta-wrapper button {
  color: rgba(0, 0, 0, 0.7);
}
.header .right-bar .btn {
  color: rgba(0, 0, 0, 0.7);
}
.header #toggle span, .header #toggle span:after, .header #toggle span:before {
  background-color: rgba(0, 0, 0, 0.7);
}
.header .header-cta-wrapper button {
  border: 1px solid rgba(0, 0, 0, 0.7);
}
.header .icon-globe {
  background: url(/wp-content/themes/courtyard/images/icon/outline-globe.svg) no-repeat;
  background-size: contain;
}

.header .menu > ul > li > ul {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header.scroll-fixed-top {
  background-color: rgba(255, 255, 255, 0.9);
}

.home-hero {
  background-image: url("/wp-content/themes/courtyard/images/decor/blur-right-top.png"), url("/wp-content/themes/courtyard/images/decor/blur-left-bottom.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom;
  background-size: 923px 335px, 675px 403px;
}
.home-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-hero .text-box {
  text-align: center;
  max-width: 755px;
  margin-bottom: 64px;
}
.home-hero .text-box h1 {
  margin-bottom: 24px;
}
.home-hero .text-box .body-text {
  margin-bottom: 48px;
}
.home-hero .text-box .bq-btn {
  background-color: #FF8012;
  border-color: #FF8012;
}
.home-hero .text-box .bq-btn:hover:not(:disabled) {
  background-color: #FF9C46;
  border-color: #FF9C46;
}
@media (max-width: 768px) {
  .home-hero .text-box {
    margin-bottom: 24px;
  }
  .home-hero .text-box h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .home-hero .text-box .body-text {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.home-hero .tab-panel-card::after {
  content: "";
  display: block;
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: url("/wp-content/themes/courtyard/images/decor/blur-circle-green_blue.png") no-repeat;
  background-size: contain;
  right: 20%;
  bottom: -90px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .home-hero .tab-panel-card {
    display: none;
  }
}
.home-hero .product-list-mobile {
  display: none;
}
@media (max-width: 1200px) {
  .home-hero .product-list-mobile {
    display: flex;
    gap: 16px;
  }
  .home-hero .product-list-mobile li {
    position: relative;
    flex: 1;
    padding: 24px 16px 24px 24px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
  }
  .home-hero .product-list-mobile li::before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 56px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to left, #4DD3BA 0%, #48C0EE 55%, #559CFF 100%);
    border-radius: 0 5px 5px 0;
  }
  .home-hero .product-list-mobile li a {
    display: block;
    width: calc(100% - 24px);
    text-align: left;
  }
  .home-hero .product-list-mobile li a p {
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.5);
  }
  .home-hero .product-list-mobile li a i {
    width: 24px;
    height: 24px;
    background: url("/wp-content/themes/courtyard/images/icon/outline-arrow.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
  }
}
@media (max-width: 768px) {
  .home-hero .product-list-mobile {
    flex-direction: column;
    gap: 8px;
  }
}

.home-feature .two-column {
  align-items: baseline;
}
.home-feature .two-column > div {
  width: calc(50% - 16px);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 20px;
  padding: 64px 24px 32px;
}
.home-feature .two-column > div .card-tag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  padding: 4px 24px;
  border-radius: 0 0 15px 15px;
  font-weight: bold;
  white-space: nowrap;
}
.home-feature .two-column > div h2 {
  font-size: 30px;
}
.home-feature .two-column > div ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.home-feature .two-column > div ul li {
  display: flex;
}
.home-feature .two-column > div ul li .icon-wrap {
  width: 80px;
  height: 80px;
}
.home-feature .two-column > div ul li .icon-wrap img {
  width: 100%;
}
.home-feature .two-column > div ul li .text-wrap {
  text-align: left;
  flex: 1;
  margin-left: 24px;
}
.home-feature .two-column > div ul li .text-wrap h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.home-feature .two-column > div ul li .text-wrap p {
  line-height: 1;
}
.home-feature .two-column > div i {
  display: block;
  margin: 40px auto;
  font-size: 12px;
}
.home-feature .two-column .card-advertising .card-tag {
  background: linear-gradient(to left, #4DD3BA 0%, #48C0EE 55%, #559CFF 100%);
}
.home-feature .two-column .card-repricing .card-tag {
  background: linear-gradient(to left, #21DDB5 0%, #E3B4FF 100%);
}
@media (max-width: 768px) {
  .home-feature .two-column {
    flex-direction: column;
    gap: 24px;
  }
  .home-feature .two-column > div {
    width: 100%;
    padding: 48px 16px 24px;
  }
  .home-feature .two-column > div h2 {
    font-size: 24px;
  }
  .home-feature .two-column > div ul li .icon-wrap {
    width: 64px;
    height: 64px;
  }
  .home-feature .two-column > div i {
    margin: 24px auto;
  }
  .home-feature .two-column > div .btn-groups a {
    width: 100%;
  }
  .home-feature .two-column > div .btn-groups a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.home-pricing {
  background-color: #DEEEFF;
  background-image: url("/wp-content/themes/courtyard/images/decor/blur-right-top.png"), url("/wp-content/themes/courtyard/images/decor/blur-left-bottom.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom;
  background-size: 923px 335px, 675px 403px;
}

.home-stats ul {
  display: flex;
  justify-content: center;
}
.home-stats ul li {
  padding: 0 48px;
}
.home-stats ul li p {
  font-size: 56px;
  font-weight: bold;
  color: #439EFF;
}
.home-stats ul li span {
  font-size: 20px;
  line-height: 1;
}
.home-stats ul li span i {
  font-size: 12px;
}
.home-stats ul li:nth-child(even) {
  position: relative;
}
.home-stats ul li:nth-child(even)::after, .home-stats ul li:nth-child(even)::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #fff;
}
.home-stats ul li:nth-child(even)::after {
  left: 0;
}
.home-stats ul li:nth-child(even)::before {
  right: 0;
}
@media (max-width: 768px) {
  .home-stats ul {
    flex-direction: column;
  }
  .home-stats ul li p {
    font-size: 46px;
  }
  .home-stats ul li span {
    font-size: 18px;
  }
  .home-stats ul li:nth-child(even) {
    padding: 16px 0;
    margin: 16px 0;
  }
  .home-stats ul li:nth-child(even)::after, .home-stats ul li:nth-child(even)::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 1px;
  }
  .home-stats ul li:nth-child(even)::before {
    top: 0;
  }
  .home-stats ul li:nth-child(even)::after {
    bottom: 0;
    top: auto;
  }
}

.home-recognition .image-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.home-recognition .image-row:not(:last-child) {
  margin-bottom: 48px;
}
.home-recognition .image-row li img {
  display: block;
  height: auto;
}
.home-recognition .row-large img {
  width: 240px;
}
.home-recognition .row-small img {
  width: 160px;
}
.home-recognition .row-single img {
  width: 240px;
}
@media (max-width: 768px) {
  .home-recognition .image-row:not(:last-child) {
    margin-bottom: 16px;
  }
  .home-recognition .row-large img {
    width: 160px;
  }
  .home-recognition .row-single img {
    width: 160px;
  }
}

.site-main-ad .bq-btn {
  width: 240px;
}
@media (max-width: 768px) {
  .site-main-ad .bq-btn {
    max-width: 90%;
  }
}
.site-main-ad .bq-btn #anchor-form-demo {
  scroll-margin-top: 80px;
}

.ad-hero .visual-wrap {
  position: relative;
}
.ad-hero .visual-wrap::after {
  display: block;
  position: absolute;
  content: "";
  background: url(/wp-content/themes/courtyard/images/decor/blur-blue_green-ball.png) no-repeat;
  background-size: contain;
  width: 588px;
  height: 588px;
  right: 0;
  top: -90px;
  animation: rotateAndZoom 10s ease-in-out infinite;
  z-index: -1;
}
@media (max-width: 768px) {
  .ad-hero .visual-wrap::after {
    width: 400px;
    height: 400px;
    right: 0;
    top: -80px;
    animation: none;
  }
}

.ad-works .container {
  text-align: left;
}
@media (max-width: 768px) {
  .ad-works .container {
    flex-direction: column;
  }
}
.ad-works .title-box {
  max-width: 740px;
}
.ad-works .title-box h2, .ad-works .title-box p {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .ad-works .title-box {
    text-align: center;
  }
}
.ad-works .list li {
  display: flex;
  position: relative;
  padding-left: 60px;
}
.ad-works .list li:not(:last-child) {
  margin-bottom: 40px;
}
.ad-works .list li:not(:last-child)::after {
  position: absolute;
  display: flex;
  content: "";
  width: 1px;
  height: 158px;
  background-color: #007BFF;
  top: 26px;
  left: 17px;
  z-index: 2;
}
@media (max-width: 768px) {
  .ad-works .list li:not(:last-child)::after {
    height: calc(100% + 18px);
  }
}
@media (max-width: 768px) {
  .ad-works .list li:not(:last-child) {
    margin-bottom: 24px;
  }
}
.ad-works .list li::before {
  position: absolute;
  display: flex;
  content: "●";
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #DEEEFF;
  border-radius: 9999px;
  top: 4px;
  left: 0;
  color: #439EFF;
}
.ad-works .list li span {
  font-size: 24px;
  font-weight: bold;
}
.ad-works .list li div h3 {
  font-size: 24px;
  line-height: 1.5em;
}
.ad-works .list li div p {
  font-size: 16px;
}
@media (max-width: 768px) {
  .ad-works .list li {
    padding-left: 48px;
  }
  .ad-works .list li span, .ad-works .list li div h3 {
    font-size: 20px;
  }
  .ad-works .list li span, .ad-works .list li div h3, .ad-works .list li div p {
    line-height: 1;
  }
}

.ad-stats {
  background: linear-gradient(to bottom, #DEEEFF, rgba(255, 255, 255, 0));
}
.ad-stats .status-groups {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.ad-stats .status-groups li {
  padding: 40px 56px;
}
.ad-stats .status-groups li:not(:last-child) {
  border-right: 1px solid #DEEEFF;
}
.ad-stats .status-groups li p {
  color: #007BFF;
}
.ad-stats .status-groups li p i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/wp-content/themes/courtyard/images/icon/outline-arrow-primary500.svg") no-repeat;
  background-size: contain;
  transform: rotate(270deg);
}
.ad-stats .status-groups li p .arrow-down {
  transform: rotate(90deg);
}
.ad-stats .status-groups li p b {
  font-size: 60px;
}
.ad-stats .status-groups li span {
  font-weight: bold;
}
@media (max-width: 768px) {
  .ad-stats .status-groups {
    flex-wrap: wrap;
    width: 100%;
  }
  .ad-stats .status-groups li {
    padding: 24px 0;
    width: 50%;
  }
  .ad-stats .status-groups li:not(:last-child) {
    border: 0;
  }
}
@media (max-width: 540px) {
  .ad-stats .status-groups li p b {
    font-size: 40px;
  }
}
.ad-stats .annotation {
  margin-top: 24px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
}/*# sourceMappingURL=main.css.map */