/*
Theme Name: Bootscore
Theme URI: https://bootscore.me/
Author: Bootscore
Author URI: https://bootscore.me
Description: Flexible Bootstrap WordPress starter-theme for developers with full WooCommerce support. <a href="https://bootscore.me/category/documentation/" target="_blank">Documentation</a>
Version: 6.2.2
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
License: MIT License
License URI: https://github.com/bootscore/bootscore/blob/main/LICENSE
Text Domain: bootscore
Tags: featured-images, threaded-comments, translation-ready

Use this theme to make something cool, have fun, and share what you've learned with others.

Bootscore is based on Underscores https://underscores.me/, (C) 2012-2024 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* 
All style editing is done via /assets/scss/_bootscore-custom.scss
*/


/* * * * * * * * * * * * * * *
 * Global Variables
 * * * * * * * * * * * * * * */
:root {
    --themeColor: #7F4BF9;
    --bodyBgColor: #FFFFFF;
    --bodyFontColor: #000000;
    --secondaryBgColor: #02CBB3;
    --lightThemeColor: #EEE6FF;
    --lightGreyColor: #F5F5F5;
    --darkGreyColor: #848484;
    --topNavBgColor: #F9F6FF;
    --topNavFontColor: #000000;
    --footerBgColor: #262626;
    --footerFontColor: #FFFFFF;
    --bottomBarBgColor: #1E1E1E;
    --bodyFontFamily: "Heebo", sans-serif;
    --headingFontFamily: "Heebo", sans-serif;
    --heading1FontSize: 65px;
    --heading2FontSize: 50px;
    --heading3FontSize: 40px;
    --heading4FontSize: 30px;
    --heading5FontSize: 26px;
    --heading6FontSize: 24px;
    --bodyFontSize: 22px;
    --bodySmallFontSize: 20px;
    --bodyXSmallFontSize: 18px;
    --captionFontSize: 14px;
    --headerHeight: 100px;
    --borderRadius: 10px;
    --sectionPadding1: 120px;
    --sectionPadding2: 80px;
    --sectionPadding3: 50px;
}

/* * * * * * * * * * * * * * *
 * General
 * * * * * * * * * * * * * * */
body {
    background: var(--bodyBgColor);
    color: var(--bodyFontColor);
    font-family: var(--bodyFontFamily);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 200;
    font-size: var(--bodyFontSize);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--headingFontFamily);
    font-weight: 150;
    color: inherit;
}
h1 {
    font-size: var(--heading1FontSize);
}
h2 {
    font-size: var(--heading2FontSize);
}
h3 {
    font-size: var(--heading3FontSize);
}
h4 {
    font-size: var(--heading4FontSize);
}
h5 { 
    font-size: var(--heading5FontSize);
}
h6 {
    font-size: var(--heading6FontSize);
}
a {
    color: var(--themeColor);
}
b, strong {
    font-family: var(--boldFontFamily);
    font-weight: normal;
}
picture {
    display: block;
}

/* * * * * * * * * * * * * * *
 * Helpers
 * * * * * * * * * * * * * * */
.theme-color-text {
    color: var(--themeColor);
}
.theme-color-secondary-text {
    color: var(--secondaryBgColor);
}
.theme-color-grey-text {
    color: var(--darkGreyColor);
}
.theme-color-bg {
    background: var(--themeColor);
}
.theme-color-light-bg {
    background: var(--lightThemeColor);
}
.theme-color-top-nav-bg {
    background: var(--topNavBgColor);
}
.theme-gradient-bg {
    background: #9650EE;
    background: linear-gradient(90deg,rgba(150, 80, 238, 1) 0%, rgba(117, 72, 254, 1) 100%);
}
.theme-bg-section {
    background: var(--themeColor);
    color: #FFFFFF;
    padding-block: var(--sectionPadding2);
}
.overlay, .overlay-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
a.overlay-link {
    opacity: 0;
    font-size: 0;
    cursor: pointer;
}
.hide {
    display: none !important;
}
.border-radius {
    border-radius: var(--borderRadius);
    overflow: hidden;
}
.gradient-section {
    background: #9650EE;
    background: linear-gradient(-90deg,rgba(150, 80, 238, 1) 0%, rgba(117, 72, 254, 1) 100%);
    color: #FFFFFF;
}
.title-only-section {
    padding-block: var(--sectionPadding3);
}
.section-padding-1 {
    padding-block: var(--sectionPadding1);
}
.section-padding-2 {
    padding-block: var(--sectionPadding2);
}
.section-padding-3 {
    padding-block: var(--sectionPadding3);
}
.mt-section-padding-1 {
    margin-top: var(--sectionPadding1);
}
.mt-section-padding-2 {
    margin-top: var(--sectionPadding2);
}
.pb-section-padding-1 {
    padding-bottom: var(--sectionPadding1);
}
.pb-section-padding-2 {
    padding-bottom: var(--sectionPadding2);
}
.pb-section-padding-3 {
    padding-bottom: var(--sectionPadding3);
}


/* * * * * * * * * * * * * * *
 * Buttons
 * * * * * * * * * * * * * * */
a.btn-theme,
button.btn-theme {
    background: var(--themeColor);
    background: linear-gradient(0deg, rgba(150, 80, 238, 1) 0%, rgba(117, 72, 254, 1) 100%);
    color: #FFFFFF;
    border: 0 none;
    border-radius: var(--borderRadius);
    cursor: pointer;
    display: inline-block;
    font-family: var(--bodyFontFamily);
    font-size: var(--bodySmallFontSize);
    font-weight: 350;
    text-decoration: none;
    padding: 10px 25px 8px;
    user-select: none;
    -webkit-appearance: none;
}
button, input, select, textarea {
    -webkit-appearance: none;
}
a.btn-theme.btn-stroke,
button.btn-theme.btn-stroke {
    color: var(--themeColor);
    background: #FFF;
    border: 2px solid;
    font-size: 26px;
    font-family: var(--boldFontFamily);
    letter-spacing: 0.05em;
    padding: 10px 40px 8px;
    border-radius: 4px;
}
.theme-bg-section button.btn.btn-theme.btn-green,
.theme-bg-section a.btn.btn-theme.btn-green,
.gradient-section a.btn.btn-theme.btn-green {
    background: var(--secondaryBgColor);
    padding: 9px 20px 7px;
}
a.btn.btn-full-width {
    width: 100%;
}
a.navbar-brand-footer {
    max-width: 170px;
}


/* * * * * * * * * * * * * * *
 * Header
 * * * * * * * * * * * * * * */
.site-header {
    position: fixed;
    width: 100%;
    height: var(--headerHeight);
    background: var(--topNavBgColor);
    left: 0;
    top: 0;
    z-index: 1040;
}
body {
    padding-top: var(--headerHeight);
}
a.navbar-brand {
    width: 170px;
    padding: 0;
    margin: 0;
}
nav#nav-main {
    padding: 23px 0;
}


/* * * * * * * * * * * * * * *
 * Desktop Menu
 * * * * * * * * * * * * * * */
ul#bootscore-navbar {
    margin-top: 7px;
}
ul#bootscore-navbar li {
    margin-left: 18px;
}
#bootscore-navbar a.nav-link {
    color: var(--topNavFontColor);
    font-family: var(--bodyFontFamily);
    font-size: var(--bodySmallFontSize);
    font-weight: 350;
    border-radius: 10px;
    padding: 7px 14px 5px;
    margin-inline: 2px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease-in-out;
}
#bootscore-navbar a.nav-link:focus,
#bootscore-navbar a.nav-link:hover {
    box-shadow: none;
}
.nav-link.dropdown-toggle::after {
    border-top: 1.5px solid;
    border-right: 1.5px solid;
    border-bottom: 0;
    border-left: 0;
    width: 9px;
    height: 9px;
    transform: rotate(135deg);
    margin-left: 0.5em;
    vertical-align: 0.18em;
}
#bootscore-navbar .btn-theme-filled-parent a.nav-link {
    background: var(--themeColor);
    border-radius: var(--borderRadius);
    font-size: var(--bodyXSmallFontSize);
    color: #FFFFFF;
    border: 1px solid var(--themeColor);
}
#bootscore-navbar .btn-theme-stroked-parent a.nav-link {
    background: transparent;
    border-radius: var(--borderRadius);
    font-size: var(--bodyXSmallFontSize);
    color: #000000;
    border: 1px solid;
}
/*ul#bootscore-navbar li.current-menu-parent > .nav-link,
ul#bootscore-navbar li.current-menu-item > .nav-link {
    background: var(--lightThemeColor);
}*/
#bootscore-navbar ul.dropdown-menu {
    position: fixed;
    left: 0;
    width: 100%;
    top: 100px;
    border: 0;
    margin: 0;
    padding: 0;
    border-radius: 0 !important;
    z-index: 1040;
}
#bootscore-navbar ul.dropdown-menu > li, #bootscore-navbar ul.dropdown-menu > li > a {
    display: none;
}
#bootscore-navbar ul.dropdown-menu > li:first-child {
    display: block;
    margin: 0;
}
.mega-menu-post {
    margin-left: auto;
}
.mega-menu-post-card {
    background: #F5F5F5;
    border: 1px solid #DFDFDF;
    padding: 30px;
    border-radius: 10px;
    max-width: 440px;
    animation: slideDownWithoutOpacity 0.45s;
}
.mega-menu-content {
    padding-block: 40px 60px;
    animation: slideDown 0.3s;
}
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes slideDownWithoutOpacity {
    from {
        transform: translateY(-30px);
    }
    to {
        transform: translateY(0px);
    }
}
.mega-menu-post-card img {
    border-radius: 10px;
}
p.mega-menu-title {
    font-size: var(--bodyFontSize);
    font-weight: 250;
}
p.mega-menu-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: currentColor;
    margin-block: 10px 25px;
}

ul.mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 2;
}
ul#bootscore-navbar ul.mega-menu-list li {
    margin-left: 0;
    margin-right: 25px;
    animation: slideDown 0.3s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(2) {
    animation-duration: 0.35s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(3) {
    animation-duration: 0.4s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(4) {
    animation-duration: 0.45s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(5) {
    animation-duration: 0.5s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(6) {
    animation-duration: 0.55s;
}
ul#bootscore-navbar ul.mega-menu-list li:nth-child(7) {
    animation-duration: 0.6s;
}
ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link {
    margin-bottom: 30px;
    clear: left;
    break-inside: avoid;
    width: 100%;
    text-decoration: none;
    color: #000;
    line-height: 1.35;
    font-size: 18px;
    font-weight: 250;
}
i.mega-menu-icon {
    background: #F5F5F5;
    border: 1px solid #DFDFDF;
    padding: 10px;
    border-radius: 10px;
    width: 54px;
    height: 54px;
    margin-right: 15px;
}
ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link span.mega-menu-caption {
    font-size: 14px;
    color: #A2A2A2;
}

/* * * * * * * * * * * * * * *
 * Footer
 * * * * * * * * * * * * * * */
footer.main-footer {
    background: var(--footerBgColor);
    color: var(--footerFontColor);
    font-weight: 100;
    position: relative;
    z-index: 5;
}
.bootscore-footer-columns {
    padding-block: 70px;
}
footer.main-footer a {
    color: var(--footerFontColor);
    font-size: 20px;
    text-decoration: none;
    padding-left: 0;
}
footer.main-footer a.navbar-brand-footer {
    width: 170px;
    display: inline-block;
    max-width: 100%;
}
footer h5 {
    position: relative;
    display: table;
    margin: 0;
}
footer h5:after {
    content: '';
    width: 86px;
    height: 1px;
    background: #FFF;
    display: block;
    margin-block: 25px;
}
ul#footer-menu {
    column-count: 2;
    display: block;
}
footer a.nav-link {padding-block: 10px 8px;}
.social-menu a {
    margin-right: 12px;
}
.social-menu a img {
    width: 24px;
    margin-right: 6px;
}
.bootscore-footer-info {
    background: #000;
    padding-block: var(--sectionPadding3);
    font-size: var(--heading5FontSize);
}
.bootscore-footer-info p {
    margin-bottom: 20px;
    font-size: var(--bodyXSmallFontSize);
}
ul#legal_menu {
    justify-content: flex-start !important;
}
.footer-sticky-block {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 12;
}
.footer-sticky-block a#footer_sticky_button {
    box-shadow: 0 1px 2px 1px rgba(255,255,255,0.2);
}
.footer-sticky-block a#footer_sticky_button img {
    width: 24px;
    display: inline-block;
    margin-right: 3px;
    position: relative;
    top: -1px;
}


/* * * * * * * * * * * * * * *
 * Static Pages
 * * * * * * * * * * * * * * */
.partner-image {
    height: 260px;
    width: auto;
}
.theme-bg-section h3,
.default-page-section h3,
h4.theme-title-h3,
h3.theme-title-h3 {
    font-weight: 150;
    color: var(--themeColor);
}
.theme-bg-section h4.theme-title-h3,
.theme-bg-section h3 {
    color: #FFFFFF;
}
.icon-image {
    max-width: 64px;
}
.single-post-content h2:after,
.single-post-content h3:after,
.theme-bg-section h3:after,
.default-page-section h3:after,
h4.theme-title-h3:after,
h3.theme-title-h3:after {
    width: 80px;
    content: '';
    height: 1px;
    display: table;
    margin-block: 30px;
    background: currentColor;
}
h3.text-center:after,
h4.text-center:after,
.text-center h4:after,
.text-center h3:after {
    margin-inline: auto;
}
.card.theme-card {
    border-radius: var(--borderRadius);
    border-color: #9C9C9C;
    overflow: hidden;
}
.card.theme-card .card-body {
    padding-block: 40px;
}
div#octopus-newsletter-container .form-container {
    margin-inline: 0 !important;
}
.theme-bg-section .content {
    max-width: 900px;
    margin-inline: auto;
}
.theme-bg-section .content p {
    margin-bottom: 30px;
}
.two-third-section .content {
    max-width: 75%;
    margin-inline: auto;
}
ul.theme-list i.list-icon {
    background: var(--themeColor);
    width: 30px;
    height: 30px;
    display: inline-flex;
    border-radius: 50%;
    align-content: center;
    padding: 6px;
    flex-shrink: 0;
    margin-right: 15px;
}
i.list-icon img {display: block;}
ul.theme-list li {
    display: flex;
    margin-bottom: 20px;
}
.swiper-slide.logo-item figure {
    padding-inline: 20px;
}
.logo-slider-swiper .swiper-button-prev, .logo-slider-swiper .swiper-button-next {
    filter: grayscale(1);
    opacity: 0.3;
}
.logo-slider-swiper .swiper-button-prev {
    left: 0;
}
.logo-slider-swiper .swiper-button-next {
    right: 0;
}


/* * * * * * * * * * * * * * *
 * FAQs Page
 * * * * * * * * * * * * * * */
.faqs-block {
    max-width: 78%;
    min-width: 540px;
    margin-inline: auto;
}
.faqs-block .accordion-item {
    border: 1px solid var(--lightThemeColor);
    border-radius: var(--borderRadius);
    overflow: hidden;
}
.faqs-block .accordion-item + .accordion-item {
    margin-top: var(--sectionPadding3);
}
.faqs-block .accordion-button {
    color: var(--themeColor);
    font-weight: 250;
    padding: 25px 30px;
    border-radius: 0;
    box-shadow: none;
    font-size: var(--heading5FontSize);
    align-items: flex-start;
}
.faqs-block .accordion-button::after {
    margin-left: 15px;
    position: relative;
    top: 7px;
}
.faqs-block .accordion-button:not(.collapsed) {
    background: none;
}
.faqs-block .accordion-body {
    padding: 0 75px 50px 95px;
}
i.faq-icon {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: var(--themeColor);
    flex-shrink: 0;
    padding: 10px;
    border-radius: 50%;
    margin-right: 20px;
}
i.faq-icon img {
    display: block;
}
.journey-table th {
    background: #f8f6ff;
    padding-block: 15px;
    color: var(--themeColor);
    font-weight: 300;
}
.journey-table td {
    padding-block: 12px;
    font-size: var(--bodySmallFontSize);
    vertical-align: middle;
}
.journey-box i.features-icon img {
    filter: brightness(0) invert(1);
}
.journey-seperator i.icon-seperator {
    width: 40px;
    height: 40px;
    border-right: 2px solid #04cbb4;
    display: block;
    border-bottom: 2px solid #04cbb4;
    transform: rotate(-45deg);
    margin-right: 10px;
    margin-bottom: 40px;
}
.journey-seperator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.journey-seperator-5 {
    display: none;
}
@media screen and (min-width: 993px) {
    .journey-seperator-3 {
        display: none;
    }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
    .journey-seperator-2, .journey-seperator-4 {
        display: none;
    }
}


/* * * * * * * * * * * * * * *
 * Reviews Page
 * * * * * * * * * * * * * * */
.reviews-block .accordion-item {
    border: 0;
}
.reviews-block .accordion-item + .accordion-item {
    margin-top: var(--sectionPadding2);
}
.reviews-block .accordion-item:after {
    width: 80px;
    content: '';
    height: 1px;
    display: table;
    margin-block: var(--sectionPadding3);
    background: var(--themeColor);
}
.reviews-block .accordion-item h4 {
    color: var(--themeColor);
}
.reviews-block .accordion-item .reviewer-job {
    color: var(--darkGreyColor);
    margin-bottom: 30px;
}
button.accordion-button.btn.btn-theme.btn-green {
    width: fit-content;
    border-radius: 10px !important;
    color: #FFF;
    box-shadow: none !important;
}
button.accordion-button.btn.btn-theme.btn-green:after {
    position: relative;
    display: inline-block;
    opacity: 1 !important;
    mix-blend-mode: plus-lighter;
    filter: contrast(0);
    vertical-align: middle;
    margin-left: 6px;
}
i.workflow-icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -3px;
    margin-right: 8px;
    max-width: 27px;
}
i.workflow-icon img {
    max-width: 100%;
    display: block;
}
.reviews-block .accordion-body {
    padding: 30px 0 0;
}
.meet-rhodri-section .row .content {
    padding-inline: 40px;
}
.meet-rhodri-section .row .content {
    padding-inline: 40px;
}
.content-rhodri-quote h4 {
    max-width: 75%;
    margin: 0 auto 30px;
}


/* * * * * * * * * * * * * * *
 * Features section
 * * * * * * * * * * * * * * */
.features-row {
    margin-bottom: -30px;
}
.features-row > div {
    margin-bottom: 30px;
}
.features-card {
    padding: 30px;
    background: var(--lightGreyColor);
    border-radius: var(--borderRadius);
    min-height: 100%;
}
.theme-color-top-nav-bg .features-card {
    background: #FFF;
}
.features-card i.features-icon {
    display: flex;
    background: var(--themeColor);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.text-center .features-card i.features-icon {
    margin-inline: auto;
}
.software-features-section .features-card i.features-icon {
    background: #FFFFFF;
    box-shadow: 0 0 1px #bbb;
}
p.features-text {
    font-size: var(--bodySmallFontSize);
    margin: 12px 0 20px;
}
.partnered-with-rics figure {max-width: 470px;overflow: hidden;}
.partnered-with-rics figure img {
    width: 100.5%;
    max-width: 100.5%;
}
.swiper.logo-slider-swiper {
    position: static !important;
}
.logo-slider {
    position: relative;
    padding-inline: 30px;
}
i.subscribe-icon img {
    width: 42px;
}

/* * * * * * * * * * * * * * *
 * USP section
 * * * * * * * * * * * * * * */
.usp-card {
    min-height: 100%;
    background: #9650EE;
    background: linear-gradient(90deg,rgba(150, 80, 238, 1) 0%, rgba(117, 72, 254, 1) 100%);
    color: #fff;
    padding: var(--sectionPadding3);
    border-radius: 10px;
}
.usp-card p {
    margin: 20px 0 0;
    font-size: var(--bodySmallFontSize);
}
i.usp-icon {
    max-width: 64px;
    display: inline-block;
    margin-bottom: 30px;
}
.text-left {
    text-align: left !important;
}
.reports-row,
.workflow-row {
    margin-bottom: -30px;
}
.col-reports-card,
.col-workflow-card {
    margin-bottom: 30px;
}
.reports-card,
.workflow-card {
    padding: 30px;
    background: var(--lightGreyColor);
    border-radius: 10px;
}
.reports-card img,
.workflow-card img {
    max-width: 84px;
}
span.chip.workflow-step {
    display: inline-block;
    background: var(--themeColor);
    color: #fff;
    line-height: 1;
    padding: 10px 25px 9px;
    border-radius: 40px;
    margin-bottom: 20px;
}


/* * * * * * * * * * * * * * *
 * Fluent Forms
 * * * * * * * * * * * * * * */
label[aria-label="Consent"] {
    display: none !important;
}
.ff-t-container.ff-column-container {
    margin-bottom: 30px;
}
.ff-default .ff-el-input--label label {
    font-weight: 200 !important;
}
.ff-default .ff-t-container .ff-el-form-control {
    border-color: #000;
}
.fluent_form_1 [data-name="ff_cn_id_4"], .fluent_form_1 [data-name="ff_cn_id_4"] .ff-custom_html,
[data-name="ff_cn_id_6"], [data-name="ff_cn_id_6"] .ff-custom_html {
    margin-bottom: 0 !important;
}
button.ff-btn.ff-btn-submit {
    background: var(--themeColor);
    background: linear-gradient(0deg, rgba(150, 80, 238, 1) 0%, rgba(117, 72, 254, 1) 100%);
    color: #FFFFFF;
    border: 0 none;
    border-radius: var(--borderRadius);
    cursor: pointer;
    display: inline-block;
    font-family: var(--bodyFontFamily);
    font-size: var(--bodyFontSize);
    font-weight: 350;
    text-decoration: none;
    padding: 10px 25px 8px;
    user-select: none;
    -webkit-appearance: none;
    display: table;
    margin: 30px auto 0;
}
i.subscribe-icon {
    display: table;
    margin-inline: auto;
}
.page-contact .contact-content {
    max-width: 670px;
}
.col-contact-link:nth-child(2) {
    margin-inline: 60px;
}
.col-contact-link img {
    max-height: 28px;
}
.col-contact-link a {
    text-decoration: none;
    color: inherit;
}
.col-contact-link a span {
    text-decoration: underline;
}
i.contact-icon {
    background: var(--themeColor);
    width: 55px;
    height: 55px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    padding: 12px;
    justify-content: center;
    margin-right: 15px;
    vertical-align: middle;
}


/* * * * * * * * * * * * * * *
 * Home page
 * * * * * * * * * * * * * * */
.hero-slider-swiper .content {
    max-width: 45%;
    padding-right: 5%;
}
.hero-slider-swiper .content h1 {
    margin-bottom: var(--sectionPadding3);
    font-size: var(--heading2FontSize);
}
span.swiper-pagination-bullet {
    width: 70px;
    border-radius: 0;
    background: #fff;
    height: 5px;
    position: relative;
}
span.swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 0;
    height: 15px;
    width: 100%;
    top: -5px;
}
.swiper-pagination.swiper-pagination-clickable {
    position: relative;
    margin-top: var(--sectionPadding3);
}
div.swiper-cube .swiper-cube-shadow:before {
    opacity: 0;
}
.video-embeded iframe {
    width: 900px;
    height: 480px;
    border: 1px solid #5d29c8;
}
.review-box {
    background: #fff;
    color: #000;
    padding: var(--sectionPadding3) 30px;
    margin-bottom: var(--sectionPadding3);
}
.review-box p.theme-color-grey-text {
    margin: 0;
}
.review-box p.review-title:after {
    content: '';
    background: #000;
    width: 80px;
    height: 1px;
    display: block;
    margin: 30px auto;
}


/* * * * * * * * * * * * * * *
 * Accordion
 * * * * * * * * * * * * * * */
.home-reviews-accordion .accordion-item {
    background: none;
    border: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.home-reviews-accordion .accordion-item .accordion-header {
    order: 1;
}
.home-reviews-accordion .accordion-item .accordion-body {
    padding: 0;
}
.home-reviews-accordion .reviews-row .review-item .review-box {
    margin-bottom: 0;
    min-height: 100%;
}
.home-reviews-accordion .reviews-row .review-item {
    margin-bottom: 30px;
    min-height: 100%;
}



/* * * * * * * * * * * * * * *
 * Posts
 * * * * * * * * * * * * * * */
.post-item figure {
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: var(--borderRadius);
}
.post-item figure img {
    border-radius: var(--borderRadius);
    aspect-ratio: 2 / 1.33;
    object-fit: cover;
}
.post-item h4 {
    margin-bottom: 20px;
}
.post-short-content {
    font-size: var(--bodyXSmallFontSize);
    margin-bottom: 20px;
}
hr.wp-block-separator {
    margin-block: var(--sectionPadding2);
}
.single-post-content h2,
.single-post-content h3 {
    color: var(--themeColor);
    margin-bottom: 0;
}
.single-post-content p img.size-full {
    display: block;
    margin-bottom: var(--sectionPadding2);
}
.single-post-content p + h2,
.single-post-content p + h3 {
    margin-top: var(--sectionPadding2);
}
figure.wp-block-image {
    margin-bottom: var(--sectionPadding2);
}
.post-item {
    margin-bottom: var(--sectionPadding3);
}
.blogs-grid {
    margin-bottom: -50px;
}


/* * * * * * * * * * * * * * *
 * Breadcrumbs
 * * * * * * * * * * * * * * */
.breadcrumb > * {
    margin-right: 18px;
    text-decoration: none;
}
.breadcrumb a {
    color: inherit;
}
.breadcrumb a:hover {
    color: var(--themeColor);
    text-decoration: none;
}
p:empty {
    display: none;
}
.reviews-slider-swiper .swiper-pagination.swiper-pagination-clickable {
    margin-top: 10px;
}
.reviews-slider-swiper h5 {
    margin-block: 30px 15px;
}
p.podcast-subtitle {
    font-size: var(--heading5FontSize);
    max-width: 750px;
    margin: 15px auto 0;
}

/* * * * * * * * * * * * * * *
 * Hover Effects
 * * * * * * * * * * * * * * */
#bootscore-navbar a.nav-link.show.dropdown-toggle:after {
    transform: rotate(-45deg);
    position: relative;
    top: 5px;
}
@media (hover: hover) {
    span.mega-menu-caption,
    .mega-menu-post-card img,
    i.mega-menu-icon,
    a, button, .mega-menu-post-card, .mega-menu-post-card p {
        transition: all 0.3s ease-in-out;
        user-select: none;
    }
    .mega-menu-post-card:hover {
        border-color: var(--themeColor);
        box-shadow: 0 12px 15px rgba(0,0,0,0.12);
    }
    ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link:hover i.mega-menu-icon {
        border-color: var(--themeColor);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.12);
    }
    .mega-menu-post-card figure {
        overflow: hidden;
        border-radius: 10px;
    }
    .mega-menu-post-card:hover img {
        transform: scale(1.05);
    }
    #bootscore-navbar a.nav-link:hover {
        background: var(--lightThemeColor);
    }
    .mega-menu-post-card:hover p,
    ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link:hover span.mega-menu-caption,
    ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link:hover {
        color: var(--themeColor);
    }
    #bootscore-navbar .btn-theme-filled-parent.current-menu-item a.nav-link,
    #bootscore-navbar .btn-theme-filled-parent a.nav-link:hover {
        background: #7F4BF9;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    }
    #bootscore-navbar .btn-theme-stroked-parent a.nav-link:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    }
    .post-item:hover a.btn.btn-theme,
    a.btn.btn-theme:hover {
        background: #4A2AAD;
        background: linear-gradient(0deg, #4A2AAD 0%, #4A2AAD 100%);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        color: #fff;
        transition: all 0.3s ease-in-out;
    }
    /* .post-item:hover a.btn.btn-theme.btn-green, */
    .gradient-section a.btn.btn-theme.btn-green:hover,
    .gradient-section a.btn.btn-theme.btn-green:hover {
        background: #059c8a;
    }
    footer.main-footer a {
        width: fit-content;
        position: relative;
        display: block;
    }
    footer.main-footer a:hover {
        color: #fff;
    }
    footer.main-footer a:after {
        content: '';
        background: #fff;
        transform: scale(0);
        width: 100%;
        height: 1px;
        display: block;
        transition: transform 0.3s ease-in-out;
        transform-origin: bottom left;
    }
    footer a.nav-link:hover:after {
        transform: scale(1);
    }
    .post-item figure img {
        transition: all 0.3s ease-in-out;
    }
    .post-item:hover figure img {
        transform: scale(1.05);
    }
}


/* * * * * * * * * * * * * * *
 * Animations
 * * * * * * * * * * * * * * */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* * * * * * * * * * * * * * *
 * Performance
 * * * * * * * * * * * * * * */
.contentVisibility {
    content-visibility: auto;
}
.willTransform {
    will-change: transform;
}
.hardwareAcceleration {
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* * * * * * * * * * * * * * *
 * Large Desktop
 * * * * * * * * * * * * * * */
@media only screen and (min-width: 768px) {
    .reports-card, .workflow-card, .features-card, .usp-card {
        min-height: 100%;
    }
    .mb-4.mb-md-0 {
        margin-bottom: 0 !important;
    }
}
@media only screen and (min-width: 993px) {
    .col-lg-5.footer-useful-links {
        padding-left: 30px;
    }
    .mega-menu-content {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
}
@media only screen and (min-width: 1600px) {
}


/* * * * * * * * * * * * * * *
 * Small Laptop and Tablet
 * * * * * * * * * * * * * * */
 @media only screen and (max-width: 1280px) {
    :root {
        --heading1FontSize: 55px;
        --heading2FontSize: 40px;
        --heading3FontSize: 30px;
        --heading4FontSize: 24px;
        --heading5FontSize: 22px;
        --heading6FontSize: 20px;
        --bodyFontSize: 20px;
        --bodySmallFontSize: 18px;
        --bodyXSmallFontSize: 16px;
        --captionFontSize: 12px;
        --headerHeight: 100px;
        --borderRadius: 10px;
        --sectionPadding1: 100px;
        --sectionPadding2: 70px;
        --sectionPadding3: 50px;
    }
}

/* * * * * * * * * * * * * * *
 * Laptop and Desktop
 * * * * * * * * * * * * * * */
@media only screen and (min-width: 1180px) and (max-width: 1600px) {
}

/* * * * * * * * * * * * * * *
 * Tablet landscape
 * * * * * * * * * * * * * * */
@media only screen and (min-width: 993px) and (max-width: 1180px) {
    ul.mega-menu-list {
        max-width: 680px;
    }
    ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link span.mega-menu-caption {
        font-size: 12px;
    }
    ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link {
        font-size: 16px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .reports-card, .workflow-card, .features-card, .usp-card {
        padding: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .journey-seperator i.icon-seperator {
        width: 30px;
        height: 30px;
        margin-bottom: 35px;
        margin-right: 0;
        position: relative;
        left: -5px;
    }
}

/* * * * * * * * * * * * * * *
 * Tablet portrait
 * * * * * * * * * * * * * * */
@media only screen and (max-width: 992px) {
    :root {
        --heading1FontSize: 40px;
        --heading2FontSize: 35px;
        --heading3FontSize: 30px;
        --heading4FontSize: 22px;
        --heading5FontSize: 22px;
        --heading6FontSize: 20px;
        --bodyFontSize: 18px;
        --bodySmallFontSize: 16px;
        --bodyXSmallFontSize: 14px;
        --captionFontSize: 12px;
        --headerHeight: 88px;
        --borderRadius: 10px;
        --sectionPadding1: 60px;
        --sectionPadding2: 50px;
        --sectionPadding3: 40px;
    }
    .two-third-section .content {
        max-width: 100%;
    }
    ul#bootscore-navbar li {
        margin-left: 0;
    }
    li#menu-item-72 {
        margin-left: 0 !important;
        margin-block: 30px 15px;
    }
    #bootscore-navbar .btn-theme-filled-parent a.nav-link, #bootscore-navbar .btn-theme-stroked-parent a.nav-link {
        text-align: center;
    }
    #bootscore-navbar a.nav-link {
        padding: 12px 0;
    }
    .col-usp-card {
        margin-bottom: 30px;
    }
    img.alignright {
        clear: left;
        float: none;
        display: block;
        margin: 0 0 30px;
    }
    footer h5 {
        margin-top: 50px;
    }
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
    .video-embeded iframe {
        height: 280px;
    }
    .hero-slider-swiper .content {
        max-width: none;
        padding-right: 0;
        text-align: center;
    }
    #bootscore-navbar ul.dropdown-menu {
        position: static;
    }
    ul.mega-menu-list {
        column-count: initial;
    }
    ul#bootscore-navbar ul.mega-menu-list li {
        margin-right: 0;
    }
    .container > p.mega-menu-title {
        display: none;
    }
    .mega-menu-content .container {
        padding: 0;
    }
    .mega-menu-content {
        padding-block: 15px;
    }
    ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link {
        font-size: 16px;
    }
    ul#bootscore-navbar ul.mega-menu-list li a.mega-menu-link span.mega-menu-caption {
        font-size: 12px;
    }

    .header-actions button.btn.btn-outline-secondary {
        border: 0;
        padding-inline: 5px;
        padding-top: 8px;
    }
    .header-actions button.btn.btn-outline-secondary i {
        font-size: 24px;
        color: var(--themeColor);
        transform: scaleY(0.85);
    }
    button.btn-close.text-reset {
        color: var(--themeColor);
        opacity: 1;
        background: none;
        margin-left: 0 !important;
    }
    button.btn-close.text-reset:before {
        content: '\00d7';
        display: inline-block;
        color: var(--themeColor);
        font-size: 40px;
        font-weight: 100;
        line-height: 20px;
    }
}

/* * * * * * * * * * * * * * *
 * Mobile screen
 * * * * * * * * * * * * * * */
@media only screen and (max-width: 767px) {
    .bootscore-footer-info {
        font-size: var(--bodyXSmallFontSize);
    }
    #footer-menu li a, footer.main-footer a {
        font-size: var(--bodySmallFontSize);
    }
    .d-flex.contact-links-row {
        justify-content: flex-start !important;
    }
    .col-contact-link:nth-child(2) {
        margin: 30px 0;
    }
    .image-with-text-section .row > div:first-child figure {
        margin-bottom: 40px !important;
    }
    .image-with-text-section .row > div:last-child figure {
        margin-top: 40px !important;
    }
    .col-usp-card + .col-usp-card {
        margin-top: 40px;
    }
    .meet-rhodri-section .row .content {
        padding-inline: 0;
    }
    .content-rhodri-quote h4 {
        max-width: none;
    }
    .card.theme-card {
        margin-bottom: 30px;
    }
    .faqs-block {
        min-width: 0;
        max-width: none;
    }
    .faqs-block .accordion-button {
        padding: 20px;
    }
    i.faq-icon {
        width: 30px;
        height: 30px;
        padding: 7px;
        margin-right: 12px;
    }
    .faqs-block .accordion-button {
        font-size: 20px;
    }
    .faqs-block .accordion-body {
        padding: 0 30px 30px 62px;
    }
    .homepage-slide {
        opacity: 0;
    }
    .swiper-slide-active .homepage-slide {
        opacity: 1;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        transform: scale(0.66);
    }
    .journey-seperator i.icon-seperator {
        transform: rotate(45deg);
        margin-block: -15px 40px;
        position: relative;
        left: -5px;
        width: 30px;
        height: 30px;
        margin-right: 0;
    }
    .surveyor-type-boxes .col-md-6 {
        margin-bottom: 30px;
    }

    a.navbar-brand {
        width: 125px;
    }
    .header-actions > a.btn-theme {
        padding-inline: 20px;
        margin-right: 5px;
    }
    .partner-image {
        height: 160px;
    }
    span.swiper-pagination-bullet {
        width: 48px;
    }
}

@media only screen and (max-width: 440px) {
    figure.partner-logo-list img {
        width: auto;
        height: 90px;
    }
    figure.partner-logo-list img:first-child {
        height: 120px;
        margin-bottom: 20px;
    }
    span.swiper-pagination-bullet {
        width: 32px;
        margin-inline: 3px !important;
    }
    i.contact-icon {
        width: 42px;
        height: 42px;
        margin-right: 12px;
    }
    .reports-card img, .workflow-card img {
        max-width: 48px;
    }
    i.workflow-icon {
        max-width: 22px;
        top: -2px;
        margin-right: 6px;
    }
    span.chip.workflow-step {
        font-size: 14px;
        padding: 8px 15px 7px;
    }
    i.usp-icon {
        max-width: 48px;
    }
    .features-card i.features-icon {
        width: 48px;
        height: 48px;
        padding: 10px;
    }
}
