.loader-container {
    position: fixed;
    display: flex;
    place-items: center;
    height: 100vh;
    background-color: var(--loader-bg-color);
    left: 0;
    right: 0;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 20px;
    color: #fff;
}


.loader {
    --loader-part-size: 24px;
    --loader-size: calc(var(--loader-part-size) * 3);
    position: relative;
    width: var(--loader-size);
    height: var(--loader-size);

    &.hidden {
        display: none;
    }

    span {
        position: absolute;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;

        width: var(--loader-part-size);
        height: var(--loader-part-size);

        background-color: var(--loader-color);

        transform-origin: center center;

        animation: main 6s ease infinite, fading 6s ease infinite;

        &:nth-child(1) {
            --translationValue: calc(var(--loader-part-size) / 4),
                calc(var(--loader-part-size) / 4);
            --translationValueWhenAssebled: var(--loader-part-size), 0px;
            --translationBeforeDisassembling: calc(var(--loader-part-size) / 4),
                calc(var(--loader-part-size) / 4 * -1);

            top: 0;
            left: var(--loader-part-size);

            animation-delay: 0s, 0.2s;
        }

        &:nth-child(2) {
            --translationValue: calc(var(--loader-part-size) / 4),
                calc(var(--loader-part-size) / 4 * -1);
            --translationValueWhenAssebled: 0px, calc(var(--loader-part-size) * -1);
            --translationBeforeDisassembling: calc(var(--loader-part-size) / 4 * -1),
                calc(var(--loader-part-size) / 4 * -1);

            top: var(--loader-part-size);
            left: 0;
        }

        &:nth-child(3) {
            --translationValue: calc(var(--loader-part-size) / 4 * -1),
                calc(var(--loader-part-size) / 4);
            --translationValueWhenAssebled: 0px, var(--loader-part-size);
            --translationBeforeDisassembling: calc(var(--loader-part-size) / 4),
                calc(var(--loader-part-size) / 4);

            top: var(--loader-part-size);
            right: 0;

            animation-delay: 0s, 0.4s;
        }

        &:nth-child(4) {
            --translationValue: calc(var(--loader-part-size) / 4 * -1),
                calc(var(--loader-part-size) / 4 * -1);
            --translationValueWhenAssebled: calc(var(--loader-part-size) * -1), 0px;
            --translationBeforeDisassembling: calc(var(--loader-part-size) / 4 * -1),
                calc(var(--loader-part-size) / 4);

            bottom: 0;
            left: var(--loader-part-size);

            animation-delay: 0s, 0.6s;
        }
    }
}

.loader-container.hidden {
    display: none;
}

@keyframes fading {
    0% {
        opacity: 1;
    }

    8% {
        opacity: 0.2;
    }

    16.6%,
    33.2% {
        opacity: 1;
    }

    41.6% {
        opacity: 0.2;
    }

    50%,
    66.6% {
        opacity: 1;
    }

    74.9% {
        opacity: 0.2;
    }

    83.2%,
    100% {
        opacity: 1;
    }
}

@keyframes main {

    0%,
    25% {
        transform: rotate(0) translate(0, 0);
    }

    33.3%,
    58.3% {
        transform: rotate(45deg) translate(var(--translationValue));
    }

    62.45% {
        transform: rotate(90deg) translate(var(--translationValueWhenAssebled));
    }

    66.6%,
    91.6% {
        transform: rotate(135deg) translate(var(--translationBeforeDisassembling));
    }

    100% {
        transform: rotate(180deg) translate(0, 0);
    }
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

.site-header {
    width: 100%
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0
}

a {
    color: var(--adkh-link-text-color);
    text-decoration: none
}

a:hover {
    color: var(--adkh-link-hover-text-color)
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}
.adalatkhane-breadcrumb {
    overflow-x: auto;     
    white-space: nowrap;  
}

.breadcrumb-list {
    padding: 0;
    margin: 0;
    gap: 5px;
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: nowrap; 
}

li.breadcrumb-item.active {
    color: var(--adkh-primary-color);
}

.adalatkhane-breadcrumb::-webkit-scrollbar {
    display: none;
}
.adalatkhane-breadcrumb {
    -ms-overflow-style: none;  
    scrollbar-width: none;     
}

span.page-numbers.current {
    background: var(--adkh-primary-color);
    color: #fff
}

.page-numbers {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--adkh-primary-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--adkh-primary-color);
    transition: all 300ms ease
}

.page-numbers:hover {
    background: var(--adkh-primary-color);
    color: #fff
}

a.prev.page-numbers {
    transform: rotate(180deg)
}

a.next.page-numbers svg path,
a.prev.page-numbers svg path {
    transition: all 300ms ease
}

a.next.page-numbers:hover svg path,
a.prev.page-numbers:hover svg path {
    stroke: #fff
}

nav.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px
}

a.next.page-numbers,
a.prev.page-numbers {
    width: 45px
}

.consultation-form .row input,
.consultation-form .row select,
.consultation-form .row option,
.consultation-form textarea,
.question-form .row input,
.question-form .row select,
.question-form .row option,
.question-form textarea {
    width: 100%;
    background: rgb(250 248 244);
    border: none;
    padding: 12px;
    text-align: right;
    border-radius: var(--adkh-button-border-radius);
    font-family: inherit
}

.consultation-form textarea,
.question-form textarea {
    height: 160px
}

.consultation-form .row input:focus,
.consultation-form textarea:focus,
.consultation-form .row input:focus-visible,
.consultation-form textarea:focus-visible,
.question-form .row input:focus,
.question-form textarea:focus,
.question-form .row input:focus-visible,
.question-form textarea:focus-visible {
    outline: 2px solid var(--adkh-primary-color)
}

.consultation-form .row p {
    width: 30%;
    padding: 0;
    margin: 0
}

.question-form .row p {
    width: 100%;
    padding: 0;
    margin: 0
}

.consultation-form .row,
.question-form .row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0
}

.consultation-form,
.question-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    padding: 24px;
    border-radius: var(--adkh-border-radius)
}

.consultation-form h3,
.question-form h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px
}

#consultation-form-submit {
    float: left;
    background: #fff;
    border: 1px solid var(--adkh-primary-color);
    outline: none;
    border-radius: var(--adkh-button-border-radius);
    display: flex;
    flex-direction: row-reverse;
    padding: 0 10px;
    cursor: pointer;
    align-items: center
}

.consultation-form [type="submit"],
.question-form-wrapper [type="submit"] {
    background: transparent;
    border: none;
    outline: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--adkh-primary-color);
    font-family: inherit;
    cursor: pointer
}

.wpcf7-spinner {
    display: none
}

.consultation-form-wrapper,
.question-form-wrapper {
    border-radius: var(--adkh-border-radius);
    padding: 2px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .08);
    transition: transform 0.8s ease;
    perspective: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.consultation-form-wrapper::before,
.consultation-form-wrapper::after,
.question-form-wrapper::before,
.question-form-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--adkh-border-radius);
    backface-visibility: hidden;
    transition: transform 0.8s ease;
}

.consultation-form-wrapper::before,
.question-form-wrapper::before {
    background-image: linear-gradient(180deg, var(--adkh-border-color-from) 0%, var(--adkh-border-color-to) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    transform: rotateY(0deg);
}

.consultation-form-wrapper::after,
.question-form-wrapper::after {
    background-image: linear-gradient(0deg, var(--adkh-border-color-from) 0%, var(--adkh-border-color-to) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -2;
    transform: rotateY(-90deg);
}

.consultation-form-wrapper:hover::before,
.question-form-wrapper:hover::before {
    transform: rotateY(90deg);
}

.consultation-form-wrapper:hover::after,
.question-form-wrapper:hover::after {
    transform: rotateY(0deg);
}


.adkh-login,
.adkh-register,
.adkh-reset-password {
    border-radius: var(--adkh-border-radius);
    padding: 1.5px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .08);
    width: 850px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    perspective: 800px;
    position: relative;
    overflow: hidden;
}



.adkh-login::before,
.adkh-login::after,
.adkh-register::before,
.adkh-register::after,
.adkh-reset-password::before,
.adkh-reset-password::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--adkh-border-radius);
    backface-visibility: hidden;
    transition: transform 0.8s ease;
}

.adkh-login::before,
.adkh-register::before,
.adkh-reset-password::before {
    background-image: linear-gradient(180deg, var(--adkh-border-color-from) 0%, var(--adkh-border-color-to) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    transform: rotateY(0deg);
}

.adkh-login::after,
.adkh-register::after,
.adkh-reset-password::after {
    background-image: linear-gradient(0deg, var(--adkh-border-color-from) 0%, var(--adkh-border-color-to) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -2;
    transform: rotateY(-90deg);
}

.adkh-login:hover::before,
.adkh-register:hover::before,
.adkh-reset-password:hover::before {
    transform: rotateY(90deg);
}

.adkh-login:hover::after,
.adkh-register:hover::after,
.adkh-reset-password:hover::after {
    transform: rotateY(0deg);
}


.header-bg {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: -14px;
    z-index: 10;
    position: relative;
}

.adkh-login-wrapper,
.adkh-register-wrapper,
.adkh-reset-password-wrapper {
    width: 100%;
    padding: 40px;
    background: #fff;
    border-radius: var(--adkh-border-radius);
    display: flex;
    align-items: center
}

.adkh-login h3,
.adkh-register h3,
.adkh-reset-password h3 {
    margin-bottom: .5rem;
    color: rgb(73, 73, 73);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px
}

.adkh-login img,
.adkh-register img,
.adkh-reset-password img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%)
}

.adkh-login p,
.adkh-register p,
.adkh-reset-password p {
    color: rgba(58, 70, 84, 1);
    margin-bottom: 1rem;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px
}

.adkh-login form[method="post"],
.adkh-register form[method="post"],
.adkh-reset-password form[method="post"] {
    width: 80%
}

.adkh-login label[for="adkh_user_login"],
.adkh-login label[for="adkh_user_pass"],
.adkh-register label[for="adkh_user_pass"],
.adkh-register label[for="adkh_user_phone"],
.adkh-register label[for="adkh_user_register"],
.adkh-reset-password label[for="adkh_reset_login"] {
    color: rgba(58, 70, 84, 1);
    font-size: 15px;
    font-weight: 500;
    line-height: 30px
}

.adkh-login .form-group,
.adkh-register .form-group,
.adkh-reset-password .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 15px 0;
    position: relative
}

.adkh-login .form-group input,
.adkh-register .form-group input,
.adkh-reset-password .form-group input {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: rgb(250, 248, 244);
    outline: none
}

.adkh-login .form-group svg,
.adkh-register .form-group svg,
.adkh-reset-password .form-group svg {
    position: absolute;
    bottom: 7px;
    z-index: 1;
    left: 15px
}

.adkh-register .form-group svg {
    bottom: 8px
}

.adkh-login .form-group.password-group svg,
.adkh-register .form-group.password-group svg {
    bottom: 12px;
    cursor: pointer
}

.adkh-register .form-group.phone-group svg,
.adkh-reset-password .form-group svg {
    bottom: 12px
}

.adkh-login .form-group input:focus,
.adkh-login .form-group input:focus-visible,
.adkh-register .form-group input:focus,
.adkh-register .form-group input:focus-visible,
.adkh-reset-password .form-group input:focus-visible,
.adkh-reset-password .form-group input:focus {
    outline: 2px solid var(--adkh-primary-color)
}

.adkh-login .form-remember,
.adkh-register .form-remember {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 5px;
    width: 50%;
    padding: 0
}

.adkh-login .form-remember label,
.adkh-register .form-remember label {
    font-size: 14px;
    font-weight: 400
}

.adkh-register .form-remember {
    width: 100%
}

.adkh-login .form-links,
.adkh-register .form-links,
.adkh-reset-password .form-links {
    margin-bottom: 1rem;
    width: 50%;
    padding: 0;
    text-align: end
}

.adkh-login .form-links a,
.adkh-register .form-links a,
.adkh-reset-password .form-links a {
    color: var(--adkh-secondary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline !important
}

.adkh-login .adkh-login-button,
.adkh-register .adkh-register-button,
.adkh-reset-password .adkh-login-button {
    background-color: #fff;
    border: 1px solid var(--adkh-primary-color);
    border-radius: 10px;
    cursor: pointer;
    display: block;
    width: 22%;
    display: flex;
    align-items: center;
    position: relative
}

.adkh-register .adkh-register-button {
    width: 27%
}

.adkh-reset-password .adkh-login-button {
    width: 45%
}

.adkh-login .adkh-login-button input,
.adkh-register .adkh-register-button input,
.adkh-login-button button[name="adkh_reset_submit"],
.adkh-login-button button[name="adkh_do_reset"] {
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    background: transparent;
    color: var(--adkh-primary-color);
    border: none;
    outline: none;
    cursor: pointer;
    text-align: right;
    padding: 7px 15px
}

.adkh-login .adkh-login-button svg,
.adkh-register .adkh-register-button svg {
    position: absolute;
    left: 15px
}

.adkh-login .register-prompt a,
.adkh-register .register-prompt a,
.adkh-reset-password .register-prompt a {
    font-weight: bold;
    text-decoration: underline
}

.adkh-reset-password .register-prompt {
    margin: 10px 0 -20px 0 !important
}

.adkh-login .adkh-login-error,
.adkh-register .adkh-register-error,
.adkh-reset-password .adkh-reset-error,
.adkh-reset-password .adkh-reset-success {
    font-size: 15px;
    text-align: justify;
    line-height: 25px;
    margin: 25px 0
}

.login-page-wrapper,
.register-page-wrapper,
.reset-password-page-wrapper {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    margin: 100px 0
}

.adkh-login .col-right,
.adkh-register .col-right,
.adkh-reset-password .col-right {
    width: 70%
}

.adkh-checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center
}

.adkh-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    user-select: none
}

.adkh-checkbox-wrapper input[type="checkbox"] {
    display: none
}

.adkh-reset-password .register-prompt a {
    color: var(--adkh-secondary-color)
}

.adkh-reset-password .adkh-login-button button {
    display: flex;
    gap: 5px;
    justify-content: center
}

.adkh-checkbox-box {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 4px;
    margin-left: 8px;
    position: relative;
    transition: all .2s ease;
    background: rgb(250, 248, 244)
}

.adkh-checkbox-wrapper input[type="checkbox"]:checked+.adkh-checkbox-label .adkh-checkbox-box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.adkh-404 {
    margin: 100px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: var(--adkh-border-radius);
    padding: 100px;
    gap: 25px
}

.back-to-home {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: var(--adkh-primary-color);
    border-radius: var(--adkh-button-border-radius);
    transition: all 300ms;
    border: 2px solid var(--adkh-primary-color);
    gap: 5px
}

.back-to-home:hover {
    color: var(--adkh-primary-color);
    background: #fff
}

.back-to-home svg path {
    transition: all 300ms
}

.back-to-home:hover svg path {
    stroke: var(--adkh-primary-color)
}

.adkh-breadcrump {
    margin: 40px 0
}

.adkh-page-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700
}

.adkh-search-card {
    width: 48.5%;
    background: linear-gradient(180deg, #BAB69E 0%, rgba(186, 182, 158, 0) 100%);
    border-radius: var(--adkh-border-radius);
    padding: 1.5px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .08)
}

.adkh-search-card-wrapper {
    background: #fff;
    padding: 24px;
    transition: background .3s ease;
    border-radius: var(--adkh-border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px
}

.adkh-search-card .thumbnail img {
    width: 100%;
    min-height: 163px;
    height: 100%;
    border-radius: var(--adkh-border-radius);
    object-fit: cover;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all 300ms
}

.adkh-search-card:hover .thumbnail img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0)
}

.adkh-search-card .search-content p {
    font-size: 15px;
    line-height: 27px;
    font-weight: 400;
    text-align: justify
}

.adkh-search-card .search-content .sperator {
    width: 100%;
    height: 1px;
    background: #FAF8F4;
    display: block
}

.adkh-search-card .search-content .post-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    width: fit-content
}

.adkh-search-card .search-content .read-more {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--adkh-primary-color);
    color: var(--adkh-primary-color);
    border-radius: var(--adkh-button-border-radius);
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    flex-direction: row;
    align-content: center;
    transition: all 300ms
}

.adkh-search-card .search-content .read-more:hover {
    background: var(--adkh-primary-color);
    color: #fff
}

.adkh-search-card .search-content .read-more svg path {
    transition: all 300ms
}

.adkh-search-card .search-content .read-more:hover svg path {
    stroke: #fff
}

.adkh-search-card .search-card-title {
    font-size: 18px;
    font-weight: 700px;
    line-height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media screen and (max-width : 768px) {

    .moblie-title .elementor-icon-box-icon {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .consultation-form .row p {
        width: 100%;
    }

    .container {
        width: 100% !important;
    }

    .breadcrumb-list {
        position: relative;
        overflow-x: scroll;
        width: 100vw;
    }

    .adkh-login .adkh-login-button,
    .adkh-register .adkh-register-button,
    .adkh-reset-password .adkh-login-button {
        width: 30%;
    }

    .adkh-login-wrapper,
    .adkh-register-wrapper,
    .adkh-reset-password-wrapper {
        gap: 20px;
        flex-direction: column-reverse;
    }

    .adkh-login,
    .adkh-register,
    .adkh-reset-password {
        width: 100%;
        margin: 0 auto;
    }

    .adkh-login img,
    .adkh-register img,
    .adkh-reset-password img {
        width: 100px;
    }

    .adkh-login .col-left,
    .adkh-register .col-left,
    .adkh-reset-password .col-left {
        width: 100%;
        text-align: center;
    }

    .adkh-login .col-right,
    .adkh-register .col-right,
    .adkh-reset-password .col-right {
        width: 100%;
    }

    .adkh-login form[method="post"],
    .adkh-register form[method="post"],
    .adkh-reset-password form[method="post"] {
        width: 100%;
    }

    .adkh-login .form-links a,
    .adkh-register .form-links a,
    .adkh-reset-password .form-links a {
        font-size: 13px;
    }

    .login-page-wrapper,
    .register-page-wrapper,
    .reset-password-page-wrapper {
        margin: 50px 0;
    }

    .adkh-register .adkh-register-button {
        width: 37%;
    }

    .adkh-reset-password .adkh-login-button {
        width: 100%;
    }

    .adkh-login-wrapper,
    .adkh-register-wrapper,
    .adkh-reset-password-wrapper {
        padding: 35px;
    }

    .adkh-search-card {
        width: 100%;
    }
}

@media screen and (min-width : 768px) and (max-width : 1024px) {


    .adkh-login-wrapper,
    .adkh-register-wrapper,
    .adkh-reset-password-wrapper {
        padding: 35px;
    }

    .adkh-login .adkh-login-button,
    .adkh-register .adkh-register-button,
    .adkh-reset-password .adkh-login-button {
        width: 30%;
    }

    .adkh-login-wrapper,
    .adkh-register-wrapper,
    .adkh-reset-password-wrapper {
        gap: 20px;
        flex-direction: column-reverse;
    }

    .adkh-login,
    .adkh-register,
    .adkh-reset-password {
        width: 100%;
        margin: 0 auto;
    }

    .adkh-login img,
    .adkh-register img,
    .adkh-reset-password img {
        width: 75px;
    }

    .adkh-login .col-left,
    .adkh-register .col-left,
    .adkh-reset-password .col-left {
        width: 100%;
    }

    .adkh-login .col-right,
    .adkh-register .col-right,
    .adkh-reset-password .col-right {
        width: 100%;
    }

    .adkh-login form[method="post"],
    .adkh-register form[method="post"],
    .adkh-reset-password form[method="post"] {
        width: 100%;
    }

    .adkh-login .form-links a,
    .adkh-register .form-links a,
    .adkh-reset-password .form-links a {
        font-size: 13px;
    }

    .login-page-wrapper,
    .register-page-wrapper,
    .reset-password-page-wrapper {
        margin: 50px 0;
    }

    .adkh-register .adkh-register-button {
        width: 37%;
    }

    .adkh-reset-password .adkh-login-button {
        width: 65%;
    }

    .adkh-search-card {
        width: 47.5%;
    }

    .adkh-search-card .thumbnail img {
        min-height: 163px;
        height: 100vh;
        max-height: 163px;
    }
}