@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-VariableFont.woff2') format('woff2'),
         url('../fonts/Roboto-VariableFont.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont.woff2') format('woff2'),
       url('../fonts/Montserrat-VariableFont.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
:root {
    --color-primary: #03d7af;
    --color-secondary: #009999;
    --color-heading: #21272a;
    --color-gray: #697077;
    --color-gray20 #ddE1E6;
    --color-white: #ffffff;
    --color-black: #000000;
    --text-white: #ffffff;
    --text-black: #000000;

    --color-f9f9f9: #f9f9f9;
    --color-03D7af: #03d7af;
    --color-009999: #009999;
    --color-667085: #667085;
    --color-1d2939: #1d2939;
    --color-344054: #344054;
    --color-98a2b3: #98a2b3;
    --color-f4f4f4: #f4f4f4;
    --color-f2f4f8: #f2f4f8;

    --f-fw-normal: 400;
    --f-fw-medium: 500;
    --f-fw-semibold: 600;
    --f-fw-bold: 700;
    --f-fw-ex-bold: 800;
    --f-fw-black: 800;
    --f-fs-font-14: 14px;
    --f-fs-font-15: 15px;
    --f-fs-font-16: 16px;
    --f-fs-font-18: 18px;
    --f-fs-font-20: 20px;
    --f-fs-font-22: 22px;
    --f-fs-font-24: 24px;
    --f-fs-font-26: 26px;
    --f-fs-font-28: 28px;
    --f-fs-font-30: 30px;
    --f-fs-font-32: 32px;
    --f-fs-font-34: 34px;
    --f-fs-font-36: 36px;
    --f-fs-font-38: 38px;
    --f-fs-font-40: 40px;
    --f-fs-font-42: 42px;
    --f-fs-font-44: 44px;
    --f-fs-font-46: 46px;
    --f-fs-font-48: 48px;
    --f-fs-font-50: 50px;
    --f-fs-font-52: 52px;
    --f-fs-font-54: 54px;
    --f-fs-font-56: 56px;
    --f-fs-font-58: 58px;
    --f-fs-font-60: 60px;

    --radius-6: 6px;

    --f-Montserrat: 'Montserrat', sans-serif;
    --f-font-awesome-6-pro: 'Font Awesome 6 Pro';
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
:focus {
    outline: 0;
    box-shadow: none;
}
:focus-visible {
    outline: none;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-heading);
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
a {
    color: var(--color-secondary);
    text-decoration: none;
}
a:hover {
    color: var(--color-primary);
}
/*b,
strong {
    font-weight: 500;
}*/
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}
.z-1 {
    z-index: 1;
}
.z-n1 {
    z-index: -1;
}
.f-w-500 {
    font-weight: var(--f-fw-medium);
}
.f-w-700 {
    font-weight: var(--f-fw-bold);
}
.btn-theme {
    font-size: var(--f-fs-font-15);
    line-height: var(--f-fs-font-20);
    font-weight: var(--f-fw-medium);
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: fit-content;
    border-radius: 6px;
    padding: 13px 32px;
    min-height: 56px;
    text-align: center;
    transition: all 0.5s ease;
}
.btn-border {
    background-color: var(--color-white);
    color: var(--color-secondary);
}
.btn-border:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.border-transparent.btn-border:hover {
    background-color: #098787;
}
.btn-bg {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.btn-bg:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}
.border-transparent {
    border-color: transparent;
}
.btn-with-arrow {
    display: inline-block;
    color: var(--color-secondary);
    font-size: var(--f-fs-font-20);
    line-height: var(--f-fs-font-24);
    font-weight: var(--f-fw-medium);
}
.btn-with-arrow:hover {
    color: var(--color-primary);
}
.btn-with-arrow i {
    font-size: var(--f-fs-font-20);
    font-weight: 500;
    margin-left: 10px;
    position: relative;
    top: 1px;
}
.h1title {
    font-size: var(--f-fs-font-54);
    line-height: var(--f-fs-font-58);
    font-size: clamp(2rem, 0.2321rem + 4.1905vw, 3.375rem);
    line-height: clamp(2.125rem, 0.5179rem + 3.8095vw, 3.6875rem);
    font-weight: var(--f-fw-bold);
}
.top-title {
    font-size: var(--f-fs-font-20);
    line-height: var(--f-fs-font-20);
    font-weight: var(--f-fw-bold);
    color: var(--color-primary);
    letter-spacing: 1px;
    margin-bottom: 11px;
}
.h2title {
    font-size: var(--f-fs-font-42);
    line-height: var(--f-fs-font-46);
    font-weight: var(--f-fw-bold);
    letter-spacing: 1px;
    margin-bottom: 48px;
    font-size: clamp(1.5rem, 0.0536rem + 3.4286vw, 2.625rem);
    line-height: clamp(1.625rem, 0.0179rem + 3.8095vw, 2.875rem);
    margin-bottom: clamp(1.5rem, -0.4286rem + 4.5714vw, 3rem);
}
.h3title {
    font-size: var(--f-fs-font-32);
    line-height: var(--f-fs-font-36);
    font-weight: var(--f-fw-bold);
    letter-spacing: 1px;
}
.heading-4 {
    font-size: var(--f-fs-font-24);
    line-height: var(--f-fs-font-26);
    font-weight: var(--f-fw-bold);
}
.heading-5 {
    font-size: var(--f-fs-font-20);
    line-height: var(--f-fs-font-22);
    font-weight: var(--f-fw-bold);
    word-wrap: break-word;
}
.text-18 {
    font-size: var(--f-fs-font-18);
    line-height: var(--f-fs-font-26);
}
.py-100 {
    padding: 100px 0;
}
.py-80 {
    padding: 80px 0;
}
.py-60 {
    padding: 60px 0;
}
.mt--100 {
    margin-top: -100px;
}
.m-top-265 {
    margin-top: -265px;
}
.container {
    max-width: 1424px;
    padding: 0px 30px;
}
.cntr-1640 {
    max-width: 1700px;
    padding: 0px 30px;
}
:is(.top-header, .main-header, .footer-wrap) .cntr-1640 {
    max-width: 1664px;
    padding: 0px 12px;
}
.main-wrap {
    padding-top: 68px;
}
.main-wrap .alignwide {
    max-width: 1388px;
    margin: 0 auto;
    padding: 0 12px;
}
.main-wrap .alignfull {
    max-width: none;
}
.main-wrap .alignfull>*{
    padding: 0 15px;
}
.bg-f9f9f9 {
    background-color: var(--color-f9f9f9);
}
.bg-f4f4f4 {
    background-color: var(--color-f4f4f4);
}
.bg-f2f4f8 {
    background-color: var(--color-f2f4f8);
}
.gradient-bg {
    background: linear-gradient(90deg, #03D7AF 0%, #0097D9 100%);
}
.single-webinare .gradient-bg.post-hero {
    background-image: url('../img/grauer-hintergrund-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.testim-bx {
    padding: 40px 25px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.testim-wrap .container {
    max-width: 1288px;
    padding: 0 35px;
}
.slick-track {
    display: flex;
}
/*.slick-slider {
  margin: 0 -8px;
}*/
.slick-slide {
    margin: 0 8px;
    height: inherit;
}
.slick-arrow {
    z-index: 1;
}
.slick-arrow:before {
    display: none;
}
.slick-arrow i {
    color: var(--color-white);
    font-size: var(--f-fs-font-20);
    font-weight: 400;
}
.btm-nav .slick-arrow {
    top: inherit;
    right: 0;
    bottom: -60px;
    left: 0;
    margin: 0 auto;
}
.btm-nav .slick-arrow.slick-prev {
    left: -50px;
}
.btm-nav .slick-arrow.slick-next {
    right: -50px;
}
.slick-dots li button:before {
    display: none;
}
.slick-dots {
    bottom: -35px;
}
.slick-dots li {
    width: 13px;
    height: 13px;
    margin: 0 10px;
}
.slick-dots li button {
    width: 13px;
    height: 13px;
    padding: 0;
    background-color: #D9D9D9;
    border-radius: 100%;
}
.slick-dots li.slick-active button {
    background-color: var(--color-secondary);
}
.bx-corner {
    position: absolute;
    content: '';
    width: 103px;
    height: 103px;
    background-color: var(--color-primary);
    border-radius: var(--radius-6);
    z-index: -1;
}
.top-left {
    left: -15px;
    top: -15px;
}
.top-right {
    right: -15px;
    top: -15px;
}
.bottom-left {
    left: -15px;
    bottom: -15px;
}
.bottom-right {
    right: -15px;
    bottom: -15px;
}
.full-img-with-content .bx-corner {
    height: 50px;
    width: 60%;
}
.full-img-with-content .bottom-right {
    right: -12px;
}
.full-img-with-content .top-right {
    right: -12px;
}
.btn-wrap {
    margin-top: 63px;
    margin-top: clamp(1.875rem, -0.7768rem + 6.2857vw, 3.125rem);
}
.btn-wrap .btn-theme {
    font-size: var(--f-fs-font-20);
    letter-spacing: 0.5px;
}
.btn-bgwrap {
    background-color: var(--color-f9f9f9);
}
.btn-inner {
    font-size: var(--f-fs-font-15);
    line-height: var(--f-fs-font-18);
    font-weight: var(--f-fw-medium);
    color: var(--color-009999);
    letter-spacing: -0.015em;
    display: flex;
    align-items: center;
    justify-content: end;
    width: fit-content;
    margin-left: auto;
    gap: 20px;
}
.btn-bgwrap .btn-arrow .arrow {
    display: inline-block;
    width: 39px;
    height: 35px;
    background-color: var(--color-009999);
    color: var(--color-white);
    font-size: 20px;
    text-align: center;
    line-height: 35px;
}
.btn-bgwrap .btn-arrow .arrow i {
    font-weight: 500;
}
.post-hero {
    padding: 250px 0;
}
.content-wrap .featured-image {
    margin-top: -150px;
}
.content-wrap .featured-image img {
    width: 100%;
    height: auto;
}
.content-wrap .post-content p {
    font-size: var(--f-fs-font-18);
    line-height: var(--f-fs-font-26);
    margin-bottom: 15px;
}
.form-field {
    margin-bottom: 15px;
}
.form-field label {
    display: block;
    font-size: var(--f-fs-font-14);
    line-height: var(--f-fs-font-20);
    font-weight: var(--f-fw-medium);
    margin-bottom: 5px;
    color: var(--color-344054);
}
.form-field :is(input, select, textarea) {
    width: 100%;
    border: 1px solid var(--color-98a2b3);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--color-344054);
}
.form-field :is(input, textarea)::placeholder {
    color: var(--color-344054);
    opacity: 1;
}
.form-field textarea {
    height: 102px;
    resize: none;
}
.check-notice .wpcf7-form-control-wrap {
    display: inline-block;
    line-height: 100%;
}
.check-notice .wpcf7-list-item {
    margin: 0;
}
.check-notice .wpcf7-list-item label {
    margin: 0;
    padding-left: 26px;
}
.check-notice .wpcf7-list-item input[type="checkbox"] {
    opacity: 0;
    width: 0;
}
.check-notice .wpcf7-list-item span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-98a2b3);
    background-color: var(--color-white);
    border-radius: 4px;
    transition: all 0.2s ease;
}
.check-notice .wpcf7-list-item input[type="checkbox"]:checked + span:before {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.check-notice .wpcf7-list-item input[type="checkbox"]:checked + span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 18px;
    margin-top: 4px;
}
.btn-submit {
    text-align: right;
}
.btn-submit .wpcf7-submit {
    background-color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 6px;
    font-weight: var(--f-fw-medium);
    color: var(--color-white);
    padding: 10px 20px;
    transition: all 0.5s ease;
}
.btn-submit .wpcf7-submit:hover {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}
.app-form .btn-submit .wpcf7-submit {
    width: 100%;
}
.btn-submit {
    position: relative;
}
.btn-submit .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 12px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 10px 0 0;
}
.wp-block-separator {
    border-top: 1px solid;
    opacity: 1;
}
.wp-block-separator.border-7 {
    border-top-width: 7px;
}
.bx-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: 0px 0px 18.4px rgba(0, 0, 0, 0.14);
    transition: all 0.5s ease;
}
.bx-wrap .bx-info {
    padding: 25px;
    height: 100%;
}
.gap-24 {
    gap: 24px 0;
}
.gap-y-20 {
    gap: 20px 0;
}
.gap-y-30 {
    gap: 30px 0;
}
.boxcta-wrap {
    background-color: #fff;
    box-shadow: 2px 3px 11px rgba(0, 0, 0, 0.22);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s ease;
}
.boxcta-wrap .inner-info {
    padding: 0 45px 0;
}
.boxcta-wrap .inner-info .excerpt {
    max-width: 365px;
}
.boxcta-wrap .boxcta-btm {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px 10px;
    margin: 18px 30px 35px 45px;
}
.boxcta-btm .btn-theme {
    /*width: 177px;*/
    min-height: 37px;
    padding: 6px 30px;
    font-family: var(--f-Montserrat);
}
.top-overlap {
    position: relative;
    z-index: 1;
}
.afunc-bx .info-inner p,
.lblog-excerpt {
    max-width: 400px;
}
.lblog-excerpt,
.excerpt-short {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-author-date {
    font-size: var(--f-fs-font-15);
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 4px 20px;
    flex-wrap: wrap;
}
.sfaq-wrap .container {
    max-width: 1090px
}
.accordion-item:not(:last-child) {
    margin-bottom: 16px;
}
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button {
    border-radius: 0;
}
.accordion-button {
    font-size: var(--f-fs-font-20);
    line-height: var(--f-fs-font-22);
    font-weight: var(--f-fw-bold);
    padding: 16px;
}
.accordion-item {
    border: 1px solid #DDE1E6;
}
.accordion-item:not(:first-of-type) {
    border-top: 1px solid #DDE1E6;
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--color-secondary);
}
.accordion-button::after {
    width: 15px;
    height: 15px;
    background-size: auto;
    transition: all 0.5s;
}
.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M8.90039 6.3999V1.3999C8.90039 1.13469 8.79503 0.880332 8.6075 0.692796C8.41996 0.505259 8.16561 0.399902 7.90039 0.399902C7.63517 0.399902 7.38082 0.505259 7.19328 0.692796C7.00575 0.880332 6.90039 1.13469 6.90039 1.3999V6.3999H1.90039C1.63517 6.3999 1.38082 6.50526 1.19328 6.6928C1.00575 6.88033 0.900391 7.13469 0.900391 7.3999C0.900391 7.66512 1.00575 7.91947 1.19328 8.10701C1.38082 8.29455 1.63517 8.3999 1.90039 8.3999H6.90039V13.3999C6.90039 13.6651 7.00575 13.9195 7.19328 14.107C7.38082 14.2945 7.63517 14.3999 7.90039 14.3999C8.16561 14.3999 8.41996 14.2945 8.6075 14.107C8.79503 13.9195 8.90039 13.6651 8.90039 13.3999V8.3999H13.9004C14.1656 8.3999 14.42 8.29455 14.6075 8.10701C14.795 7.91947 14.9004 7.66512 14.9004 7.3999C14.9004 7.13469 14.795 6.88033 14.6075 6.6928C14.42 6.50526 14.1656 6.3999 13.9004 6.3999H8.90039Z" fill="%2321272A"/></svg>');
}
.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15" fill="none"><path d="M1.90039 6.3999C1.63517 6.3999 1.38082 6.50526 1.19328 6.6928C1.00575 6.88033 0.900391 7.13469 0.900391 7.3999C0.900391 7.66512 1.00575 7.91947 1.19328 8.10701C1.38082 8.29455 1.63517 8.3999 1.90039 8.3999H13.9004C14.1656 8.3999 14.42 8.29455 14.6075 8.10701C14.795 7.91947 14.9004 7.66512 14.9004 7.3999C14.9004 7.13469 14.795 6.88033 14.6075 6.6928C14.42 6.50526 14.1656 6.3999 13.9004 6.3999H1.90039Z" fill="%23009999"/></svg>');
}
.accordion-button:focus {
    box-shadow: none;
    border-color: #DDE1E6;
}
.accordion-body {
    padding: 5px 16px 15px;
}
.accordion-body p + p {
    margin-top: 13px;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}
.faq-wrap .faq-inner:first-child {
    padding-top: 85px;
}
.faq-wrap .faq-inner {
    padding: 50px 0;
}
.faq-wrap .faq-inner:nth-child(odd) {
    background-color: var(--color-f9f9f9);
}
.my-neg-72 {
    margin: -72px 0;
}
.lsp-wrap {
    margin: 72px 0 150px;
}
.lsp-wrap .btn-theme {
    width: 255px;
}
.hero-inner.mng-app {
    background-position: top center;
}
.cta-inside .btn-theme {
    min-width: 215px;
    min-height: 44px;
}
.email-call-wrap .wp-block-column {
    width: fit-content;
    flex-basis: auto !important;
    flex-grow: inherit !important;
}
.email-call-wrap {
    width: 1060px;
    max-width: 100%;
    justify-content: space-between;
}
.single-top {
    padding: 220px 0 300px;
    background: linear-gradient(90deg, #03D7AF 0%, #0097D9 100%);
    background-image: url('../img/grauer-hintergrund-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-subheading {
    font-size: var(--f-fs-font-42);
    font-weight: var(--f-fw-normal);
}
.content-wrap :is(.thumb-img, .entry-content) {
    max-width: 810px;
}
.content-wrap .thumb-img img {
    max-width: 100%;
    height: auto;
}
.entry-content p {
    margin-bottom: 16px;
}
.content-wrap h2.wp-block-heading {
    font-size: var(--f-fs-font-42);
    font-weight: var(--f-fw-bold);
    line-height: var(--f-fs-font-46);
    margin-bottom: 20px;
}
.content-wrap .wp-block-image {
    margin: 35px 0;
}
.content-wrap .wp-block-column .wp-block-image {
    margin: 20px 0 11px;
}
.content-wrap .wp-block-columns {
    gap: 20px;
}
.btm-nav .nav-links {
    max-width: 810px;
    display: flex;
    justify-content: space-between;
}
.btm-nav .nav-links a {
    color: var(--color-secondary);
    font-weight: var(--f-fw-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}
.btm-nav .nav-links a i {
    font-size: var(--f-fs-font-20);
    font-weight: 500;
}
.btm-nav .nav-subtitle {
    line-height: 0;
}
.bright-sidebar {
    background-color: var(--color-white);
    box-shadow: 4px 4px 16.6px rgba(0, 0, 0, 0.25);
    padding: 20px;
    margin-top: 90px;
}
.cat-top {
    padding: 230px 0 135px;
}
.com-sidebar h3 {
    font-size: var(--f-fs-font-24);
    line-height: var(--f-fs-font-26);
    font-weight: var(--f-fw-bold);
    margin-bottom: 30px;
}
.com-content .h4title {
    color: var(--color-secondary);
    font-size: var(--f-fs-font-24);
    line-height: var(--f-fs-font-26);
    font-weight: var(--f-fw-bold);
    margin-bottom: 30px;
}
.com-content {
    background-color: var(--color-white);
    box-shadow: 4px 4px 14.5px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    padding: 40px;
    margin-left: -50px;
}
.com-content ul {
    list-style-type: disc;
    padding: 0 0 0 20px;
}
.com-content strong {
    font-size: 17px;
    font-weight: 700;
}
.com-sidebar {
    padding-right: 45px;
}
.sidebar-nav {
    max-height: 862px;
    overflow-y: auto;
    overflow-x: hidden;
}
.sidebar-nav > li {
    position: relative;
    padding-left: 20px;
}
.sidebar-nav > li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #21272A;
    border-radius: 100%;
    top: 7px;
    left: 0;
}
.sidebar-nav > li + li {
    margin-top: 15px;
}
.sidebar-nav > li > a {
    font-size: var(--f-fs-font-18);
    line-height: var(--f-fs-font-20);
    font-weight: var(--f-fw-bold);
}
.sidebar-nav li {
    /*position: relative;*/
}
.sidebar-nav li a {
    position: relative;
    display: inline-block;
}
.sidebar-nav li a span {
    /*padding-right: 20px;*/
}
.sidebar-nav .has-children > a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-size: 15px;
    line-height: 12px;
    font-weight: 600;
    margin-left: 10px;
    position: absolute;
    top: 5px;
    right: 0;
    transition: transform 0.2s ease;
}
.sidebar-nav .has-children.open > a::after {
    transform: rotate(90deg);
}
.sidebar-nav .children li a::after {
    top: 5px;
}
.sidebar-nav  li a i {
    display: none;
}
.sidebar-nav .children {
    display: none;
    margin-top: 10px;
    margin-left: 20px;
}
.sidebar-nav .children.open {
    display: block;
}
.sidebar-nav .children li + li {
    margin-top: 10px;
}
.sidebar-nav li a:hover,
.sidebar-nav .active-nav a,
.sidebar-nav .has-children.open > a {
    color: var(--color-secondary);
}
.sidebar-nav > li.has-children.open:before {
    background-color: var(--color-secondary);
}
.checkbox-wrap .checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.checkbox-wrap .checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.checkbox-wrap .checkbox .checkmark {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-white);
    border-radius: 6px;
    outline: 1px solid #98A2B3;
    transition: all 0.2s ease;
}
.checkbox-wrap .checkbox:hover .checkmark {
    background: #f4f4f5;
    transition: all 0.2s ease;
}
.checkbox-wrap .checkbox input:checked ~.checkmark {
    outline: 1px solid var(--color-secondary);
}
.checkbox-wrap .checkbox .checkmark::after {
    position: absolute;
    top: 4.5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    content: "";
    background: url(../img/icons/check-mark.svg);
    width: 12px;
    height: 9px;
    opacity: 0;
    transition: all 0.2s ease;
}
.checkbox-wrap .checkbox input:checked~.checkmark::after {
    opacity: 1;
    transition: all 0.2s ease;
}
.checkbox-wrap {
    width: fit-content;
}
.hbox {
    background: var(--color-white);
    box-shadow: 3px 4px 13px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}
.hbox .img-wrap {
    max-width: 277px;
    min-width: 277px;
}
.hbox .img-wrap img {
    height: 100%;
    object-fit: cover;
}
.hbox .bx-info {
    width: calc(100% - 277px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
}
.hbox + .hbox {
    margin-top: 35px;
}
.hbox .info-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.hbox .ttl-wrap {
    min-width: 280px;
}
.hbox .excerpt {
    max-width: 583px;
}
.hbox .checkbox-wrap {
    position: absolute;
    top: 20px;
    right: 20px;
}
.ebook-btm {
    margin-top: 120px;
    padding: 50px;
}
#selected-list li {
    padding: 20px 0;
    font-size: var(--f-fs-font-18);
    line-height: var(--f-fs-font-20);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000;
}
#selected-list li:last-child {
    margin-bottom: 50px;
}
#selected-list li .remove-item {
    cursor: pointer;
}
#selected-list li .remove-item:hover {
    color: red;
}
.catw-blog-bx {
    border: 1px solid #dde1e6;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-white);
    transition: all 0.5s ease;
}
.catw-blog-bx .bx-info {
    padding: 25px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.catw-blog-bx .lblog-excerpt {
    -webkit-line-clamp: 2;
}
.cat-link {
    margin-top: 40px;
}
.cat-link .btn-theme {
    font-size: var(--f-fs-font-20);
    letter-spacing: 0.5px;
}
.catg-blog-wrap .row:not(:last-child) .cat-link {
    margin-bottom: 100px;
}
.pagination:empty {
    display: none;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: inherit;
}
.pagination .page-numbers {
    display: inline-block;
    font-size: 16px;
    border: 1px solid var(--color-secondary);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}
.pagination .page-numbers:hover {
    background-color: var(--color-secondary);
    color: #fff;
}
.pagination .current {
    background-color: var(--color-secondary);
    color: #fff;
    font-weight: 500;
}
.pagination .next,
.pagination .prev {
    font-weight: 600;
}
.pagination .next:hover,
.pagination .prev:hover {
    background-color: var(--color-secondary);
}
.pagination .nav-links {
    display: flex;
    gap: 10px;
}
.blog-slider .slick-list {
    padding-left: 0 !important;
}
.blog-slider .slick-arrow i {
    color: var(--color-black);
}
.latest-post-item + .latest-post-item {
    margin-top: 15px;
}
.latest-post-thumb img {
    border-radius: 5px;
}
.latest-post-item a {
    text-decoration: none;
    font-weight: 500;
}
.form-iframe,
.modal-body iframe {
    width: 100%;
    height: calc(100vh - 200px);
}
.ub-box .text-18 {
    max-width: 493px;
}
.ub-list {
    gap: 40px 0;
}
.ub-box img {
    width: 40px;
    height: 40px;
}
:is(.sec-info, .accordion-body, .wpcf7, .post-content, .entry-content) a:not([class]) {
    color: var(--color-secondary);
}
:is(.sec-info, .accordion-body, .wpcf7, .post-content, .entry-content) a:not([class]):hover {
    color: var(--color-primary);
}
.img-height {
    display: inline-block;
    width: 100%;
}
.img-height img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.wp-block-list {
    list-style-type: disc;
    padding: 0 0 0 20px;
}
.blog-title a {
    color: var(--color-heading);
}
.blog-title a:hover {
    color: var(--color-primary);
}
.catbtn-hide .cat-link {
    display: none;
}
.hero-inner.heropb-215 {
    padding-bottom: 215px;
}
.mtn-100 {
    margin-top: -100px;
}
/*Responsive Start*/
@media (min-width: 1090px) {
    .modal-dialog {
        max-width: 1075px;
    }
}
@media only screen and (min-width: 992px) {
    .afunc-item {
        width: 40.20%;
    }
}
@media only screen and (min-width: 768px) {
    .bx-wrap:hover,
    .boxcta-wrap:hover {
        transform: translateY(-10px);
    }
}
@media only screen and (max-width: 1280px) {
    .top-left {
        left: -12px;
        top: -12px;
    }
    .top-right {
        right: -12px;
        top: -12px;
    }
    .bottom-left {
        left: -12px;
        bottom: -12px;
    }
    .bottom-right {
        right: -12px;
        bottom: -12px;
    }
}
@media only screen and (max-width: 1199px) {
    .md\:py-70 {
        padding: 70px 0;
    }
    .py-100 {
        padding: 70px 0;
    }
    .hbox .bx-info {
        padding: 0 30px;
    }
    .cat-top {
        padding: 200px 0 100px;
    }
}
@media only screen and (max-width: 1025px) {
    .lsp-wrap {
        margin: 72px 0 50px;
    }
    .com-content {
        margin-left: -22px;
    }
    .com-content {
        padding: 30px;
    }
    .com-sidebar {
        padding-right: 15px;
    }
}
@media only screen and (max-width: 991px) {
    .md\:py-50 {
        padding: 50px 0;
    }
    .main-wrap {
        padding-top: 54px;
    }
    .boxcta-wrap .inner-info {
        padding: 0 30px 0;
    }
    .boxcta-wrap .boxcta-btm {
        margin: 18px 30px 18px 30px;
    }
    .bright-sidebar {
        margin: 50px 0;
    }
    .com-sidebar {
        margin-bottom: 40px;
    }
    .com-content {
        margin-left: 0;
    }
    .hbox .info-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .hbox .bx-info {
        padding: 30px 15px 15px 15px;
    }
    .catg-blog-wrap .row:not(:last-child) .cat-link {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 767px) {
    .md\:py-30 {
        padding: 30px 0;
    }
    .py-100 {
        padding: 50px 0;
    }
    .py-80 {
        padding: 50px 0;
    }
    .py-60 {
        padding: 50px 0;
    }
    .pt-m-0 {
        padding-top: 0 !important;
    }
    .main-wrap {
        padding-top: 39px;
    }
    .top-title {
        font-size: var(--f-fs-font-15);
        line-height: var(--f-fs-font-15);
    }
    .text-18 {
        font-size: var(--f-fs-font-16);
        line-height: var(--f-fs-font-22);
    }
    .top-left {
        left: -10px;
        top: -10px;
    }
    .top-right {
        right: -10px;
        top: -10px;
    }
    .bottom-left {
        left: -10px;
        bottom: -10px;
    }
    .bottom-right {
        right: -10px;
        bottom: -10px;
    }
    .gap-sm-40 {
        gap: 40px 0;
    }
    .gap-sm-50 {
        gap: 50px 0;
    }
    .btn-theme {
        min-height: 45px;
    }
    .btn-wrap .btn-theme {
        font-size: var(--f-fs-font-15);
        line-height: var(--f-fs-font-18);
    }
    .m-order-2 {
        order: 2;
    }
    .btn-wrap .btn-theme {
        margin: 0 auto;
    }
    .bx-wrap .bx-info {
        padding: 10px 10px 15px;
    }
    .gap-y-30 {
        gap: 20px 0;
    }
    .my-neg-72 {
        margin: -55px 0 0;
    }
    .history {
        padding-bottom: 0;
    }
    .content-wrap .wp-block-columns {
        gap: 0;
    }
    .btm-nav .nav-links a {
        gap: 10px;
        flex-direction: column;
        align-items: self-start;
        line-height: 15px;
    }
    .btm-nav .nav-links .nav-next a {
        align-items: flex-end;
        flex-direction: column-reverse;
        text-align: right;
    }
    .single-top {
        padding: 145px 0 145px;
    }
    .blog-subheading {
        font-size: var(--f-fs-font-24);
    }
    .hbox .img-wrap {
        max-width: 168px;
        min-width: 168px;
    }
    .hbox .bx-info {
        width: calc(100% - 168px);
    }
    :is(.hbox, .ebook-btm) .heading-4 {
        font-size: var(--f-fs-font-18);
        line-height: var(--f-fs-font-20);
    }
    .hbox .text-18 {
        font-size: var(--f-fs-font-15);
        line-height: var(--f-fs-font-22);
    }
    .ebook-btm {
        margin-top: 50px;
        padding: 30px 15px;
    }
    #selected-list li {
        padding: 15px 0;
    }
    .hbox .ttl-wrap {
        min-width: auto;
    }
    .catg-blog-wrap .container {
        padding-right: 12px;
    }
    .cat-link {
        margin-top: 70px;
    }
    .cat-top {
        padding: 110px 0 80px;
    }
    .hero-inner.heropb-215 {
        padding-bottom: 160px;
    }
    .mtn-100 {
        margin-top: -80px;
    }
}
@media only screen and (max-width: 675px) {
    .container {
        padding: 0px 16px;
    }
    .proc-container .btn-wrap .btn-theme {
        width: calc(100% - 18px);
    }
    .btn-theme {
        padding: 10px 10px;
    }
}
@media only screen and (max-width: 575px) {
    .boxcta-btm .btn-theme {
        width: 100%;
        padding: 6px 20px;
    }
    .btn-submit .wpcf7-submit {
        width: 100%;
    }
    .fqf-wrap .img-wrap {
        max-width: 260px;
        margin: 0 auto;
    }
    .lsp-wrap .btn-theme {
        width: 100%;
    }
}
@media only screen and (max-width: 375px) {
    .boxcta-wrap .inner-info {
        padding: 0 15px 0;
    }
    .boxcta-wrap .boxcta-btm {
        margin: 15px 15px 15px 15px;
    }
}