@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia-Bold.eot');
    src: url('../fonts/Georgia-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Georgia-Bold.woff2') format('woff2'),
        url('../fonts/Georgia-Bold.woff') format('woff'),
        url('../fonts/Georgia-Bold.ttf') format('truetype'),
        url('../fonts/Georgia-Bold.svg#Georgia-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia-Italic.eot');
    src: url('../fonts/Georgia-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Georgia-Italic.woff2') format('woff2'),
        url('../fonts/Georgia-Italic.woff') format('woff'),
        url('../fonts/Georgia-Italic.ttf') format('truetype'),
        url('../fonts/Georgia-Italic.svg#Georgia-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia.eot');
    src: url('../fonts/Georgia.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Georgia.woff2') format('woff2'),
        url('../fonts/Georgia.woff') format('woff'),
        url('../fonts/Georgia.ttf') format('truetype'),
        url('../fonts/Georgia.svg#Georgia') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia-BoldItalic.eot');
    src: url('../fonts/Georgia-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Georgia-BoldItalic.woff2') format('woff2'),
        url('../fonts/Georgia-BoldItalic.woff') format('woff'),
        url('../fonts/Georgia-BoldItalic.ttf') format('truetype'),
        url('../fonts/Georgia-BoldItalic.svg#Georgia-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}



:root {
  --purple: #B11E5B;
  --light-purple: #E0A5BD;
  --black-text: #535862;
  --dark-text: #333;
  --light-grey: #d6d6d6;
  --little-light-grey: #A4A7AE;
  --dark-grey: #181D27;
  --more-dark-grey: #0A0D12;

  --top-padding: 4.444rem;
  --top-padding-topbar-active: 7.333rem;
  --top-padding-fixed: 3.333rem;
  --top-padding-fixed-topbar-active: 5.5556rem;
}
@media (max-width: 991px) {
  :root {
    --top-padding: 4.15rem;
    --top-padding-fixed: 4.15rem;
    --top-padding-topbar-active: 6.8rem;
    --top-padding-fixed-topbar-active: 6.8rem;
  }
}
@media (max-width: 575px) {
  :root {
    --top-padding-topbar-active: 8.18rem;
    --top-padding-fixed-topbar-active: 8.18rem;
  }
}

html, body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  overscroll-behavior: none;
}
@media (max-width: 1399px) {
  html, body {
    font-size: 17px;
  }
}
@media (max-width: 1199px) {
  html, body {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  html, body {
    font-size: 15px;
  }
}


@media (min-width: 1500px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1424px;
  }
}
@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1544px;
  }
}

ul, ol {
  padding-left: 1.5rem;
}

a {
  color: var(--dark-grey);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;  
}

a:hover {
  color: var(--purple);
  text-decoration: none;
}
a:focus {
  outline: none;
}
a.white-link {
  color: #fff;
}
a.white-link:hover {
  color: var(--dark-grey);
}

strong, b {
  font-weight: 700;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia';
  color: var(--dark-grey);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.h1, h1 {
  font-size: calc(1.45rem + 1.25vw);
}
.h2, h2 {
  font-size: calc(1.325rem + 1vw);
}
.h3, h3 {
  font-size: calc(1.275rem + .75vw);
}
.h4, h4 {
  font-size: calc(1.25rem + .45vw);
}
.h5, h5 {
  font-size: 1.25rem;
}
.h6, h6 {
  font-size: 1.125rem;
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.6667rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 1.6667rem;
  }
  h4, .h4 {
    font-size: 1.5556rem;
  }
  .h5, h5 {
    font-size: 1.333rem;
  }
  .h6, h6 {
    font-size: 1.25rem;
  }
}


a:focus, button:focus {
  outline: none;
  box-shadow: none;
}

a.btn, a.wp-block-button__link, .wpcf7-form input[type="submit"], form.mc4wp-form input[type="submit"] {
  font-size: 0.8889rem;
  color: #fff;
  font-weight: 400;
  height: 2.6667rem;
  line-height: 2.6667rem;
  padding: 0 1rem;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 0;
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(10, 13, 18, 0.18) inset, 0 -2px 0 0 rgba(10, 13, 18, 0.05) inset, 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
form.mc4wp-form input[type="submit"] {
  height: 2.444rem;
  line-height: 2.444rem;
}
a.btn:hover, a.wp-block-button__link:hover, .wpcf7-form input[type="submit"]:hover, form.mc4wp-form input[type="submit"]:hover {
  background: var(--dark-grey) !important;
  border-color: var(--dark-grey) !important;
  color: #fff !important;
  box-shadow: 1px 1px 5px rgb(130 130 130 / 10%);
}
a.btn:focus, .wpcf7-form input[type="submit"]:focus, form.mc4wp-form input[type="submit"]:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 991px) {
  a.btn, a.wp-block-button__link, .wpcf7-form input[type="submit"] {
    height: 3rem;
    line-height: 3rem;
  }
}
@media (max-width: 767px) {
  a.btn, a.wp-block-button__link, .wpcf7-form input[type="submit"] {
    height: 2.875rem;
    line-height: 2.875rem;
    padding: 0 1.25rem;
  }
}

a.btn.btn-alt {
  border: 1px solid #D5D7DA;
  background: #fff;
  color: #414651;
}
a.btn.btn-alt:hover {
  border: 1px solid #414651 !important;
  background: #414651 !important;
  color: #fff !important;
}

.text-white {
  color: #fff;
}
.text-purple {
  color: var(--purple);
}
.text-grey {
  color: var(--grey);
}

.text-large {
  font-size: 1.111rem;
}
.text-small {
  font-size: 0.88889rem;
}



section.entry-content {
  position: relative;
  background: #fff;
  margin: 5rem 0;
}
section.entry-content p {
  margin-bottom: 1.5rem;
}
section.entry-content h1, section.entry-content h2, section.entry-content h3, section.entry-content h4, section.entry-content h5, section.entry-content h6 {
  margin-bottom: 1rem;
}
.section-padding {
  padding: 5rem 0;
}
section.section {
  margin-bottom: 5rem;
  margin-top: 5rem;
}
@media (max-width: 991px) {
  section.entry-content {
    margin: 4rem 0;
  }
  .section-padding {
    padding: 4rem 0;
  }
  section.section {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  section.entry-content {
    margin: 3rem 0;
  }
  .section-padding {
    padding: 3rem 0;
  }
  section.section {
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
}

.page-header-wrapper {
  margin: 5rem 0;
}
.page-header {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}
h1.page-title {
  margin-bottom: 1.333rem;
}
.page-header p.current-date,
p.sub-header {
  margin-bottom: 0.6667rem;
  font-weight: 600;
  font-size: 0.8889rem;
  color: #6A1237;
}
.page-header .text-large>:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .page-header-wrapper {
    margin: 4rem 0;
  }
}
@media (max-width: 767px) {
  .page-header-wrapper {
    margin: 3rem 0;
  }
  h1.page-title {
    margin-bottom: 1rem;
  }
}

.wp-block-embed {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.wp-block-embed-youtube .wp-block-embed__wrapper, .wp-block-embed-vimeo .wp-block-embed__wrapper {
   position: relative;
   padding-bottom: 56.25%;
   padding-top: 30px;
   height: 0;
   overflow: hidden; 
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe, .wp-block-embed-vimeo .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* .wp-block-quote {
  border: none !important;
  background: url(../images/quote.svg) no-repeat;
  padding-left: 30px;
  padding-top: 45px;
  color: var(--black);
  font-size: 1.125rem;
} */
.wp-block-quote {
  border-left: 2px solid var(--purple);
  padding-left: 20px;
  padding-top: 8px;
  color: var(--dark-grey);
  font-size: 1.333rem;
  font-family: "Georgia";
  line-height: 1.3;
}
.wp-block-quote > * {
  margin: initial !important;
}
.wp-block-quote cite {
  font-size: 0.8889rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  padding-top: 1.7778rem;
  display: block;
}
@media (max-width: 767px) {
  .wp-block-quote {
    margin: 0 0 2rem;
  }
}



.wp-block-separator {
  border-width: 2px;
  border-color: var(--light-grey);
}

.wp-block-image {
  position: relative;
}
.wp-block-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgb(19 30 37 / 80%);
  margin: 0;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #fff;
  border-top-right-radius: 2.5rem;
}

.wp-block-gallery, .wp-block-image {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.wp-block-gallery .wp-block-image {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.slick-slide:focus {
  outline: none;
}


ul.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.3125rem;
  display: flex;
  justify-content: flex-end;
}
ul.social-links li {
  margin: 0 0.6667rem;
}
ul.social-links li:first-of-type {
  margin-left: 0;
}
ul.social-links li:last-of-type {
  margin-right: 0;
}
ul.social-links li a {
  color: var(--black-text);
}
ul.social-links li a:hover {
  color: var(--purple);
}


/* Footer Styles */
.subscription-form-wrapper {
  background: var(--more-dark-grey);
  color: #fff;
  padding: 2.6667rem 0;
}
.subscription-form-wrapper h5 {
  color: #fff;
  margin-bottom: 0.25rem;
}
p.subscription-tagline {
  font-size: 0.8889rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .subscription-form-wrapper {
    padding: 2rem 0;
  }
  .subscription-form-wrapper h5 {
    text-align: center;
  }
  p.subscription-tagline {
    text-align: center;
    margin-bottom: 1.25rem;
  }
}


.site-footer {
  background: var(--more-dark-grey);
  color: var(--little-light-grey);
  font-size: 0.8889rem;
}
.footer-body {
  padding: 3.5556rem 0;
}
.footer-logo img {
  height: 2.6667rem;
}
h5.footer-title {
  color: var(--little-light-grey);
  font-size: 0.7778rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
}
ul.footer-menu {
  padding: 0;
}
ul.footer-menu li {
  list-style: none;
  font-size: 0.8889rem;
}
ul.footer-menu li:not(:last-child) {
  margin-bottom: 0.5rem;
}
ul.footer-menu li a,
.footer-body p a {
  color: var(--little-light-grey);
}
ul.footer-menu li a:hover,
ul.footer-menu li a:focus,
.footer-body p a:hover,
.footer-body p a:focus {
  color: var(--purple);
}
.footer-contact-info p {
  line-height: 2;
}
.footer-contact-info p a {
  border-bottom: 1px solid var(--little-light-grey);
  transition: all 0.3s ease-out;
}
.footer-contact-info p a:hover,
.footer-contact-info p a:focus {
  border: 0;
}
.footer-contact-location p {
  margin-bottom: 0.7778rem;
}
.footer-contact-location>:last-child {
  margin-bottom: 0;
}

.bottom-line-inner {
  border-top: 1px solid #252B37;
  padding: 1.7778rem 0 2.6667rem;
}
.bottom-line p a {
  color: var(--little-light-grey);
}
.bottom-line p a:hover,
.bottom-line p a:focus {
  color: var(--purple);
}
.bottom-line p.policy-links a {
  padding: 0 0.333rem;
}
.bottom-line p.policy-links {
  margin:  0 -0.333rem;
}
@media (max-width: 991px) {
  .footer-body {
    padding: 2.666rem 0;
  }
  a.footer-logo {
    display: block;
    margin-bottom: 1.333rem;
    text-align: center;
  }
  .bottom-line-inner {
    padding: 1.333rem 0 2rem;
  }
}
@media (max-width: 767px) {
  .footer-logo img {
    height: 2rem;
  }
  h5.footer-title {
    margin-bottom: 0.5rem;
  }
  .bottom-line-inner {
    text-align: center;
  }
  ul.social-links {
    justify-content: center;
  }
  .bottom-line p.policy-links {
    margin: 0 -0.333rem 1rem;
  }
}



/*  Blog  */
body.blog .page-header {
  text-align: left;
  margin-left: 0;
}

.posts-container {
  margin: 5rem 0 4rem;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.89rem;
  margin-right: -0.89rem;
}
.posts-grid-item {
  width: 50%;
  padding: 0 0.89rem;
  margin: 1.335rem 0;
}

.posts-grid.one-col .posts-grid-item {
  width: 100%;
}
.posts-grid.three-col .posts-grid-item {
  width: 33.3333%;
}
.posts-grid.four-col .posts-grid-item {
  width: 25%;
}

@media (max-width: 991px) {
  .posts-grid-item,
  .posts-grid.three-col .posts-grid-item,
  .posts-grid.four-col .posts-grid-item {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .posts-grid-item,
  .posts-grid.three-col .posts-grid-item,
  .posts-grid.four-col .posts-grid-item {
    width: 100%;
  }
}

.post-grid-content h5.h6 {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.posts-grid-item-inner {
  position: relative;
}

.post-grid-image {
  position: relative;
  overflow: hidden;
}

.post-grid-image:before {
  content: '';
  display: block;
  padding-bottom: 57%;
}

.post-grid-image img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.posts-grid-item-inner:hover .post-grid-image img {
  transform: scale(1.1);
}

.post-cats {
  color: var(--blue);
}

.post-cats a {
  font-size: 0.7778rem;
  font-weight: 500;
  line-height: 1.1;
  background: #F7E8EF;
  color: #6A1237;
  padding: 0.125rem 0.6rem;
  border-radius: 0.222rem;
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
.post-cats a.color-blue {
  color: #3538CD;
  background: #EEF4FF;
}
.post-cats a.color-purple {
  color: #C11574;
  background: #FDF2FA;
}

.post-cats a:hover {
  background: var(--dark-grey);
  color: #fff;
}

.post-grid-content {
  position: relative;
  padding-top: 1.111rem;
}

.posts-grid-item-inner:hover a.btn {
  background: var(--blue);
  color: #fff;
}

.posts-grid-item-inner:hover a.btn svg {
  color: #fff;
}

.post-grid-content time.entry-date,
.post-author-date a {
  font-size: 0.7778rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #6A1237;
}

.post-grid-content h6.h5 a {
  color: var(--dark-grey);
  display: block;
  position: relative;
  padding-right: 2rem;
}
.post-grid-content h6.h5 a svg {
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease-out;
}
.post-grid-content h6.h5 a:hover svg {
  transform: rotate(45deg);
}


.post-grid-content h6.h6 a:hover,
.post-author-date a:hover {
  color: var(--purple);
}

.posts-container .posts-grid .posts-grid-item:first-of-type {
  margin-top: 0;
}
.posts-container .posts-grid .posts-grid-item:first-of-type .post-grid-content h6.h6 a {
  color: var(--little-dark-green);
}
.posts-container .posts-grid .posts-grid-item:first-of-type .post-grid-content h6.h6 a:hover {
  color: var(--black-text);
}

a.read-more-link {
  color: var(--parrot-green);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

a.read-more-link i {
  margin-left: 0.5rem;
}

a.read-more-link:hover {
  color: var(--dark-green);
}

.posts-container .posts-grid .posts-grid-item:first-of-type .post-grid-content h6.h5 {
  font-size: 1.6667rem;
  margin-bottom: 0.6667rem;
}

@media (max-width: 1199px) {
  .posts-container .posts-grid .posts-grid-item:first-of-type .post-grid-content h6.h5 {
    font-size: calc(1.275rem + .75vw);
  }
}
@media (max-width: 575px) {
  .posts-grid-item,
  .columns-4 .posts-grid-item {
    width: 100%;
  }
}


@media (min-width: 576px) {
  .posts-container .posts-grid .posts-grid-item:first-of-type {
    width: 100%;
  }
  .posts-container .posts-grid .posts-grid-item:first-of-type .posts-grid-item-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .posts-container .posts-grid .posts-grid-item:first-of-type .post-grid-image {
    width: 60%;
  }
  .posts-container .posts-grid .posts-grid-item:first-of-type .post-grid-content {
    width: 40%;
    padding-top: 0;
    padding-left: 1.7778rem;
  }
}


/* Blog Filter Styles */
.posts-container form#searchform {
  margin-bottom: 1.7778rem;
}
.posts-container form#searchform .input-group {
  position: relative;
}
.posts-container form#searchform .input-group .form-control {
  padding-left: 2.333rem;
  border: 1px solid #D5D7DA;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}
.posts-container form#searchform .input-group .btn {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 0;
  border: 0;
  margin-left: 0;
  z-index: 5;
}
.posts-container form#searchform .input-group .btn:hover,
.posts-container form#searchform .input-group .btn:focus {
  background: transparent;
  color: var(--dark-grey);
}
@media (max-width: 991px) {
  .posts-container form#searchform {
    margin-bottom: 1.3333rem;
  }
  .widget_wpc_filters_widget .wpc-filter-title {
    margin-bottom: 0.6667rem;
  }
}




.posts-container .widget_wpc_filters_widget .wpc-filter-title {
  color: #6A1237;
  font-size: 0.7778rem;
  font-weight: 600;
  margin-bottom: 1.111rem;
}
.posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap .wpc-filters-section:not(.wpc-filter-terms-count-0) ul.wpc-filters-labels,
body .posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap .wpc-term-item-content-wrapper {
  display: block;
}
.posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap .wpc-filters-labels li.wpc-term-item label a {
  color: #717680;
  font-size: 0.8889rem;
  font-weight: 600;
}
.posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap .wpc-filters-labels li.wpc-term-item label span.wpc-filter-label-wrapper {
  padding: 0.444rem 0.6667rem;
  border-radius: 0.333rem;
  border: 0;
  transition: all 0.3s ease-out;
}
.posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap .wpc-filters-labels li.wpc-term-item {
  margin-bottom: 0.222rem;
}
body .posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap input.wpc-label-input+label:hover span.wpc-filter-label-wrapper,
body .posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap input.wpc-label-input:checked+label span.wpc-filter-label-wrapper {
  background: #F7E8EF;
}
body .posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap input.wpc-label-input+label:hover span.wpc-filter-label-wrapper a,
body .posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap input.wpc-label-input:checked+label span.wpc-filter-label-wrapper a {
  color: var(--purple);
}
.posts-container .widget_wpc_filters_widget .wpc-filters-main-wrap .wpc-filters-labels li.wpc-term-item label {
  margin-right: 0;
  border: 0;
  display: block;
}


.pagination-section {
  display: flex;
  margin: 5rem 0 0;
  border-top: 1px solid #DBEFE8;
  border-bottom: 1px solid #DBEFE8;
  padding: 2rem 0;
  align-items: center;
  justify-content: space-between;
}
a.pagination-view-all {
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: 4rem;
  border: 1px solid #DBEFE8;
  background: #fff;
}
a.pagination-view-all:hover {
  border-color: green;
  background: green;
  color: #fff;
}
span.page-count {
  display: block;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: 4rem;
  border: 1px solid #DBEFE8;
  background: #fff;
  margin-right: 2rem;
}
span.page-count i {
  color: green;
}
.pagination {
  margin: 2.222rem 0 0;
  padding: 1.222rem 0 0;
  border-top: 1px solid #E9EAEB;
  justify-content: center;
}
.pagination .page-link {
  border-radius: 0.444rem !important;
  margin-right: 0.111rem;
  color: var(--black-text);
  width: 2.222rem;
  height: 2.222rem;
  padding: initial;
  text-align: center;
  line-height: 2.2rem;
  border: 1px solid #fff;
  font-size: 0.7778rem;
}
.pagination .page-item.active .page-link,
.page-link:hover {
  background: #FAFAFA;
  border-color: #FAFAFA;
  color: #252B37;
}
.page-link:focus {
  outline: none;
  box-shadow: none;
}



/* Blog Single Styles */
body.single .page-header {
  text-align: left;
  margin-left: 0;
}
body.single .page-header-wrapper {
  margin: 3.5556rem 0;
}
.post-top-thumb {
  background: grey;
}
.post-top-thumb img {
  display: block;
  margin: 0 auto;
}
.post-top-content {
  margin: 1.7778rem 0 0;
}
.post-top-info {
  display: inline-block;
  margin-right: 2.6667rem;
  color: #141414;
}
.post-top-info:last-of-type {
  margin-right: 0;
}
.post-top-info h6 {
  font-size: 0.7778rem;
  font-weight: 600;
  color: #8E1849;
  margin-bottom: 0.6667rem;
  font-family: "Inter", sans-serif;
}
.post-top-info p {
  margin: 0;
  color: var(--dark-grey);
  font-weight: 500;
}
@media (max-width: 991px) {
  body.single .page-header-wrapper {
    margin: 2.666rem 0;
  }
}
@media (max-width: 767px) {
  body.single .page-header-wrapper {
    margin: 2rem 0;
  }
}
@media (max-width: 575px) {
  .post-top-info p {
    margin-bottom: 1rem;
  }
}

ul.social-share {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
ul.social-share li {
  margin-left: 0.5rem;
}
ul.social-share li a {
  box-shadow: 0 0 0 1px rgba(10, 13, 18, 0.18) inset, 0 -2px 0 0 rgba(10, 13, 18, 0.05) inset, 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.222rem;
  height: 2.222rem;
  padding: 0.666rem;
  border-radius: 0.111rem;
  background: #fff;
  font-size: 1.111rem;
  color: var(--little-light-grey)
}
ul.social-share li a:hover {
  color: #fff;
  background: #D5D7DA;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
ul.social-share li a:hover i {
  color: #141414;
  color: #fff;
}
ul.social-share li a.copy-link {
  width: auto;
  color: #414651;
  font-size: 0.7778rem;
}
ul.social-share li a.copy-link:hover {
  color: #fff;
  background: #D5D7DA;
}
ul.social-share li a.copy-link span {
  font-size: 0.7778rem;
  font-weight: 400;
}
ul.social-share li a.copy-link i {
  color: #414651;
  transition: all 0.3s ease-out;
}
ul.social-share li a.copy-link:hover i {
  color: #fff;
}
@media (max-width: 575px) {
  ul.social-share {
    justify-content: flex-start;
  }
}
 



.posts-section.related .section-head-inner h2 {
  margin-bottom: 1.111rem;
}
.section-head {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.section-head-inner {
  max-width: 42.6667rem;
}
.posts-section.related .posts-grid {
  margin-top: 1.111rem;
}
@media (max-width: 575px) {
  .section-head {
    flex-direction: column;
    align-items: center;
  }
  .posts-section.related .section-head {
    align-items: flex-start;
  }
}




/* hero banner */
.hero-banner {
  position: relative;
  overflow: hidden;
  height: 34.444rem;
  background: #333;
}
.hero-banner:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0 0 0 / 50%);
  z-index: 1;
}
.hero-banner-image {
  height: 100%;
}
.hero-banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  font-size: 0.8889rem;
  color: #fff;
  padding: 1.7778rem;
}
.hero-banner-content-inner {
  max-width: 30.222rem;
}
.hero-banner-content-inner h3 {
  margin-bottom: 0.6667rem;
}
.hero-banner-content-inner p {
  margin-bottom: 1.333rem;
  max-width: 26.6667rem;
}
.hero-banner-content-inner a {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5556rem;
  display: inline-block;
}
.hero-banner-content-inner a:hover {
  color: var(--light-purple);
  border-color:var(--light-purple);
}
@media (max-width: 991px) {
  .hero-banner {
    height: 30rem;
  }
  .hero-banner-content {
    padding: 1.25rem;
  }
}
@media (max-width: 767px) {
  .hero-banner {
    height: 28rem;
  }
}
@media (max-width: 575px) {
  .hero-banner {
    height: 41.06667rem;
  }
}


.videobg-aspect {
  /*position: absolute;*/
  width: 100%;
  height: 0;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  overflow: hidden;
  min-height: 33.333rem;

}

.videobg iframe {
  box-sizing: border-box;
  height: 56.25vw;
  width: 177.77777778vh;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videobg video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Contact Styles */
.wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
}

.wpcf7-list-item {
  margin: 0;
}

.form-element {
  margin-bottom: 1.333rem;
}
.form-control {
  height: 2.444rem;
  border: 1px solid #D5D7DA;
  border-radius: 0;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  padding: 0 0.7778rem;
  font-size: 0.8889rem;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--purple);
}

.form-element label {
  display: block;
  margin-bottom: 0.333rem;
  color: #414651;
  font-size: 0.7778rem;
  font-weight: 500;
}

.wpcf7-list-item-label span {
  margin-left: 0.6667rem;
  font-weight: 400;
  font-size: 0.8889rem;
}

textarea.form-control {
  height: 7.444rem;
  padding: 1rem 0.77778rem;
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.wpcf7 form .wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
  border-width: 1px;
  padding: 0.5rem 1rem;
}

.wpcf7-list-item {
  display: block;
  margin: 0;
}
.wpcf7-list-item label {
  font-family: inherit;
}

/* phone with coutry flag & code  */
span.wpcf7-form-control-wrap.intl_tel-565 {
  display: block;
}
.intl-tel-input {
  display: block !important;
}
input.wpcf7-form-control.wpcf7-intl_tel.wpcf7-intl-tel.form-control {
  color: #717680 !important; 
}
/* phone with coutry flag & code ends */


.wpcf7-list-item-label span a {
  color: var(--black-text);
  text-decoration: underline;
  text-underline-position: from-font;
}
.wpcf7-list-item-label span a:hover {
  color: var(--purple);
  text-decoration: none;
}


.wpcf7-acceptance input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item-label:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1.111rem;
  height: 1.111rem;
  line-height: 1.111rem;
  padding: 4px;
  text-align: center;
  margin-top: 1px;
}
.wpcf7-acceptance .wpcf7-list-item-label:before {
  border-radius: 0.333rem;
  border: 1px solid #D5D7DA;
  transition: all 0.3s ease-in;
}
.wpcf7-acceptance .wpcf7-list-item-label:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  color: #fff;
  left: 10px;
}

.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  font-size: 0.7778rem;
  line-height: 1.111rem;
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  vertical-align: middle;
  color: var(--dark-grey);
  line-height: 1.111rem;
}
.wpcf7-acceptance .wpcf7-list-item-label:after {
  left: 4px;
  top: 4px;
}





section.contact-section {
  position: relative;
}
/*.contact-form,
.contact-map-wrapper {
  width: 50%;
}
.contact-form {
  padding: 6.333rem 6.6667rem;
}*/
.contact-form {
  max-width: 38rem;
  padding: 5rem 2rem 5rem 0;
}
.contact-form .wpcf7-form input[type="submit"] {
  width: 100%;
}
.contact-map,
.contact-map iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.contact-map {
  width: 50vw;
  position: absolute;
  right: 0;
  top: 0;
}
.contact-header h1 {
  margin-bottom: 1.333rem;
}
.contact-header {
  margin-bottom: 2.6667rem;
}

@media (max-width: 1399px) {
  .contact-form {
    padding: 4rem 2rem 4rem 0;
  }
}
/*@media (max-width: 1199px) {
  .contact-form {
    padding: 4.25rem 4.444rem;
  }
}*/
@media (max-width: 991px) {
  textarea.form-control {
    height: 4rem;
  }
  .contact-header {
    margin-bottom: 2rem;
  }
  .contact-form {
    padding: 3rem 1rem 3rem 0;
  }
}
@media (max-width: 767px) {
  textarea.form-control {
    height: 8.9333rem;
  }
  .contact-section-inner {
    display: block;
  }
  .contact-form,
  .contact-map-wrapper {
    width: 100%;
  }
  .contact-map iframe {
    height: 20rem;
  }
   .contact-form {
    padding: 1.875rem 0;
    max-width: initial;
  }
  .contact-map {
    position: static;
    height: auto;
    width: 100%;
    padding: 0;
    margin-bottom: 1.875rem;
  }
}

.section-header h2 {
  margin-bottom: 1.111rem;
}
.contact-info-section {
  background: #FAFAFA;
}
.contact-info-header p {
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 0.5556rem;
}
.contact-info-content {
  margin-bottom: 1.7778rem;
}
.contact-info-content-wrapper>:last-child,
.contact-info-content-inner p {
  margin-bottom: 0;
}
.contact-info-content-inner p a {
  color: var(--purple);
}
.contact-info-content-inner p a svg {
  vertical-align: top;
}
.contact-info-content-inner p a:hover {
  color: var(--dark-grey);
}
@media (max-width: 767px) {
 .section-header-wrapper .text-large>:last-child {
  margin-bottom: 0;
 }
  .contact-info-content-wrapper {
    margin-top: 1.7778rem;
  }
}




/* Bootstrap Material Input like Style */
.form-element.input-material {
  position: relative;
}
.form-element.input-material label {
  color: #717680;
  font-family: 'Inter', sans-serif;
  font-size: 0.8889rem;
  font-weight: 400;
  position: absolute;
  pointer-events: none;
  left: 1.222rem;
  top: 0.5556rem;
  bottom: 1px;
  transition: 0.1s ease all;
  -moz-transition: 0.1s ease all;
  -webkit-transition: 0.1s ease all;
}
.form-element.input-material.text-area-form-element span.wpcf7-form-control-wrap ~ label {
  bottom: 90%;
  bottom: calc(100% - 46px);
  background: #717680;
  padding: 4px 6px;
}
.form-element.input-material .form-control:required ~ label::after,
.form-element.input-material .form-select:required ~ label::after {
  content: "*";
  color: #dc3545;
  padding-left: 2px;
  font-size: 0.8em;
}
.form-element.input-material .form-control:focus, .form-element.input-material .form-control[value]:not([value=""]),
.form-element.input-material .form-select:focus,
.form-element.input-material .form-select[value]:not([value=""]) {
  color: var(--black-text);
  border: 0;
}
.form-element.input-material span.wpcf7-form-control-wrap.is-focused ~ label,
.form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-control[value]:not([value=""]) ~ label,
.form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select:focus ~ label,
.form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select[value]:not([value=""]) ~ label {
  top: unset;
  bottom: 100%;
  bottom: calc(100% - 0.777rem);
  font-size: 0.75rem;
  color: #717680;
  font-weight: 400;
  background: #fff;
  padding: 2px 8px;
  border-radius: 0.25rem 0.25rem 0 0;
  z-index: 999;
}
.form-element.input-material label {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .form-element.input-material span.wpcf7-form-control-wrap.is-focused ~ label,
  .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-control[value]:not([value=""]) ~ label,
  .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select:focus ~ label,
  .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select[value]:not([value=""]) ~ label {
    padding: 2px 6px;
    bottom: calc(100% - 12px);
  }
}

.form-element-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 0 -0.444rem;
}
.form-element-wrapper .form-element {
  padding: 0 0.444rem;
}
@media (max-width: 991px) {
  .form-element-wrapper {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .form-element-wrapper {
    display: block;
  }
  form.mc4wp-form input[type="submit"] {
    width: 100%;
  }
}




figure.cta-img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
figure.cta-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-block {
  background: var(--more-dark-grey);
}
.cta-block.maroon-bg {
  background: #470C24;
}
.cta-block-content {
  color: #fff;
  padding: 4.7778rem 3.5556rem;
  max-width: 42rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-block-content a.read-more-link {
  color: var(--purple);
  margin-left: 4.222rem;
  font-weight: 400;
}
.cta-block-content a.read-more-link:hover,
.cta-block-content a.read-more-link:focus {
  color: #fff;
}
.cta-block-content h2 {
  color: #fff;
  letter-spacing: -0.04rem;
}
.cta-block-content .section-header,
.cta-block-content .section-description {
  margin-bottom: 1.7778rem;
}
.cta-btns-wrapper a.btn {
  min-width: 11.9444rem;
}
@media (max-width: 991px) {
  .cta-btns-wrapper a.btn {
    min-width: 9.333rem;
  }
  .cta-block-content a.read-more-link {
    margin-left: 2.666rem;
  }
  .cta-block-content {
    padding: 4rem 2.666rem;
  }
}
@media (max-width: 767px) {
  .cta-btns-wrapper a.btn {
    min-width: initial;
    display: block;
  }
  .cta-block-content a.read-more-link {
    margin-left: initial;
    margin-top: 1.333rem;
    display: block;
    text-align: center;
  }
  .cta-block-content {
    padding: 2rem 1.25rem;
  }
  .figure.cta-img {
    height: 18.6667rem;
  }
  .cta-block-content .section-header, .cta-block-content .section-description {
    margin-bottom: 0.25rem;
  }
}




p#breadcrumbs {
  margin: 1.111rem 0 3.5556rem;
  font-size: 0.778rem;
}
p#breadcrumbs span a {
  color: var(--black-text);
}
p#breadcrumbs span a:hover,
p#breadcrumbs span a:focus,
p#breadcrumbs span.breadcrumb_last {
  color: #6A1237;
}
@media (max-width: 991px) {
  p#breadcrumbs {
    margin: 1rem 0 2.666rem;
  }
}
@media (max-width: 767px) {
  p#breadcrumbs {
    margin: 0.6667rem 0 2rem;
  }
}




.text-section-content h5 {
  margin-bottom: 1.111rem;
}


figure.feature-img {
  width: 2.6667rem;
  height: 2.6667rem;
  border-radius: 50%;
  margin: 0 auto 1.111rem;
  background: #EFD2DE;
  text-align: center;
}
figure.feature-img img {
  height: 1.111rem;
  margin: 0.7778rem 0;
}
.feature-content h5 {
  margin-bottom: 0.6667rem;
}
.feature-content p {
  font-size: 0.7778rem;
}
.feature-content>:last-child {
  margin-bottom: 0;
}



.btns-wrapper a.btn {
  margin: 0 0.333rem;
}
.btns-wrapper {
  margin: 0 -0.333rem;
}
.img-text-content-main {
  margin-bottom: 1.7778rem;
}
.img-text-content-main>:last-child {
  margin-bottom: 0;
}
.image-text-content h3 {
  margin-bottom: 0.8889rem;
}
figure.image-text-img img {
  height: 22.222rem;
  width: 100%;
  object-fit: cover;
}
.image-text-section .row {
  align-items: center;
}
.gap {
  padding: 0 1.16667rem;
}
.gaps-wrapper {
  margin: 0 -1.16667rem;
}

.image-text-section.img-on-left .row {
  flex-direction: row-reverse;
}

@media (max-width: 1199px) {
  .gap {
    padding: 0;
  }
  .gaps-wrapper {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .image-text-content {
    margin-bottom: 2.666rem;
  }
}
@media (max-width: 767px) {
  .image-text-content {
    margin-bottom: 2rem;
  }
  figure.image-text-img img {
    height: 18.4rem;
  }
}


.testimonial-content {
  margin-bottom: 1.7778rem;
}
.testi-author p {
  font-weight: 600;
}
.review-stars {
  color: var(--dark-grey);
  font-size: 1.111rem;
  line-height: 1;
  margin-top: 0.8889rem;
}
.review-stars i {
  margin-right: 0.222rem;
}


.testimonial-slider-wrapper {
  margin: 1.333rem 0 0;
  position: relative;
}
.testimonials-slider a.slick-arrow {
  position: absolute;
  bottom: 0.5rem;
  background: #fff;
  z-index: 1;
}
.testimonials-slider a.slick-arrow.slick-prev {
  left: calc(50% - 7rem);
  padding-right: 1.5rem;
}
.testimonials-slider a.slick-arrow.slick-next {
  right: calc(50% - 7rem);
  padding-left: 1.5rem;
}
.testimonials-slider a.slick-arrow svg path {
  transition: all 0.5s ease;
}
.testimonials-slider a.slick-arrow:hover svg path,
.testimonials-slider a.slick-arrow:focus svg path {
  stroke: var(--purple);
}
figure.testi-img {
  margin: 0 auto 0.8889rem;
  width: 3.5556rem;
  height: 3.5556rem;
  border-radius: 50%;
  overflow: hidden;
}
figure.testi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul.slick-dots {
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: 8.6667rem;
}
ul.slick-dots li {
  margin: 0 0.333rem;
  flex-grow: 1;
}
ul.slick-dots li button {
  border: 0;
  background: #E9EAEB !important;
  border-radius: 0.222rem;
  width: 100%;
  height: 0.444rem;
  text-indent: -9999px;
  padding: 0;
  transition: all 0.5s ease;
}
ul.slick-dots li.slick-active button, ul.slick-dots li button:hover {
  background: var(--purple) !important;
}




section.logo-carousel-section {
  overflow: hidden;
  margin: 3.5556rem 0;
}
.logo-carousel .slide {
  padding: 0 2rem;
  padding: 0 0.6667rem;
}
.logo-carousel .slide img {
  height: 5rem;
  height: 2.6667rem;
}
.logo-carousel .slick-track {
  display: flex;
}
.logo-carousel .slick-slide {
  height: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  section.logo-carousel-section {
    margin: 2.666rem 0;
  }
}
@media (max-width: 767px) {
  section.logo-carousel-section {
    margin: 2rem 0;
  }
}






section.cta-grid-section {
  overflow: hidden;
}
section.cta-grid-section .section-head-inner h3 {
  margin-bottom: 1.111rem;
}
section.cta-grid-section .section-head {
  margin-bottom: 3.5556rem;
}
section.cta-grid-section .section-head-inner .text-large>:last-child {
  margin-bottom: 0;
}
figure.cta-item-img {
  position: relative;
  overflow: hidden;
}
figure.cta-item-img:before {
  content: '';
  display: block;
  padding-bottom: 135.42%;
}
figure.cta-item-img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.10) 85%, rgba(0, 0, 0, 0.20) 100%);
}
figure.cta-item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cta-item {
  position: relative;
  overflow: hidden;
}
.cta-item:hover figure.cta-item-img img {
  transform: scale(1.1);
}
.cta-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-item-content {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.111rem;
}
.cta-item-content h5 {
  margin-bottom: 0.6667rem;
  color: #fff;
  transition: all 0.3s ease-out;
}
.cta-item:hover .cta-item-content h5 {
  text-decoration: underline;
  text-underline-position: from-font;
}
.cta-item-content p {
  font-size: 0.8889rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  section.cta-grid-section .section-head {
    margin-bottom: 2.666rem;
  }
}
@media (max-width: 575px) {
  section.cta-grid-section .section-head {
    margin-bottom: 2rem;
  }
}




.cta-carousel .slide, .product-carousel .slide {
  width: 21.333rem;
  margin-right: 1.333rem;
}
.cta-carousel .slick-list, .product-carousel .slick-list {
  width: 100vw;
}
.cta-carousel, .product-carousel {
  margin-bottom: 1.111rem;
}
@media (max-width: 1399px) {
  .cta-carousel .slide, .product-carousel .slide {
    width: 18rem;
  }
}
@media (max-width: 767px) {
  .cta-carousel .slide, .product-carousel .slide {
    width: 16rem;
    margin-right: 1.125rem;
  }
}
@media (max-width: 575px) {
  .cta-carousel .slide, .product-carousel .slide {
    width: 16rem;
    margin-right: 1rem;
  }
}





.carousel-nav {
  display: flex;
}
.carousel-nav a.slick-arrow {
  font-size: 1.111rem;
  padding: 5px 13.75px;
}
.carousel-nav a.slick-arrow.slick-next {
  margin-left: 0.6667rem;
}




section.image-carousel-section {
  overflow: hidden;
}
.image-carousel {
  margin-bottom: 1.111rem;
}
.image-carousel .slick-list {
  width: 100vw;
}
.image-carousel .slide {
  margin-right: 1.333rem;
}
.image-carousel figure {
  height: 28rem;
}
.image-carousel figure img {
  height: 100%;
  width: auto;
}
@media (max-width: 1399px) {
  .image-carousel .slide {
    margin-right: 1rem;
  }
  .image-carousel figure {
    height: 24rem;
  }
}
@media (max-width: 1199px) {
  .image-carousel figure {
    height: 22rem;
  }
}
@media (max-width: 991px) {
  .image-carousel figure {
    height: 20rem;
  }
}
@media (max-width: 767px) {
  .image-carousel .slide {
    margin-right: 1.125rem;
  }
  .image-carousel figure {
    height: 18rem;
  }
}
@media (max-width: 575px) {
  .image-carousel .slide {
    margin-right: 1rem;
  }
  .image-carousel figure {
    height: 16rem;
  }
}
@media (max-width: 479px) {
  .image-carousel figure {
    height: 14rem;
  }
}
@media (max-width: 419px) {
  .image-carousel figure {
    height: 12rem;
  }
}





.btm-contact-form-section .contact-form {
  background: #F7E8EF;
  padding: 1.7778rem 3.5556rem;
  width: 50%;
  max-width: initial;
}
.side-contact-info-wrapper {
  width: 50%;
  background: #FBF4F7;
  padding: 1.7778rem 3.5556rem;
}
.btm-contact-form-section-wrapper {
  display: flex;
  justify-content: center;
}
.download-link p a {
  border: 0;
  font-size: 0.7778rem;
  color: var(--purple);
}
.download-link p a:hover {
  color: var(--dark-grey);
}
.download-link p a svg {
  margin-right: 0.5rem;
}
.download-link p a svg path {
  transition: all 0.3s ease-out;
}
.download-link p a:hover svg path {
  stroke: var(--dark-grey);
}
@media (max-width: 991px) {
  .btm-contact-form-section .contact-form,
 .side-contact-info-wrapper {
  padding: 1.333rem 2.666rem;
 }
}
@media (max-width: 767px) {
  .btm-contact-form-section-wrapper {
    display: block;
  }
  .btm-contact-form-section .contact-form,
  .side-contact-info-wrapper {
    width: 100%;
    padding: 1.333rem;
  }
}


.faq-wrapper {
  max-width: 768px;
  margin: 0 auto;
}
.faq-wrapper .section-header-wrapper {
  margin-bottom: 3.5556rem;
}
/* accordion block styles */
.accordion-block .accordion-item:first-child {
  padding-top: 0;
}
.accordion-item {
  border: none;
  border-radius: 0;
  padding: 1.333rem 0 1.7778rem;
  border-bottom: 1px solid #E9EAEB;
}
.accordion-block .accordion-item:last-child {
  padding-bottom: 0;
  border: 0;
}
.accordion-button:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.accordion-header a {
  color: var(--dark-grey) !important;
  display: flex;
}
.accordion-header a span.h4 {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease-out;
}
.accordion-header a:hover span.h4 {
  color: var(--purple) !important;
}
.accordion-header a:after, .accordion-button:not(.collapsed)::after {
  background-size: 1rem;
  width: 1.333rem;
  height: 1.333rem;
  background-position: center center;
  background-size: 100% 100%;
  transition: all 0.3s ease-in-out;
}
.accordion-header a.collapsed:after {
  background-image: url('../images/icon-plus.svg');
}
.accordion-header a:after, .accordion-button:not(.collapsed):after {
  background-image: url('../images/icon-minus.svg');
}
.accordion-body {
  padding: 0.444rem 0 0;
  font-size: 0.8889rem;
}
.accordion-body>:last-child {
  margin-bottom: 0;
}
section.entry-content .accordion-body p {
  margin-bottom: 0.8125rem;
}

@media (max-width: 1399px) {
  .faq-wrapper {
    padding: 0 0.5rem;
  }
}


.subscription-vertical-form-wrapper {
  background: #F7E8EF;
  padding: 1.7778rem 1.7778rem 2.222rem;
  border-top: 0.222rem solid #6A1237;
}
section.entry-content .subscription-vertical-form-wrapper h5 {
  margin-bottom: 0.444rem;
}
section.entry-content .subscription-detail p {
  margin-bottom: 1.7778rem;
}
.subscription-vertical-form-wrapper .form-element-wrapper {
  display: block;
}
.subscription-vertical-form-wrapper .form-element {
  margin-bottom: 0.8889rem;
}
.subscription-vertical-form-wrapper .form-element:last-child {
  margin-bottom: 0;
}
.subscription-vertical-form-wrapper form.mc4wp-form input[type="submit"] {
  width: 100%;
}
@media (max-width: 991px) {
  .subscription-vertical-form-wrapper {
    padding: 1.333rem 1.333rem 1.5rem;
  }
  section.entry-content .subscription-detail p {
    margin-bottom: 1.333rem;
  }
}