@import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --hdr-bg: #ffffff;
    --hdr-border: #eaeef4;
    --text-strong: #0f172a;
    --brand1: #1e3a8a;
    --brand2: #0ea5e9;
    --overlay: rgba(15, 18, 32, .45);
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    color: #595959;
    background: #f8f9fa;
}
a {
    color: #0791BE;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none
}
#loader {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 9999;
}
.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.loader:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid #0791BE;
    border-color: #0791BE transparent #0791BE transparent;
    animation: loader 1.2s infinite;
}
@keyframes loader {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}

._main-container {
    margin-top: 57px;
}

.shadow-soft {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
}
.gradient-text {
    background: linear-gradient(90deg, #0ea5e9, #6366f1, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.form-group {
    margin-bottom: 10px;
}
.form-group label {
    margin-bottom: 3px;
    font-size: 15px;
}
.form-group label.required:after {
    content: ' *';
    color: #ff0000;
}
label.error {
    color: #ff0000;
    font-size: 13px;
    margin: 3px 0 0;
}
.form-group .form-control {
    box-shadow: none;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-size: 16px;
}

.btc-header {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--hdr-bg);
    border-bottom: 1px solid var(--hdr-border);
    box-shadow: 0 2px 12px rgba(2, 6, 23, .04);
}
.btc-header__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.btc-logo {
    display: inline-flex;
    align-items: center;
    gap: .05rem;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: .2px;
    text-decoration: none;
}
.btc-logo__a {
    color: #ef233c
}
.btc-logo__g {
    color: #0b3b91
}
.btc-logo__o {
    color: #06b6d4
}
.btc-logo__dot {
    color: #ef233c;
    margin-left: .15rem
}

.btc-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.btc-nav a {
    position: relative;
    color: var(--text-strong);
    font-weight: 600;
    text-decoration: none;
}
.btc-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--brand1), var(--brand2));
    border-radius: 2px;
    transition: width .25s ease;
}
.btc-nav a:hover::after, .btc-nav .is-active::after {
    width: 100%;
}

.btc-nav .login-btn a {
    padding: .5rem 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand1), var(--brand2));
    color: #fff !important;
    border: 1px solid transparent;
    box-shadow: 0 6px 16px rgba(14, 165, 233, .25);
}
.btc-nav .login-btn a::after {
    display: none
}

.btc-burger {
    display: none;
    background: none;
    border: 0;
    padding: .4rem;
    cursor: pointer;
}
.btc-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111827;
    margin: 5px 0;
    transition: transform .25s, opacity .25s;
}

.btc-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay);
    z-index: 9998;
    display: none
}
.btc-overlay.show {
    display: block
}
.btc-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 88%;
    height: 100dvh;
    background: #fff;
    box-shadow: -12px 0 28px rgba(0, 0, 0, .12);
    transition: right .28s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.btc-drawer.open {
    right: 0;
}
.btc-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem .5rem;
    border-bottom: 1px solid var(--hdr-border);
}
.btc-close {
    font-size: 1.75rem;
    background: none;
    border: 0;
    cursor: pointer;
    color: #111827
}
.btc-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: .5rem
}
.btc-drawer__nav a {
    padding: .85rem .9rem;
    border-radius: 10px;
    color: var(--text-strong);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
/*.btc-drawer__nav a:is(:hover,.is-active) {*/
/*    background: #f3f5f8*/
/*}*/
/*.btc-drawer__nav .login-btn a {*/
/*    text-align: center;*/
/*    margin-top: .25rem*/
/*}*/

.page-header {
    background: #212529;
    padding: 30px 0;
}
.page-header h1 {
    color: #ffffff;
}
.page h1 {
    font-size: 30px;
}
.page ul, .page ol {
    margin: 0 0 0 20px;
}
.page li {
    list-style: inherit;
    line-height: 30px;
}

.elementor-heading-title {
    line-height: inherit !important;
}

.blog-post {
    display: flex;
    background: #ffffff;
    margin-bottom: 30px;
}
.blog-post figure {
    max-width: 250px;
    flex: 1;
    margin-bottom: 0;
}
.blog-post figure img {
    width: 100%;
}
.blog-post .blog-post-content {
    flex: 1;
    padding: 20px 20px 0;
}
.blog-post .blog-post-content h1 {
    font-size: 18px;
}
.blog-post .blog-post-content p {
    font-size: 14px;
    margin: 0;
}
.blog-post-meta {
    margin: 10px 0;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}
.single-blog-post {
    background: #ffffff;
    padding: 20px;
}
.single-post-content h2 {
    font-size: 24px;
}

.sidebar-widget {
    margin-bottom: 30px;
}
.sidebar-widget .wp-block-heading {
    font-size: 20px;
    margin-bottom: 5px;
}
.sidebar-widget ul li {
    border-top: 1px solid #e5e5e5;
}
.sidebar-widget ul li a {
    display: block;
    padding: 10px;
}

.carousel-pagination {
    text-align: center;
}
.carousel-pagination button {
    color: #222222;
    border: 0 none;
    background: transparent;
    font-size: 20px;
}

.fw-500 {
    font-weight: 500;
}
.fw-700 {
    font-weight: 700;
}

.btc-footer {
    background: #0f1220;
    color: #e5e7eb;
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem) 1rem 2rem;
    font-family: "Inter", system-ui, sans-serif;
}
.btc-footer__wrap {
    max-width: 1100px;
    margin: 0 auto;
}
.btc-footer__highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.btc-footer__headline {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
}
.btc-footer__headline .accent {
    background: linear-gradient(90deg, #1e3a8a, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btc-footer__desc {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}
.btc-footer__benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    flex-wrap: wrap;
}
.btc-footer__cta {
    display: inline-block;
    background: linear-gradient(90deg, #0ea5e9, #34d399);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(14, 165, 233, .35);
    margin-bottom: 1.8rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btc-footer__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 165, 233, .45);
}
.btc-footer__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.btc-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: white;
    font-size: 1rem;
    transition: background .3s ease, transform .2s ease;
}
.btc-footer__social a:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
}
.btc-footer__links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.btc-footer__links a {
    color: #cbd5e1;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color .3s ease;
}
.btc-footer__links a:hover {
    color: white;
}
.btc-footer__copy {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

@media (max-width: 991px) {
    .btc-nav {
        display: none
    }
    .btc-burger {
        display: inline-block
    }
    .blog-post {
        display: block;
    }
    .blog-post figure {
        max-width: initial;
    }
}
@media (max-width: 768px) {
    .error-img img {
        width: 100%;
    }
}
