/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap");

/* ---------------- Basic css ------------------ */
html {
    font-size: 0.52083vw;
}

:root {
    scroll-behavior: unset;
    --white: #ffffff;
    --black: #000000;
    --darkblue: #07205d;

    --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
    --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

    --primaryfont: "Heebo", serif;

    --MenuHeight: 8.6rem;
}

img {
    width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none !important;
    transition: 200ms;
    color: inherit;
}

.f-right {
    float: right;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

button {
    background: none;
    border: none;
    outline: none;
    padding: 0;
}

/* body */
body {
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 400;
    color: #525252;
    overflow-x: hidden;
    font-family: var(--primaryfont);
    background: #f3f3f3;
}

.container {
    padding-left: 0;
    padding-right: 0;
}

main {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.figure img,
.figure {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: var(--primaryfont);
    color: var(--darkblue);
}

/* link_text */
.link_text {
    color: #0077ff;
}

a.link_text:hover {
    color: var(--darkblue);
}

.text_darkblue {
    color: var(--darkblue);
}

.border {
    border: 0.1rem solid #07205d66 !important;
}

/* colros */

/* image colros */
.white_img {
    -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
}

.black_img {
    -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
}

.dark_img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(22%) saturate(6163%) hue-rotate(212deg) brightness(94%) contrast(107%);
}

/* Font Weights */
.f_300 {
    font-weight: 300 !important;
}

.f_400 {
    font-weight: 400 !important;
}

.f_500 {
    font-weight: 500 !important;
}

.f_600 {
    font-weight: 600 !important;
}

.f_700 {
    font-weight: 700 !important;
}

.f_800 {
    font-weight: 800 !important;
}

.f_900 {
    font-weight: 900 !important;
}

/* titles */
h1 {
    font-size: 4.8rem;
    line-height: 5.76rem;
}

.title_36 {
    font-size: 3.6rem;
    line-height: 4rem;
}

h2 {
    font-size: 3.2rem;
    line-height: 4.7rem;
}

h4 {
    font-size: 2.4rem;
    line-height: 3.525rem;
}

/* texts */
.text_xl {
    font-size: 2rem;
    line-height: 3.2rem;
}

.text_lg {
    font-size: 1.8rem;
    line-height: 2.6rem;
}

.text_md {
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.text_sm {
    font-size: 1.4rem;
    line-height: 2.2rem;
}

.text_xsm {
    font-size: 1.2rem;
    line-height: 1.4;
}

.text_2xsm {
    font-size: 1rem;
    line-height: 1.21rem;
}

/* -------------- preloader --------------- */
#preloader {
    position: fixed;
    background: var(--darkblue);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999999999999999999;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader3 {
    width: 5rem;
    height: 5rem;
    display: flex;
    padding: 0;
    text-align: left;
}

.loader3 span {
    position: absolute;
    display: inline-block;
    width: 5rem;
    height: 5rem;
    border-radius: 100%;
    background: var(--white);
    -webkit-animation: loader3 1.5s linear infinite;
    animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
    0% {
        transform: scale(0, 0);
        opacity: 0.8;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes loader3 {
    0% {
        transform: scale(0, 0);
        opacity: 0.8;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* -------------- Back to top ------------ */
.back-to-top {
    width: 4.5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    border-radius: 50%;
    background: var(--red);
    z-index: 1000;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top img {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
    width: 1.5rem;
}

.topbtn_hide {
    opacity: 1;
}

/* =========== Buttons ========== */
.button {
    gap: 1.4rem;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    height: 3.9rem;
    border-radius: 10rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.35rem;
    transition: 0.25s ease;
}

.button img {
    width: 2.5rem;
}

.button_darkblue {
    background: #07205d;
    color: #fff;
}

.button_darkblue:hover {
    background: #071842;
}

.button_yellow {
    background: #00b358;
    color: #07205d;
    border: 0.1rem solid #07205d66;
}

.button_yellow:hover {
    background: #07205d;
    color: #fff;
}

.button_yellow:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(127deg) brightness(109%) contrast(107%);
}

.button_lightblue {
    background: #ccdaff;
    color: #07205d;
    border: 0.1rem solid #07205d;
}

.button_lightblue:hover {
    background: #a5b0ce;
}

.buttons {
    gap: 1.7rem;
}

.button_transparenr {
    color: #07205d;
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
    padding: 0;
    position: sticky;
    z-index: 1011;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--darkblue);
    height: var(--MenuHeight);
}

.site_header.sticky_menu {
    box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.site_header .container-fluid {
    padding: 0 3.2rem 0 3.6rem;
}

.logo img {
    width: 32.9rem;
}

.primary_menu {
    gap: 5.2rem;
}

.primary_menu a:hover {
    color: #00b358 !important;
}

.toggled_menu_icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff26;
    border-radius: 10rem;
}

.toggled_menu_icon:hover {
    background: #ffffff16;
}

.toggled_menu_icon img {
    width: 1.4rem;
}

.add_user {
    display: flex;
    color: #fff;
    font-weight: 700;
    gap: 0.9rem;
    height: 4rem;
    padding: 0 2rem;
    background: #ffffff26;
    display: flex;
    align-items: center;
    border-radius: 10rem;
}

.add_user:hover {
    background: #ffffff15;
}

.add_user img {
    width: 2.5rem;
}

/* ================== Hero area =================== */
.hero_area {
    padding-top: 4.4rem;
}

.hero_content > img {
    width: 60.1rem;
}

.hero_content {
    text-align: center;
}

.hero_content p {
    font-size: 3.1rem;
    font-weight: 400;
    line-height: 4rem;
    color: #fff;
    padding: 2.5rem 0 3.3rem;
}

.hero_content p span {
    font-weight: 900;
    color: #00b358;
}

.hero_content h4 {
    color: #f3f3f3;
}

.search_area {
    display: grid;
    grid-template-columns: 28.9rem 28.6rem 28.9rem 41.1rem 12.5rem;
    border-radius: 10rem;
    border: 0.1rem solid #ffffff66;
    margin: 1.1rem 0 4rem;
}

.magni_user {
    width: 12.5rem;
    background: #00b358;
    height: 6.5rem;
    transition: 0.25s ease;
}

.magni_user:hover {
    background: #d1b83c;
}

.magni_user p {
    display: none;
}

.magni_user img {
    width: 3.76rem;
}

.form_control {
    height: 100%;
    width: 100%;
    padding: 0 4rem 0 2.5rem;
    background: #f5f5f554;
    border: none;
    border-right: 0.1rem solid #ffffff66;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.search_area .form_control {
    height: 6.5rem;
}

.form_control::placeholder {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #f3f3f3;
    font-weight: 900;
}

.nice-select:after {
    left: 2.5rem;
    right: auto;
    height: 1rem;
    width: 1rem;
    border-color: #fff;
}

.form_control .current {
    font-weight: 600;
    color: #f3f3f3;
    font-size: 1.6rem;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1;
    text-align: right;
    padding-left: 10px;
}

.full_radius_left {
    border-top-left-radius: 10rem;
    border-bottom-left-radius: 10rem;
}

.full_radius_right {
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
}

.list {
    width: 100%;
    border-radius: 0.4rem !important;
    height: 24rem;
    overflow-y: auto !important;
    background-color: var(--darkblue) !important;
}

.list::-webkit-scrollbar {
    width: 0.7rem;
}

.list::-webkit-scrollbar-track {
    background: rgba(0, 179, 88, 0.1);
}

.list::-webkit-scrollbar-thumb {
    background-color: #00b358;
    border-radius: 1rem;
}

.list li {
    font-size: 2.0rem;
    line-height: 6rem !important;
    min-height: 6rem !important;
    display: flex;
    align-items: center;
    color: #fff;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #17154f;
}

.hero_slider .swiper-scrollbar {
    display: none;
}

/* ============ Hero slider ============= */
.hero_slider {
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.hero_slide {
    padding: 3rem 3.3rem 2.1rem 2.5rem;
    background: #f3f3f3;
    border-radius: 1.5rem;
}

.hero_slide_top .testimonial_icon {
    background: #fff;
    border-radius: 10rem;
}

.hero_slide_top_left_imgs img:not(:nth-child(3)) {
    margin-left: -1rem;
}

.hero_slide_top_left_imgs img:nth-child(1) {
    z-index: 3;
}

.hero_slide_top_left_imgs img {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 25px;
}

.hero_slide_top_left_imgs img:nth-child(2) {
    z-index: 2;
}

.hero_slide_top_left_imgs img:nth-child(3) {
    z-index: 1;
}

.hero_slide_top_left {
    text-align: end;
}

.hero_slide_top_left p {
    line-height: 2.5rem;
    padding-top: 0.7rem;
}

.hero_slide_top {
    padding-bottom: 2rem;
}

.hero_slide_top_part > p {
    padding: 2rem 0 2.4rem;
}

.hero_slide > h2 {
    line-height: 1;
}

.hero_slide .button {
    width: fit-content;
}

.hero_slider .swiper {
    display: grid;
}

.hero_slider .swiper-slide,
.hero_slider .hero_slide {
    height: 100%;
    display: grid;
    align-content: space-between;
    position: relative;
}

/* ================== About area =================== */
.about_area .row {
    margin: 0 -4.4rem;
}

.about_area .row > * {
    padding: 0 4.4rem;
}

.logo2 {
    width: 32.9rem;
}

.about_area .logo2 {
    padding-bottom: 3.8rem;
}

.about_area {
    padding: 9rem 0 7rem;
}

.magnify_img {
    width: 73.2rem;
    position: absolute;
    left: -7rem;
    top: 0;
}

.z_1 {
    z-index: 1;
}

/* ========= search_area_white ========== */
.search_area_white .form_control {
    background: #fff;
    border-color: #525252;
}

.search_area_white .form_control::placeholder,
.search_area_white .form_control .current {
    color: #525252;
}

.search_area_white .nice-select:after {
    border-color: #525252;
}

.search_area_white {
    border: 0.2rem solid #afafaf;
}

/* ====================== Testimonial area ===================== */

.testimonial_slide {
    padding: 3.8rem 4.2rem 5.8rem 4.2rem;
    background: #fff;
    border: 0.1rem solid #07205d66;
    border-radius: 1.6rem;
    transition: 300ms;
}

.testimonial_slide:hover {
    box-shadow: 0 0.4rem 3rem 0 rgba(7, 32, 93, 0.5);
}

.t_icon img {
    width: 4.2rem;
}

.t_icon {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1rem solid #07205d66;
    border-radius: 10rem;
}

.testimonial_slide .button {
    width: fit-content;
}

.testimonial_icon {
    position: relative;
    width: fit-content;
}

.testimonial_icon p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.1rem;
    padding: 0 1rem;
    border-radius: 10rem;
    height: 2.1rem;
    background: #07205d;
    color: #fff;
    width: fit-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: max-content;
}

.testimonial_icon_white .t_icon {
    background: #fff;
    border-radius: 10rem;
}

.testimonial_icon.v2 > p {
    font-size: 2rem;
    font-weight: 700;
    height: 3rem;
    display: flex;
    align-items: center;
    bottom: -1.9rem;
}

.testimonial_slide h2 {
    padding: 3.7rem 0 1rem;
    line-height: 3.2rem;
}

.testimonial_slide > p {
    padding-bottom: 2rem;
}

/* swipper styles */
.swiper {
    overflow: visible;
    padding-bottom: 3.5rem;
}

.swiper-scrollbar {
    height: 0.5rem !important;
    background: #ccdaff;
    width: 100% !important;
    left: 0 !important;
}

.swiper-scrollbar-drag {
    background: #07205d;
    cursor: grab;
}

.swiper-slide {
    margin-left: 2rem !important;
}

/* ===================== Presentation area ==================== */
.representation_area .row {
    margin: 0 -1rem;
}

.representation_area .row > * {
    padding: 0 1rem;
}

.representation_img .testimonial_icon.v2 {
    width: fit-content;
    position: absolute;
    left: 5.8rem;
    bottom: 10.8rem;
}

.representation_img {
    padding-right: 10rem;
    padding-left: 4.5rem;
}

.representation_img:before {
    background: radial-gradient(
            50% 50% at 50% 50%,
            #ccdaff 0%,
            rgba(204, 218, 255, 0) 100%
    );
    width: 138.8rem;
    height: 75.6rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30rem;
    content: "";
    z-index: -1;
}

/* ===================== Research area ==================== */
.research_slider .button {
    width: fit-content;
    padding: 0 3rem;
}

.research_slider .swiper-slide {
    width: fit-content !important;
    flex-shrink: 100 !important;
    white-space: nowrap;
}

.research_slider .swiper {
    overflow: hidden;
}

.research_area {
    padding: 11rem 0 2.6rem;
}

.search_input button {
    width: 12.5rem;
    background: #00b358;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.search_input button:hover {
    background: #e4c738;
}

.search_input button img {
    width: 4.2rem;
}

.search_input {
    display: grid;
    grid-template-columns: 1fr 12.5rem;
    height: 6.5rem;
    border-radius: 10rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin: 3.2rem 0;
}

.search_input input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 4rem;
}

.search_input input::placeholder,
.search_input input {
    color: #525252;
    font-size: 1.6rem;
    font-weight: 600;
}

.research_bottom {
    padding-top: 3rem;
}

.research_img::before {
    background: radial-gradient(
            50% 50% at 50% 50%,
            #ccdaff 0%,
            rgba(204, 218, 255, 0) 100%
    );
    bottom: 4.5rem;
    top: auto;
    transform: translateY(0);
    right: -24.4rem;
    left: auto;
}

.research_img {
    padding: 0;
    padding-right: 4rem;
    padding-left: 3.5rem;
}

.research_area .search_input {
    box-shadow: 0 0.4rem 0.4rem 0 #00000040;
}

.research_slider .swiper-slide {
    margin-left: 0.8rem !important;
}

/* =================== Popular search area ================== */
.popuplar_search_area {
    padding-bottom: 5rem;
}

.popular_img img {
    height: 21.9rem;
    object-fit: cover;
    width: 100%;
}

.popular_info .testimonial_icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3.5rem;
    background: #fff;
    border-radius: 10rem;
    margin-bottom: 2rem;
}

.popular_info > p {
    text-align: center;
}

.popular_info {
    padding: 0 0.8rem 1.7rem 1.3rem;
    min-height: 18rem;
}

.popular {
    border: 0.1rem solid #07205d4d;
    border-radius: 1.5rem;
    background: #e8e8e8;
    overflow: hidden;
    transition: 300ms;
}

.popular:hover {
    background: #fff;
    box-shadow: 0 0.4rem 3rem 0 rgba(7, 32, 93, 0.5);
}

/* ============ Sticky button ============ */
.stickybtn {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    position: fixed;
    bottom: 5.8rem;
    height: 6.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    box-shadow: 0.2rem 0.4rem 0.55rem 0 #07205d33;
    z-index: 99;
    transition: 0.25s ease;
}

.stickybtn.magnify_user p {
    color: #07205d !important;
}

.stickybtn img {
    width: 3.76rem;
}

.magnify_user {
    left: 0;
    padding: 0 2rem;
    gap: 1.7rem;
    background: #00b358;
    border-bottom-right-radius: 10rem;
    border-top-right-radius: 10rem;
    border: 0.1rem solid #07205d4d;
}

.magnify_user:hover {
    background: #d8c14f;
}

.magnify_v_btn {
    right: 0;
    border: 0.1rem solid #07205d66;
    padding: 0 3rem 0 1.5rem;
    color: #00b358;
    background: #07205d;
    border-bottom-left-radius: 10rem;
    border-top-left-radius: 10rem;
    z-index: 1010;
}

.magnify_v_btn:hover {
    background: #091941;
}

.magnify_v_btn img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(99%) saturate(436%) hue-rotate(330deg) brightness(101%) contrast(101%);
}

/* =========================== Footer area ============================== */
.footer_bottom {
    background: #f2f5ff;
}

.footer_boxes {
    display: flex;
    justify-content: space-between;
    gap: 14.2rem;
    padding-left: 13.2rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.footer_box h5 {
    padding-bottom: 4rem;
}

.footer_box ul li a {
    font-weight: 400;
    color: #07205d;
}

.footer_box ul {
    display: grid;
    gap: 2.5rem;
}

.footer_box ul li a:hover {
    color: #00b358;
}

/* ===================== Magnify User ====================== */
.magnify_user_modal .modal-body {
    padding: 0;
}

.magnify_user_modal .modal-dialog {
    max-width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

.magnify_user_modal .modal-content {
    background: linear-gradient(180deg, rgba(7, 32, 93, 0) 0%, #07205d 100%),
    linear-gradient(0deg, rgba(7, 32, 93, 0.85), rgba(7, 32, 93, 0.85));
    border: none;
    border-radius: 0;
}

.form_group {
    border-bottom: 0;
}

.magnify_user_area .search_area {
    margin: 0;
}

.magnify_user_area h4 {
    color: #fff;
}

.magnify_user_area {
    padding: 5rem 0 6.8rem;
}

.form_group:nth-child(1) .form_control {
    border-right: 0 !important;
}

.magnify_user_area .list {
    top: -25.5rem !important;
    height: 24rem;
}

.magnify_user_close {
    width: 4rem;
    height: 4rem;
    background: #596d9e;
    position: fixed;
    left: 12rem;
    bottom: 8rem;
    border-radius: 10rem;
    border: 0.1rem solid #4e5f87;
    transition: 0.25s ease;
}

.magnify_user_close img {
    width: 1.1rem;
}

.magnify_user_close:hover {
    background: #4e5f87;
}

.magnify_user_popup_active .modal-backdrop.fade.show {
    opacity: 0;
}

/* ===================== popup_menu ====================== */
.menu_modal {
    z-index: 1025;
}

.popup_menu_list a img {
    width: 2.5rem;
}

.menu_modal .modal-dialog {
    margin-right: 0;
    margin: 0;
}

.menu_modal .modal-content {
    background: #000d2eb2;
    box-shadow: -1.1rem 0.4rem 2.26rem 0 #00000042;
    backdrop-filter: blur(0.7099999904632568rem);
    height: 100vh;
    padding: 14.7rem 7.2rem 0;
    border-radius: 0;
    width: 37.7rem;
}


.popup_menu_list a {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 11rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    border-bottom: 0.1rem solid #ccdaff36;
}

.menu_actions {
    position: relative;
}

.menu_modal .menu_actions {
    position: absolute;
    top: 2.5rem;
    right: 3.5rem;
}

.menu_modal .modal-backdrop.fade.show {
    display: none;
}

/* ========== Banner area ========== */

.banner_area .banner {
    height: 22.3rem;
    object-fit: cover;
    border-radius: 1.5rem;
}

.modal-body {
    padding: 0;
}

/* ========= page title area =========== */

.page_title_area {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page_title_area .title_box {
    padding: 5.5rem 0 4.4rem;
    min-height: 25rem;
}

.page_title_area p a {
    color: #00b358;
}

.page_title_area .pagination {
    padding: 1.3rem 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.page_title_area .pagination ul {
    display: flex;
    align-items: center;
    gap: 4rem;
    overflow: auto;
}

.page_title_area .pagination li {
    color: #ccdaff;
    font-size: 1.2rem;
    line-height: normal;
}

.page_title_area .pagination .symbol {
    color: #ccdaff;
    font-size: 1.6rem;
    line-height: normal;
}

.page_title_area .pagination a:hover,
.page_title_area .pagination .active {
    color: #00b358;
}

/* ========= ctg cards area =========== */

.ctg_cards_area {
    padding: 3.2rem 0 6.5rem;
}

.filter_checklist {
    display: flex;
    gap: 1rem;
}

.filter_checklist .custom_checkbox {
    width: 20%;
}

/* custom checkbox */

.custom_checkbox {
    position: relative;
    display: block;
}

.custom_checkbox .checkblock {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    cursor: pointer;
    user-select: none;
}

.custom_checkbox .checkblock::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5rem;
    background: #ccdaff;
    z-index: -1;
}

.custom_checkbox .checkmark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(7, 32, 93, 0.4);
    background-color: #fff;
    display: block;
}

.custom_checkbox .checkmark_txt {
    color: #07205d;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.custom_checkbox input {
    display: none;
}

/* checked */

.custom_checkbox input:checked + .checkblock::before {
    background: #07205d;
}

.custom_checkbox input:checked + .checkblock .checkmark_txt {
    color: #fff;
}

.custom_checkbox input:checked + .checkblock .checkmark {
    border-color: #fff;
    background-image: url(../img/checkmark.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.3rem auto;
}

/* category card */

.category_card {
    border-radius: 1.5rem;
    border: 1px solid rgba(7, 32, 93, 0.3);
    background: rgba(255, 255, 255, 0.94);
    padding: 3rem 3.3rem 1.7rem 2.5rem;
    transition: 300ms;
}

.category_card:hover {
    box-shadow: 0px 25px 31.8px 0px rgba(0, 0, 0, 0.47);
    border-color: rgba(7, 32, 93, 0.3);
}

.category_card .card_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
}

.category_card .icon {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 1px solid #07205d66;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}

.category_card:hover .icon {
    background: #ccdaff;
}

.category_card .icon img {
    width: 4.2rem;
}

.category_card .experts .experts_img {
    display: flex;
    align-items: center;
}

.category_card .experts .experts_img img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 1px solid rgba(7, 32, 93, 0.42);
    object-fit: cover;
}

.category_card .experts .experts_img img:not(:last-child) {
    margin-left: -0.9rem;
}

.category_card .experts p {
    color: #07f;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: end;
    padding-top: 0.7rem;
}

.category_card .card_body h3 {
    color: #07205d;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.category_card .card_body p {
    color: #525252;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 1rem 0 3.5rem;
}

.button_md {
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
    border-radius: 5rem;
    border: 1px solid rgba(7, 32, 93, 0.4);
    background: #fff;
    padding: 0.7rem 2rem;
    white-space: nowrap;
    transition: 300ms;
    color: #07205d;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    flex-shrink: 0;
}

.button_md:hover,
.category_card:hover .button_md {
    background: #07205d;
    color: #fff;
}

.button_md img {
    transition: 300ms;
}

.button_md:hover img,
.category_card:hover .button_md img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(0%) hue-rotate(287deg) brightness(106%) contrast(100%);
}

.ctg_cards_area .section_row {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 2.5rem;
}

.ctg_cards_area .cards_row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

/* Filter */

.filter {
    border-radius: 1.5rem;
    border: 1px solid rgba(7, 32, 93, 0.4);
    background: #fff;
    padding: 3rem 2.7rem;
}

.filter .accordion_btn {
    position: relative;
}

.filter .accordion_btn .toggler {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.filter .accordion_btn .toggler.collapsed img {
    opacity: 0.5;
}

.filter .accordion_btn .toggler:not(.collapsed) img {
    transform: scaleY(-1);
}

.filter_checkbox {
    display: block;
}

.filter_checkbox input {
    display: none;
}

.filter_checkbox .checkmark_block {
    display: flex;
    align-items: center;
    gap: 0 1.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(7, 32, 93, 0.5);
    user-select: none;
    cursor: pointer;
    position: relative;
}

.filter_checkbox .checkmark_block.pr_30 {
    padding-right: 3rem;
}

.filter_checkbox .checkmark_block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(7, 32, 93, 0.4);
}

.filter_checkbox .checkmark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(7, 32, 93, 0.4);
    background-color: #fff;
    flex-shrink: 0;
}

.filter_checkbox p {
    color: rgba(7, 32, 93, 0.5);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.filter_checkbox input:checked + .checkmark_block .checkmark {
    border-color: #07205d;
    background-image: url(../img/checkmark.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.3rem auto;
}

.filter_checkbox input:checked + .checkmark_block::after {
    height: 0.4rem;
    background: #07205d;
}

.filter_checkbox input:checked + .checkmark_block p {
    color: #07205d;
}

.filter_clear {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 5rem;
    background: rgba(7, 32, 93, 0.1);
    color: #07f;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0.6rem 1.6rem;
}

.filter_clear img {
    width: 1.1rem;
}

/* ========= experts area =========== */

.experts_area {
    background: #e8e8e8;
    padding: 5rem 0 4rem;
}

.experts_area .title_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
}

.expert_card {
    position: relative;
    padding: 1rem 2.4rem;
    border-radius: 1.5rem;
    box-shadow: 0 0.4rem 1rem 0 rgba(7, 32, 93, 0.2);
    background: #fff;
    text-align: center;
    transition: 300ms;
    z-index: 1;
}

.expert_card:hover {
    outline: 1px solid rgba(7, 32, 93, 0.4);
    box-shadow: 0 0.4rem 3rem 0 rgba(7, 32, 93, 0.4);
    background: #f2f5ff;
}

.expert_card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 7.3rem;
    background: #ccdaff;
    border-radius: 1.5rem 1.5rem 0 0;
    z-index: -1;
    transition: 300ms;
}

.expert_card:hover::before {
    background: #07205d;
}

.expert_card .pic img {
    width: 10.5rem;
    height: 10.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(7, 32, 93, 0.42);
    display: block;
    margin: auto;
}

.expert_card .name {
    color: #07205d;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.expert_card .location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    color: #07205d;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
    padding-bottom: 1.1rem;
}

.expert_card .location img {
    width: 1.5rem;
}

.expert_card .skills {
    color: #07f;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 1.4rem;
    padding-bottom: 0.6rem;
    border-top: 1px solid rgba(7, 32, 93, 0.5);
    max-height: 70px;
    overflow: hidden;
    min-height: 70px;
    margin-bottom: 1rem;
}

.expert_card .dis {
    color: #525252;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.expert_card .card_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    color: #fff;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0.7rem 2rem;
    border-radius: 5rem;
    background: #07205d;
    border: 1px solid #07205d;
    margin-top: 1.3rem;
}

.expert_card .card_button img {
    width: 2.5rem;
}

.expert_card .card_button.call:hover {
    background: #fff;
    border-color: #07f;
    color: #07f;
}

.expert_card .card_button.call div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
}

.expert_card .card_button.call div:nth-child(2) {
    display: none;
}

.expert_card .card_button.call:hover div:nth-child(1) {
    display: none;
}

.expert_card .card_button.call:hover div:nth-child(2) {
    display: flex;
}

.expert_card .card_button.messege {
    border: 1px solid rgba(7, 32, 93, 0.4);
    background: #00b358;
    color: #07205d;
}

.expert_card .card_button.messege:hover {
    background: #07205d;
    color: #fff;
}

.expert_card .card_button.messege:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7486%) hue-rotate(300deg) brightness(101%) contrast(90%);
}

.expert_card .more {
    color: #07f;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    margin-top: 0.8rem;
}

/* ========= mobile filter =========== */

.mobile_filter {
    padding: 0.5rem 0;
    position: sticky;
    top: 5rem;
    z-index: 1111;
    background: #fff;
}

.mobile_filter .container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.filter_button {
    padding: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #ccdaff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter_button img {
    width: 1.7rem;
}

.filter_button img:nth-child(2) {
    display: none;
}

.filter_button.active img:nth-child(1) {
    display: none;
}

.filter_button.active img:nth-child(2) {
    display: block;
}

.mobile_filter .custom_checkbox {
    flex-grow: 1;
}

.mobile_filter .custom_checkbox .checkblock {
    padding: 0.5rem 1.5rem;
    gap: 1rem;
}

.filter_result_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    color: #07205d;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 5rem;
    border: 1px solid rgba(7, 32, 93, 0.4);
    background: #fff;
    padding: 0.7rem 2rem;
}

.filter_result_btn img {
    width: 2.5rem;
}

/* Custom scrollbar */

.simplebar-track.simplebar-vertical {
    background: #ccdaff;
    border-radius: 5rem;
    width: 0.5rem;
}

.simplebar-scrollbar:before {
    background: #07205d;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.simplebar-scrollbar.simplebar-visible:before {
    opacity: 1;
}

/* ========== expert popup ========= */

.expert_popup .modal-dialog {
    max-width: 33rem;
}

.expert_popup .modal-content {
    border: none;
    background: transparent;
    padding: 0;
}

.expert_popup .modal-dialog {
    max-width: 33rem;
}

.expert_card .card_button.whatsapp {
    background: #2abc0d;
    border-color: #2abc0d;
}

.expert_card .card_button.call1 {
    background: #fff;
    border-color: #07f;
    color: #07f;
}

.input {
    width: 100%;
    height: 3.8rem;
    padding: 0 2rem;
    border-radius: 5rem;
    border: 1px solid rgba(7, 32, 93, 0.4);
    background: #fff;
    color: #07205d;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.input::placeholder {
    opacity: 1;
    color: #525252;
}

.submit_button {
    display: block;
    width: 100%;
    color: #07205d;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 5rem;
    border: 1px solid rgba(7, 32, 93, 0.4);
    background: #00b358;
    padding: 0.7rem 2rem;
}

.submit_button:hover {
    background: #07205d;
    border-color: #07205d;
    color: #fff;
}

.expert_popup .input,
.expert_popup .submit_button {
    margin-top: 1.3rem;
}

.modal-backdrop {
    opacity: 1 !important;
    background: rgba(7, 32, 93, 0.75);
    backdrop-filter: blur(7.5px);
    filter: blur(7.5px);
}

.modal_close {
    position: absolute;
    left: -5.6rem;
    top: -6.2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
}

.modal_close img {
    width: 1.1rem;
}

/* cards pagination */

.cards_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    gap: 1.5rem;
    padding-top: 6rem;
}

.cards_pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 1px solid rgba(7, 32, 93, 0.2);
    background: #fff;
    color: #07f;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.cards_pagination a:hover,
.cards_pagination a.active {
    background: #07205d;
    border-color: #07205d;
    color: #fff;
}

/* =========== Law area ========== */

.law_search {
    display: flex;
    border-radius: 5rem;
    background: #fff;
    overflow: hidden;
}

.law_search input {
    width: 100%;
    height: 6.5rem;
    padding: 0 6.5rem;
    color: #07205d;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
    border: none;
}

.law_search input::placeholder {
    opacity: 1;
    color: #525252;
}

.law_search button {
    padding: 1.2rem 4.1rem;
    background: #00b358;
}

.law_search button img {
    width: 4.2rem;
}

/* =================================== Profile area ==================================== */
.profile_area .container {
    background: #fff;
    border: 0.1rem solid #07205d66;
    border-radius: 1.5rem;
    overflow: hidden;
}

.round_face {
    width: 19.4rem;
    border-radius: 10rem;
}

.s_profile_top_1_img .testimonial_icon {
    width: fit-content;
    display: block;
    z-index: 9999999;
    background: #00b358;
    border-radius: 10rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

.s_profile_top_1_img .testimonial_icon .t_icon {
    border: 0.1rem solid #07205D66
}

.s_profile_top_1_img {
    width: fit-content;
    margin-right: 9.5rem;
    transform: translateY(3.5rem);
}

.s_profile_top_1_content {
    padding-top: 5.5rem;
}

/* =============================== profile_location =========================== */
.profile_location p {
    color: #07205d;
    font-weight: 600;
    line-height: 180%;
}

.profile_location img {
    width: 1.5rem;
}

.profile_location {
    gap: 1rem;
    padding: 1.5rem 0;
    padding-right: 35.5rem;
    background: #f2f5ff;
}

/* =============================== gallery_slider_area =========================== */
.gallery_slider_area {
    padding: 1.5rem 0 3.5rem;
}

.gallery_slide button {
    width: 100%;
}

.gallery_slider {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: 0;
}

.profile_main_right {
    overflow: hidden;
}

.gallery_slider .swiper-slide {
    margin-left: 1rem !important;
}

.gallery_slide button img {
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 1rem 1.5rem -0.5rem rgba(0, 0, 0, 0.3);
    height: 11.8rem;
}

.gallery_slider_wrap {
    padding-top: 1.2rem;
}

.gallery_slider_area .tab-pane img {
    box-shadow: 0 1rem 1.5rem -0.5rem rgba(0, 0, 0, 0.3);
    object-fit: cover;
    border-radius: 1rem;
    height: 36.7rem;
}

.gallery_slider .swiper {
    padding-bottom: 2rem;
}

.zoom_icon {
    width: 4rem;
    object-fit: contain !important;
    height: 4rem !important;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    border-radius: 10rem;
}

.gallery_slider_area .tab-pane .zoom_icon {
    bottom: 1.6rem;
    right: 1.6rem;
}

/* ======================= screenshot_area ========================= */
.screenshot_area .swiper-slide {
    margin-left: 1rem !important;
}

.screenshot_area h5 {
    line-height: 2.8rem;
    padding-bottom: 1rem;
}

/* ====================== profile_main ========================= */
.profile_main > .row {
    margin: 0 -2rem;
    padding-right: 7.7rem;
    padding-left: 4rem;
    padding-bottom: 6rem;
}

.profile_main > .row > * {
    padding: 0 2rem;
}

.prof_top_text a {
    color: #0077ff;
}

.prof_top_text {
    border-bottom: 0.1rem solid #07205d4d;
    padding-bottom: 1.5rem;
}

.profile_main .container {
    background: #ffffff;
}

.profile_main_right {
    padding-top: 4rem;
}

.profile_main_r1 h5 {
    padding-bottom: 0.6rem;
    line-height: 2.8rem;
}

.profile_main_r1 {
    padding-top: 2.7rem;
    margin: 0 -1rem;
    align-items: flex-end;
}

.profile_main_r1 > * {
    padding: 0 1rem;
}

/* ============================= pofile_left_block =============================== */
.profile_left {
    margin-top: -21.5rem;
}

.profile_contact {
    display: grid;
    gap: 3.5rem;
}

.pofile_left_block {
    border: 0.1rem solid #07205d66;
    background: #f3f3f3;
    border-radius: 1.5rem;
    padding: 3.2rem 4.1rem 4.3rem 4.1rem;
}

.form_control.v2 {
    height: 3.9rem;
    border: 0.1rem solid #07205d66;
    border-radius: 10rem;
    background: #fff;
    padding: 0 2rem;
}

.form_control.v2,
.form_control.v2::placeholder {
    color: #525252;
    font-weight: 400;
    font-size: 1.6rem;
}

.form_control.textarea.v2 {
    min-height: 8rem;
    border-radius: 1.5rem;
    resize: none;
    padding-top: 0.4rem;
    line-height: 1;
}

.contact_form_two {
    display: grid;
    gap: 1rem;
    padding: 1.8rem 0 1rem;
}

.pofile_left_block h5 {
    color: #07205d;
    font-size: 2rem;
    line-height: 3rem;
}

.profile_contact_links li a img {
    width: 2.5rem;
}

.profile_contact_links li a {
    display: grid !important;
    grid-template-columns: 2.5rem 1fr;
    gap: 1.6rem;
    color: #07205d;
    position: relative;
}

.profile_contact_links {
    display: grid;
    gap: 3.5rem;
    padding-top: 4.5rem;
}

.profile_contact_links li a:hover {
    color: #0077ff;
}

.social_media_links ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.4rem;
    padding-top: 4.3rem;
}

.contact_form_two_v2 {
    background: #ccdaff;
    padding: 2.7rem 6.3rem 3.5rem 6.3rem;
}

.contact_form_two_v2 .row {
    margin: 0 -1rem;
    gap: 1.4rem 0;
}

.contact_form_two_v2 .row > * {
    padding: 0 1rem;
}

/* ===================== tnx-profile-page ==================== */
.s_profile_left {
    padding-top: 7.5rem;
    padding-right: 6.5rem;
}

.profile_main_2 {
    padding: 2.3rem 35.5rem 16.1rem;
}


/* =============== Law Text page ================= */
.law_text_top .testimonial_icon {
    border-radius: 10rem;
    margin: 0 auto;
    margin-bottom: 2.8rem;
}

.law_text_top .button {
    width: fit-content;
    margin-right: auto;
}

.law_text_top {
    width: fit-content;
    margin-right: auto;
}

/* ================= sticky_bar ================== */
.sticky_bar img {
    width: 19.8rem;
}

.sticky_bar {
    position: fixed;
    top: 100px;
    display: grid;
    gap: 2rem;
    z-index: 99;
    transition: top 0.2s ease;
}

.sticky_bar.left {
    left: 2.3rem;
}

.sticky_bar.right {
    right: 2.3rem;
}

.sticky_bar.stop {
    position: absolute !important;
}

/*============================================== new code bay shahalam ===============================================*/
.register_form_wrapper {
    margin-top: 3.6rem;
    margin-bottom: 7.5rem;
}

.register_form {
    background-color: #F2F5FF;
    border: 0.1rem solid rgba(7, 32, 93, 0.4);
    border-radius: 1.5rem;
    padding-top: 7rem;
    padding-bottom: 8.6rem;
}

.register_input_box_wrapper {
    padding-right: 25rem;
    padding-left: 30.1rem;
}

.register_heading {
    padding-bottom: 5rem;
    padding-right: 25rem;
}

.register_heading h2 {
    line-height: 1.46;
}

.register_form_heading {
    padding-top: 4rem;
    padding-bottom: 1.3rem;
}

.register_form_heading h4 {
    font-weight: 400;
}

.register_input_box {
    position: relative;
}

.register_input_box label {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.43;
    padding-bottom: .7rem;
    color: #07205D;
}

.register_input_box input {
    height: 4.5rem;
    width: 100%;
    border: 0.1rem solid rgba(7, 32, 93, 0.4);
    padding: 1rem 2rem;
    border-radius: 8rem;
    background-color: #fff;
    text-align: right;
}

.register_input_box input::placeholder {
    color: #525252;
    font-size: 1.6rem;
}

.name_input2 {
    margin-top: 1rem;
}

.register_input_box1 {
    padding-top: 2.6rem;
}

.register_input_box2 {
    padding-top: 2.3rem;
}

.register_input {
    position: relative;
}

.img_go1 {
    position: absolute;
    left: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
}

.toggle_icon {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    cursor: pointer;
}

.register_input_box_last {
    padding-top: 2.3rem;
}

/* check box */
.register_check_box {
    margin-top: 4.4rem;
}

.register_check_box .checkbox {
    cursor: pointer;
    justify-content: center;
    display: flex;
    align-items: flex-start !important;
}

.register_check_box .checkbox p {
    font-size: 1.6rem;
    color: #525252;
    font-weight: 400;
    padding-left: 0.4rem;
    text-align: right;
    margin-right: 1.8rem;
}

.register_check_box .checkbox p a {
    text-decoration: underline !important;
    color: #0077FF;
}

.register_check_box .check img {
    width: 1.3rem;
    opacity: 0;
}

.register_check_box .check {
    width: 2rem;
    height: 2rem;
    border: 0.3rem solid #07205D;
    border-radius: .3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register_check_box .checkbox.active .check img {
    opacity: 1;
}

.register_form_btn {
    display: flex;
    justify-content: center;
    margin-top: 3.1rem;
    gap: 20px;
}

.register_form_btn .button {
    width: 61.7rem;
    height: 4.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*======================= tag add area =========================*/

.input_container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: .5rem .7rem .5rem 2.5rem;
    border: 0.1rem solid rgba(7, 32, 93, 0.4);
    border-radius: 2rem;
    background-color: #ffffff;
    flex-wrap: wrap;
    gap: .6rem;
}

.tags_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    width: 100%;
}

.tag {
    display: flex;
    align-items: center;
    background-color: #07205D;
    color: #ffffff;
    padding: .65rem 2rem .65rem 5.9rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    position: relative;
}

.tag .close_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    cursor: pointer;
    left: 2.65rem;
}

.tag_input {
    flex-grow: 1;
}

.tag_input input {
    border: none;
    outline: none;
    min-width: 16rem;
    font-size: 1.6rem;
    /*  padding: .5rem;*/
    width: 100%;
}

.tag_input input::placeholder {
    font-size: 1.6rem;
    color: #525252;
}

.tag_close {
    width: 1.2rem;
}

/*======================= register modal area =====================*/
.register_page_modal .modal-dialog {
    max-width: 50.4rem !important;
}

.register_page_modal .expert_card {
    background-color: #F2F5FF !important;
    border-radius: 1.5rem !important;
    padding: 5.3rem 4.6rem 4.4rem;
}

.register_page_modal .expert_card::before {
    display: none;
}

.register_modal_form h2 {
    text-align: right;
    padding-bottom: 2.7rem;
}

.register_modal_form label {
    text-align: right !important;
    display: flex;
    justify-content: flex-start;
    color: #525252 !important;
}

.register_modal_form .name_input2 {
    margin-top: 1.5rem;
}

.register_modal_form .register_input_box_last {
    padding-top: 4rem;
}

.register_bodal_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
}

.register_bodal_btn .a1 {
    font-size: 1.2rem;
    color: #0077FF;
}

.register_bodal_btn .button {
    width: 22.1rem;
    height: 4.5rem;
    display: flex;
    justify-content: center;
}

.register_modal_submit_btn a {
    width: 100%;
    border-radius: 7rem;
    height: 4.5rem;
    border: 0.1rem solid rgba(7, 32, 93, 0.4);
    font-size: 1.6rem;
    font-weight: 700;
    color: #0077FF;
    text-decoration: underline;
    margin-top: 5rem;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.tag_heading {
    padding-bottom: 1.4rem;
}

.tag_heading h3 {
    font-size: 2.4rem;
    color: #07205D;
    font-weight: 400;
}


/*====================== manage user page area ==========================*/
.manageuser_form_wrapper .register_form {
    padding: 5.8rem 7.5rem 8.9rem;
}

.manageuser_form_wrapper .register_input_box_wrapper {
    padding: 0 !important;
}

.manageuser_form_wrapper .register_heading {
    padding-right: 0;
}

.manageuser_row {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
}

.manageuser_form_wrapper .register_form_heading {
    padding-top: 6.1rem;
    padding-bottom: .6rem;
}

.manageuser_input_box {
    padding-top: 2rem;
}

.manageuser_form_heading {
    padding-top: 7.2rem !important;
}

.register_input_box label {
    display: flex;
    align-items: center;
}

.img_ma2 {
    width: 2.3rem;
    margin-right: .8rem;
}

.manageuser_form_heading1 {
    padding-top: 6.4rem !important;
}

.upload_box p {
    font-size: 1.6;
    font-weight: 700;
    line-height: 1.43;
    color: #07205D;
    padding-bottom: .3rem;
}

.upload_box_content_wrap {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 2.4rem 3.7rem 2.3rem 4.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upload_img {
    height: 10.6rem;
    border-radius: 50%;
    width: 10.6rem;
    object-fit: cover;
}

.upload_box_content .upload_box_contentIMg {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #0077FF;
}

.upload_box_contentIMg .img_ma3 {
    width: 1.4rem;
    margin-left: 1.1rem;
}

.img_ma4 {
    width: 1.8rem;
    margin-left: .8rem;
}

.upload_box_contentIMg1 {
    margin-top: 2.4rem;
}

.manageuser_form_heading2 {
    padding-top: 6rem !important;
}

.manageuser_form_p {
    background-color: #fff;
    border-radius: 2rem;
    padding: 2.8rem 3.1rem 3.2rem 4.1rem;
    border: 0.1rem solid rgba(7, 32, 93, 0.4);
    margin-top: 1.5rem;
    width: 100%;
}

.manageuser_social_form_heading {
    padding-top: 4.5rem;
}

.manageuser_social_form_heading h4 {
    font-weight: 400;
    padding-bottom: 1.2rem;
}

.manageuser_social_form_input {
    padding-top: 1.8rem;
}

.manageuser_social_form_input label {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.46;
    color: #07205D;
    padding-bottom: .3rem;
}

.img_ma5 {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 1.1rem;
}

.manageuser_social_form_input_box {
    display: flex;
    align-items: center;
}

.manageuser_social_form_input_box input {
    height: 4.5rem;
    background-color: #fff;
    border: 0.1rem solid rgba(7, 32, 93, 0.4);
    border-radius: 7rem;
    width: 100%;
    padding: 1rem 2rem;
}

.manageuser_form_imgupload {

}


.gallery_container {
    padding: 3.1rem 3rem 3.2rem 3.7rem;
    background: #fff;
    border-radius: 1.5rem;
    width: 100%;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.gallery_item {
    position: relative;
    width: 12.7rem;
    height: 9.1rem;
    flex: 0 1 auto;
    border: .1rem solid transparent;
}

.manauser_gallery_item img {
    width: 12.7rem;
    height: 9.1rem;
    object-fit: cover;
    border-radius: .7rem;
    border: .1rem solid transparent;
}

.delete_btn {
    position: absolute;
    top: -1.1rem;
    left: -.7rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0.1rem solid #fff !important;
    border-radius: 50%;
    background-color: #07205D;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .2rem;
}

.gallery_item.upload {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12.7rem;
    height: 9.1rem;
    border: .1rem solid rgba(7, 32, 93, 0.4);
    border-radius: .7rem;
    background-color: #f8f9fc;
    cursor: pointer;
}

.upload_placeholder {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.41;
    flex-direction: column;
    cursor: pointer;
}

#imageUpload {
    display: none;
}

#imageUpload1 {
    display: none;
}

.img_up1 {
    width: 2.4rem !important;
    height: 2.4rem !important;
    border: none !important;
}

.manauser_gallery_item .img_ma5_svag {
    width: 1.2rem !important;
    height: 1.2rem !important;
}

.manageuser_form_imgupload_two .gallery_item {
    /*  border-color: rgba(7, 32, 93, 0.4);*/
}

.manageuser_form_imgupload_two img {
    width: 12.7rem;
    height: 9.1rem;
    object-fit: cover;
    border-radius: .7rem;
    border: .1rem solid rgba(7, 32, 93, 0.4);;
}

.register_form_heading_tel {
    padding-top: 3.1rem !important;
}


.spin {
    animation-name: spin;
    animation-duration: 500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


form.in_process {
}

form.in_process .js__submit_form {
}

form.in_process .js__submit_form .loader {
    display: inline-block;
}

form.in_process .js__submit_form .text {
    display: none;
}

form .js__submit_form .loader {
    display: none;
}

form .js__submit_form .text {
}

.mia-checkbox_wrapper {

}

.mia-checkbox_wrapper p {
    font-size: 1.6;
    font-weight: 700;
    line-height: 1.43;
    color: #07205D;
    padding-bottom: .3rem;
}

.mia-checkbox_wrapper .checkbox_wrap {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 1.4rem;
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    width: 100%;
}

.mia-checkbox_wrapper .checkbox_wrap span input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.mia-checkbox_wrapper .checkbox_wrap span input:checked ~ div {
    background-color: #07205D;
    color: #ffffff;
}

.mia-checkbox_wrapper .checkbox_wrap span {
    min-width: 17px;
    position: relative;
    text-align: center;
    border-radius: 2rem;
    font-size: 1.6rem;
    display: flex;
}

.mia-checkbox_wrapper .checkbox_wrap span > div {
    border: 0.1rem solid rgba(7, 32, 93, 0.4);
    padding: .65rem 2rem .65rem 2rem;
    border-radius: 2rem;
}


.profile_main {
}

.profile_main .profile_main_right {
}

.profile_main .profile_main_right .profile_main_r1 {
}

.profile_main .profile_main_right .profile_main_r1 {

}

.profile_main .profile_main_right .profile_main_r1 .huwaei_img {
    width: auto;
}

.profile_location p a {
    color: #07205d;
    font-weight: 600;
    line-height: 180%;
}

.text-white {
    text-shadow: black 1px 0 10px;
}

.profile_main .profile_main_right .profile_main_r1 .huwaei_img {
    width: auto;
    position: relative;
    max-width: 100%;
}

.ld {
    transform-origin: 50% 50%;
    transform-box: fill-box;
}

@keyframes ld-zoom-in {
    0% {
        animation-timing-function: cubic-bezier(0.0436, 0.6939, 0.3878, 0.8531);
        transform: matrix(0.01, 0, 0, 0.01, 0, 0);
    }
    100% {
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
}

.ld.ld-zoom-in {
    animation: ld-zoom-in 0.5s 1 linear;
    animation-fill-mode: forwards;
    transform: matrix(0.01, 0, 0, 0.01, 0, 0);
}

@keyframes ld-zoom-out {
    0% {
        animation-timing-function: cubic-bezier(0.0436, 0.6939, 0.3878, 0.8531);
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
    100% {
        transform: matrix(0.01, 0, 0, 0.01, 0, 0);
    }
}

.ld.ld-zoom-out {
    animation: ld-zoom-out 0.5s 1 linear;
    animation-fill-mode: forwards;
    transform: matrix(1, 0, 0, 1, 0, 0);
}


.number-wrapp {

}

.number-wrapp .copy {
    display: none;
}

.number-wrapp .tel {
}

.number-wrapp.copied {

}

.number-wrapp.copied .copy {
    display: inline-block;
}

.number-wrapp.copied .tel {
    display: none;
}

.hero_content p strong {
    font-weight: 900;
    color: #00b358;
}

form:not(.search_area_white) .form_control {
    color: white;
}

.list {
    width: auto;
    min-width: 100%;
}

.footer_box h5,
.footer_box h4 {
    padding-bottom: 4rem;
}


form.js__profile_contact_form input.form_control,
form.js__profile_contact_form textarea.form_control {
    color: black;
}

.featured-image {
    float: left;
    margin: 7px 7px 7px 0;
    max-width: 500px;
    width: auto;
}


.single-law {

}

.single-law .text_wrap {

}

.single-law .text_wrap h2 {
    padding-bottom: 1.0rem;
}

.single-law .text_wrap ol {
    padding-bottom: 2.5rem;
    list-style: auto;
    list-style-position: inside;
}

.single-law .text_wrap ul {
    padding-bottom: 2.5rem;
    list-style: disc;
    list-style-position: inside;
}

.single-law .text_wrap p {
    padding-bottom: 2.5rem;
}

.profile_main_r1 ol {
    padding-bottom: 2.5rem;
    list-style: auto;
    list-style-position: inside;
}

.profile_main_r1 ul {
    padding-bottom: 2.5rem;
    list-style: disc;
    list-style-position: inside;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
    position: relative;
}

@media screen and (max-width: 570px) {
    .col.col-sm-12.col-md-6 {
        flex: 0 0 auto;
        width: 100%;
        position: relative;
    }

}

.courses_item {
    border: 0.1rem solid #07205d66;
}

.course_img {
    max-height: 300px;
    position: relative;
    overflow: hidden;
}

.courses_info {
    padding: 2.8rem 3.2rem 4.8rem 3.2rem;
    background: #fff;
    border-radius: 1.6rem;
    transition: 300ms;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.courses_item .buttons {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 10px;
    justify-content: space-between;
    align-items: flex-end;
}

.courses_item .button {
    width: fit-content;
}

.courses_item:hover {
    background: #e8e8e8;
}

.courses_item:hover .button_yellow {
    background: #07205d;
    color: #fff;
}

.courses_item:hover .button_yellow svg path {
    stroke: white;
}

.courses_item:hover .button_yellow svg path[fill="#07205D"] {
    fill: white;
}


.expert_card .register_modal_form,
.expert_card .forgot_password_modal_form {
    -webkit-transition: height 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.form-login {

}

.form-login .register_modal_form {
    height: 355px;
    opacity: 1;
}


.form-login .forgot_password_modal_form {
    height: 0;
    opacity: 0;

}

.form-forgot_password {
    height: 250px;
}

.form-forgot_password .register_modal_form {
    height: 0;
    opacity: 0;


}

.form-forgot_password .forgot_password_modal_form {
    height: 200px;
    opacity: 1;

}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.full_link {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    background: transparent;
}

.hero_slide:hover {
    background: #e8e8e8;
}

.hero_slide:hover .button.button_transparenr.bg-white.border {
    color: white;
    background-color: #07205d !important;
}

.hero_slide:hover .button.button_transparenr.bg-white.border svg {
}

.hero_slide:hover .button.button_transparenr.bg-white.border svg path {
    stroke: white;
}

.hero_slide:hover .button.button_transparenr.bg-white.border svg path[fill="#07205D"] {
    fill: white;
}


.single-courses svg path[fill="white"] {
    fill: black !important;
}

.course_meta {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-bottom: 30px;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.course_meta div {
    display: inline-flex;
    flex-direction: row;
    margin-top: 10px;
    align-items: center;
    gap: 20px;
}

.category_card {
    position: relative;
    display: block;
}

.truncate-text {
    width: 163px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    direction: ltr;
    text-align: right;
    position: absolute;
    left: 0;
}

.truncate-text:hover {
    overflow: visible;
    white-space: normal;
    background: #fff;
    z-index: 10;
    position: absolute;
    width: auto;
    left: 0;
}


.single .text_area img.course_image {
    width: auto;
}

.page-template-page-law-archive .testimonial_icon p {
    position: relative;
    left: 0;
    transform: none;
    bottom: 0;
}

.text_area p {
    margin-block-start: 16px;
    margin-block-end: 16px;
}


.screen-reader-text {
    display: none;
}


blockquote {
    border-right: 5px solid #ccc;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    position: relative;
}

blockquote::before {
    content: "\"";
    font-size: 3em;
    position: absolute;
    left: 10px;
    top: -10px;
}

em {
    font-style: italic;
    padding: 0 4px;
    border-radius: 4px;
}

b,
strong {
    font-weight: bold;
    padding: 0 4px;
    border-radius: 4px;
}

.has-submenu {
    position: relative;
}

.has-submenu button.submenu-toggle {
    color: white;
    font-size: initial;
    position: absolute;
    left: 0;
    top: 12px;
    /*border-right: 1px solid #5d6780;*/
    padding: 6px 10px;
}

.has-submenu .has-dropdown {
    width: 100%;
}

.has-submenu .submenu {
    display: none;
}

.has-submenu .submenu a {
    padding-right: 10px;
}


/* ======================== package_area ======================== */
.pack_area .row {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 2.5rem;
}

.package ul li img {
    width: 1.6rem;
}

.package {
    background: #fff;
    padding: 4rem 5rem 4rem;
    border: 0.1rem solid #9ca6be;
    border-radius: 1.2rem;
    transition: 0.25s ease;
}

.package .button {
    width: fit-content;
}

.package ul li {
    display: grid;
    grid-template-columns: 0fr 1fr;
    gap: 1rem;
    align-items: center;
}

.package > p {
    padding: 2rem 0;
}

.package ul {
    padding-bottom: 2.5rem;
    display: grid;
    gap: 0.8rem;
}

.package:hover {
    box-shadow: 0 0 3rem 0.5rem rgba(0, 0, 0, 0.2);
    transform: scale(1.005);
}

.not_available {
    color: #a8a8a8;
}

.package ul li:not(.not_available) {
    color: #07205d;
}

body.home main {
    font-size: 1.9rem;
    line-height: 2.4rem;
}

.hero_slide h2 {
    font-size: 2.9rem;
}


.banner-rotator {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.banner-rotator .banner {
    position: relative;
    display: none;
}

.banner-rotator .banner.active {
    display: block;
}

.hero_content h1 {
    color: #f3f3f3;
    font-size: 3.6rem;
    line-height: 4rem;
}

.color-white {
    color: #f3f3f3;
}

.page-template-page-profile h2 {
    font-size: 2rem;
    line-height: 2rem;
    padding-bottom: 2rem;
}

.page-template-page-profile .s_profile_left {
    padding-top: 2.5rem;
    padding-right: 3.5rem;
    margin-bottom: 2.5rem;
}

.menu_modal {
    z-index: 999999;
}

.modal-backdrop {
    opacity: 1 !important;
    background: rgb(7 32 93 / 0%);
    backdrop-filter: blur(0);
    filter: blur(0);
    cursor: pointer;
}

.logo img {
    width: 19.9rem;
}

.text-darkblue {
    color: var(--darkblue);
}

.site_header {
    background: #FFF;
}

.add_user,
.toggled_menu_icon {
    background: var(--darkblue);
}

.add_user:hover,
.toggled_menu_icon:hover {
    background: #07205da8;
}

.hero_area .title_36 {
    color: #fff !important; /* или нужный цвет */
    -webkit-text-fill-color: #fff !important;
    -webkit-text-stroke: 0 !important;
    text-decoration: none !important;
}


.has-submenu button.submenu-toggle {
    color: white;
    font-size: initial;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    height: 100%;
}

.has-submenu .has-dropdown {
    width: 100%;
    position: relative;
}

.popup_menu_list a {
    line-height: 7rem;
}

.skills.js__user_modal_skills:empty {
    display: none;
}

button.modal_close {
    background: #00b358;
}

.custom_checkbox .checkmark_txt {
    line-height: 100%;
}

.register_check_box .check.error,
input.error,
select.error,
textarea.error {
    border: 2px solid red !important;
    background-color: #ffe5e5;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}

.register_check_box .check.shake,
input.shake,
select.shake,
textarea.shake {
    animation: shake 0.3s;
}

.register_check_box .check.shake,
input.shake,
select.shake,
textarea.shake {
    animation-fill-mode: none;
}

.alignnone {
    margin: 5px 20px 20px 0;
    width: auto;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
    width: auto;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
    width: auto;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
    width: auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;

}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.scroll-hidden {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-hidden::-webkit-scrollbar {
    display: none;
}

.has-submenu .plus {
    display: inline;
}

.has-submenu .minus {
    display: none;
}

.has-submenu.active .plus {
    display: none;

}

.has-submenu.active .minus {
    display: inline;
}

.responsive-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 (9 / 16 * 100%) */
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#consentPopup {
    border: none;
    background: transparent;
    padding: 0;
}

#consentPopup .modal-body {
    background-color: #F2F5FF !important;
    border-radius: 1.5rem !important;
    padding: 5.3rem 4.6rem 4.4rem;
}

[disabled] {
    opacity: 0.6;
    pointer-events: none;
}

[data-location="banner_location__contact_page-top__manager"] img,
[data-location="banner_location__packages_page-top__manager"] img,
[data-location="banner_location__law_archive-top__manager"] img {
    max-height: 100px;
}

#wp-admin-bar-duplicate-post, #wp-admin-bar-new-content {
    display: none !important;
}

.text_area img:not(.featured-image) {
    max-width: 100%;
    height: auto;
}

.nice-select.open .list {
    width: 100%;
}

.nice-select .list {
    white-space: normal !important;
    word-break: break-word;
}

.nice-select .option {
    white-space: normal !important;
    word-break: break-word;
    text-align: right;
    line-height: 1.7 !important;
}

.page-template-page-contact form .form_control {
    background: black;
    color: white;
}

.page-template-page-contact form .form_control::placeholder {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #f3f3f3;
    font-weight: 900;
}


.ui-datepicker {
    background: #ccdaff;
}


.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default,
.ui-datepicker .ui-button,
.ui-datepicker html .ui-button.ui-state-disabled:hover,
.ui-datepicker html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #07205d;
}

.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-widget-content .ui-state-highlight,
.ui-datepicker .ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620;
}

.ui-datepicker .ui-state-active,
.ui-datepicker .ui-widget-content .ui-state-active,
.ui-datepicker .ui-widget-header .ui-state-active,
.ui-datepicker a.ui-button:active, .ui-button:active,
.ui-datepicker .ui-button.ui-state-active:hover {
    border: 1px solid #00b358;
    background: #00b358;
    font-weight: normal;
    color: #07205d !important;
}

.contact_form_two_v2 .wpcf7-spinner {
    position: absolute;
    left: 0;
    top: 8px;
}

.contact_form_two_v2 .wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.2em 1em;
}

.contact_form_two_v2 .form_group {
    position: relative;
}
.toggle_icon.hidden{
    opacity: 0.4;
}