@font-face {
    font-family: "LamaSans";
    src: url("../fonts/lama_sans/LamaSans-Medium.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "LamaSans";
    src: url("../fonts/lama_sans/LamaSans-Regular.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "LamaSans";
    src: url("../fonts/lama_sans/LamaSans-Bold.ttf");
    font-weight: 900;
}
* {
    margin: 0px;
    box-sizing: border-box;
    font-family: "LamaSans", sans-serif;
    scroll-behavior: smooth;
}
*::-moz-selection {
    background-color: var(--primary-color);
    color: var(--light-color);
}
*::selection {
    background-color: var(--primary-color);
    color: var(--light-color);
}
*::-webkit-scrollbar {
    width: 8px;
}
*::-webkit-scrollbar-track {
    background-color: var(--light-color);
}
*::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.overflowNone {
    overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
    outline-width: 0px !important;
    outline-color: transparent !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

button {
    outline: none !important;
    border: 0px !important;
}

.swiper-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 33px;
    height: 3px;
    background-color: rgba(131, 36, 58, 0.5);
    border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
    top: unset;
    transform: translateY(0px);
    width: 50px;
    height: 50px;
    border: 0px;
    border: 1px solid #202020;
    background-color: transparent;
    bottom: 0;
    border-radius: 50%;
    overflow: hidden;
}
.swiper-button-next::before, .swiper-button-prev::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s linear;
}
.swiper-button-next::after, .swiper-button-prev::after {
    position: absolute;
    width: 24px;
    height: 25px;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    z-index: 9;
    background: url("../images/icons/right_arrow_slide.svg") center/contain no-repeat;
    color: transparent;
    filter: var(--secondary-filter);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    box-shadow: 0px 0px 10px rgba(32, 32, 32, 0.1);
}
.swiper-button-next:hover::before, .swiper-button-prev:hover::before {
    height: 100%;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
    filter: var(--light-filter);
}

.swiper-button-prev {
    right: calc(50% - 55px) !important;
    left: unset !important;
}
.swiper-button-prev::after {
    transform: scaleX(1);
}

.swiper-button-next {
    right: unset !important;
    left: calc(50% - 55px) !important;
}
.swiper-button-next::after {
    transform: scaleX(-1) !important;
}

html[dir=ltr] .swiper-button-prev {
    left: calc(50% - 55px) !important;
    right: unset !important;
}
html[dir=ltr] .swiper-button-prev::after {
    transform: scaleX(-1);
}
html[dir=ltr] .swiper-button-next {
    left: unset !important;
    right: calc(50% - 55px) !important;
}
html[dir=ltr] .swiper-button-next::after {
    transform: scaleX(1) !important;
}

@keyframes pinDrop {
    0% {
        transform: translateY(-20px) scale(0.5);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}
@keyframes slide_up_down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
@keyframes slide_up_X {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10px);
    }
}
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce-in-fwd {
    0% {
        transform: scale(0);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: scale(1);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: scale(0.7);
        animation-timing-function: ease-in;
    }
    72% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
    81% {
        transform: scale(0.84);
        animation-timing-function: ease-in;
    }
    89% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
    95% {
        transform: scale(0.95);
        animation-timing-function: ease-in;
    }
    100% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
}
@keyframes bounce-in-top {
    0% {
        transform: translateY(-50px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: translateY(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: translateY(-20px);
        animation-timing-function: ease-in;
    }
    72% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    81% {
        transform: translateY(-15px);
        animation-timing-function: ease-in;
    }
    90% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    95% {
        transform: translateY(-4px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
}
@keyframes bounce-in-left {
    0% {
        transform: translateX(-30px);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    38% {
        transform: translateX(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }
    55% {
        transform: translateX(-20px);
        animation-timing-function: ease-in;
    }
    72% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
    81% {
        transform: translateX(-10px);
        animation-timing-function: ease-in;
    }
    90% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
    95% {
        transform: translateX(-4px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateX(0);
        animation-timing-function: ease-out;
    }
}
@keyframes pulse-shadow {
    100% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
    }
}
@keyframes spinner {
    0% {
        transform: scale3d(1, 1, 1);
    }
    100% {
        transform: scale(1.4);
    }
}
@keyframes pulse {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
    50% {
        transform: scale3d(0.8, 0.8, 0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}
/*dropdown animation*/
@keyframes dropdown-animate {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }
    50% {
        transform: rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes wave {
    0%, 100% {
        -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }
    50% {
        -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}
@keyframes niceAnimate {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}
@keyframes translation {
    0% {
        transform: translateZ(0%);
    }
    100% {
        transform: translateZ(10%);
    }
}
@keyframes rotate-scale-up {
    0% {
        transform: scale(1) rotateZ(0);
    }
    50% {
        transform: scale(2) rotateZ(180deg);
    }
    100% {
        transform: scale(1) rotateZ(360deg);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes vibrate {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-10px, 10px);
    }
    40% {
        transform: translate(-10px, -10px);
    }
    60% {
        transform: translate(10px, 10px);
    }
    80% {
        transform: translate(10px, -10px);
    }
    100% {
        transform: translate(0);
    }
}
@keyframes translateX {
    0%, 100% {
        transform: translateX(2px);
    }
    50% {
        transform: translateX(-2px);
    }
}
@keyframes translateY {
    0%, 100% {
        transform: translateY(2px);
    }
    50% {
        transform: translateY(-2px);
    }
}
@keyframes translateYR {
    0%, 100% {
        transform: translateY(2px) scaleX(-1);
    }
    50% {
        transform: translateY(-2px) scaleX(-1);
    }
}
@keyframes flip-in-hor-bottom {
    0% {
        transform: rotateX(80deg) translate(-50%, -50%);
        opacity: 0;
    }
    100% {
        transform: rotateX(0) translate(-50%, -50%);
        opacity: 1;
    }
}
@keyframes shadow {
    0% {
        box-shadow: 0px 0px 35px -4px #00a4e6;
        opacity: 0 !important;
    }
    100% {
        box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
    }
}
@keyframes rotate {
    0% {
        border-radius: 50% 60% 55% 40%;
    }
    25% {
        border-radius: 30% 10% 70% 20%;
    }
    50% {
        border-radius: 20% 40% 30% 60%;
    }
    75% {
        border-radius: 70% 20% 50% 30%;
    }
    100% {
        border-radius: 50% 60% 55% 40%;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateX(30px);
    }
    67% {
        opacity: 1;
        transform: translateX(40px);
    }
    100% {
        opacity: 0;
        transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
    }
}
@keyframes clip {
    0% {
        -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
        clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
    }
    50% {
        -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
        clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
    }
    100% {
        -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
        clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
    }
}
@keyframes sideClip {
    0% {
        -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
        clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
    }
    50% {
        -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
@keyframes sideClip_2 {
    0% {
        -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
        clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
    }
    50% {
        -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
        clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
        clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
    }
}
@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes topBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}
@keyframes bottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }
    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }
    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}
@keyframes storm {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
    25% {
        transform: translate3d(4px, 0, 0) translateZ(0);
    }
    50% {
        transform: translate3d(-3px, 0, 0) translateZ(0);
    }
    75% {
        transform: translate3d(2px, 0, 0) translateZ(0);
    }
    100% {
        transform: translate3d(0, 0, 0) translateZ(0);
    }
}
@keyframes moving {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: -10000px;
    }
}
:root {
    --primary-color: #83243a;
    --secondary-color: #202020;
    --yellow-color: #c4a581;
    --dark-color: #000;
    --light-color: #fff;
    --gray-color: #808080;
    --primary-filter: invert(19%) sepia(58%) saturate(1606%) hue-rotate(313deg)
    brightness(92%) contrast(96%);
    --secondary-filter: invert(5%) sepia(6%) saturate(17%) hue-rotate(319deg)
    brightness(100%) contrast(84%);
    --yellow-filter: invert(80%) sepia(4%) saturate(2879%) hue-rotate(353deg)
    brightness(86%) contrast(86%);
    --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg)
    brightness(108%) contrast(100%);
    --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg)
    brightness(87%) contrast(97%);
}

.download-contain {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.download-contain .download-btn {
    width: 200px;
    height: 60px;
    display: flex;
    align-content: center;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
    .download-contain .download-btn {
        width: calc(50% - 5px);
    }
}
.download-contain .download-btn img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.download-contain .download-btn:hover {
    transform: scale(0.95);
    box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
}
.download-contain .download-button {
    width: 200px;
    height: 60px;
    display: flex;
    align-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
    .download-contain .download-button {
        width: calc(50% - 5px);
        height: auto;
        min-height: 40px;
    }
}
.download-contain .download-button img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.download-contain .download-button:hover {
    transform: scale(0.95);
    box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
}

.social-media {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.social-media span {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    margin-inline-end: 5px;
}
.social-media a {
    width: 32px;
    height: 32px;
    display: flex;
    align-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.social-media a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    filter: var(--primary-filter);
}
.social-media a:hover {
    transform: scale(1.1);
}
.social-media a:hover img {
    filter: var(--yellow-filter);
}

.download-word {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 16px;
}
@media (max-width: 992px) {
    .download-word {
        font-size: 18px;
        margin-bottom: 8px;
    }
}
.download-word span {
    color: var(--primary-color);
}

.general-section {
    width: 100%;
    padding: 45px 0px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.general-section.gray-bk {
    background-color: rgba(242, 242, 242, 0.5);
}
@media (max-width: 992px) {
    .general-section {
        padding: 30px 0px;
    }
}

.sub-header {
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 150px 0px 50px;
    background: url("../images/icons/sub-header.png") bottom center/cover no-repeat var(--primary-color);
}
.sub-header.no-pattern {
    background: radial-gradient(circle at center, #83243a 0%, #570b1d 100%);
}
.sub-header.no-pattern::after, .sub-header.no-pattern::before {
    display: none;
}
.sub-header .center-contain {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media (max-width: 992px) {
    .sub-header {
        padding: 120px 0px 40px;
    }
}
.sub-header .contain {
    width: 100%;
    text-align: center;
}
.sub-header .contain .title {
    font-size: 35px;
    font-weight: 900;
    color: var(--light-color);
    margin-bottom: 20px;
}
.sub-header .contain .desc {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0px;
}
.sub-header .list {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 5px;
    margin: 15px 0px;
}
.sub-header .list li {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-color);
    margin: 0px;
    background-color: var(--yellow-color);
    border-radius: 50px;
    padding: 5px 10px;
}
.sub-header .lawyer-data {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    align-items: flex-start;
    align-content: flex-start;
}
.sub-header .lawyer-data .user-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}
@media (max-width: 992px) {
    .sub-header .lawyer-data .user-img {
        width: 80px;
        height: 80px;
    }
}
.sub-header .lawyer-data .user-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.sub-header .lawyer-data .data {
    width: calc(100% - 150px);
}
@media (max-width: 992px) {
    .sub-header .lawyer-data .data {
        width: calc(100% - 80px);
    }
}
.sub-header .lawyer-data .data h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--light-color);
    margin-bottom: 0px;
}
@media (max-width: 992px) {
    .sub-header .lawyer-data .data h1 {
        font-size: 24px;
    }
}
.sub-header .lawyer-data p {
    font-size: 15px;
    font-weight: 500;
    color: var(--yellow-color);
    margin: 18px 0px;
}
@media (max-width: 992px) {
    .sub-header .lawyer-data p {
        font-size: 12px;
        margin: 10px 0px;
    }
}
.sub-header .lawyer-data ul {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 20px;
}
.sub-header .lawyer-data ul li {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.sub-header .lawyer-data ul li img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
}
.sub-header .lawyer-data ul li span {
    color: var(--light-color);
    font-size: 15px;
    font-weight: 500;
}
.sub-header .lawyer-data ul li:last-child img {
    filter: var(--yellow-filter);
}
.sub-header .price-data {
    width: 100%;
    height: 100%;
    padding: 26px;
    background-color: #bd8894;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media (max-width: 992px) {
    .sub-header .price-data {
        padding: 15px 10px;
        border-radius: 10px;
    }
}
.sub-header .price-data p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
}
@media (max-width: 992px) {
    .sub-header .price-data p {
        margin-bottom: 10px;
    }
    .sub-header .price-data p:last-child {
        margin-bottom: 0px;
    }
}
.sub-header .price-data p span {
    font-weight: 900;
    font-size: 20px;
}
.sub-header .price-data p:last-child {
    margin: 0px !important;
}
.sub-header .price-data .custom-btn {
    width: 100%;
    margin-top: 10px;
}

.heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
@media (min-width: 992px) {
    .heading {
        width: 80%;
        margin: 0px auto 40px;
    }
}
.heading .title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .heading .title {
        font-size: 21px;
        margin-bottom: 15px;
        line-height: 30px;
    }
}
.heading .desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 0px;
}

.custom-btn {
    width: 160px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    border: 1px solid;
    transition: all 0.3s ease-in-out;
}
.custom-btn::after, .custom-btn::before {
    content: "";
    position: absolute;
    width: 55%;
    height: 100%;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease-in;
}
.custom-btn::after {
    left: 0;
}
.custom-btn::before {
    right: 0;
}
.custom-btn img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.custom-btn span {
    font-size: 15px;
    font-weight: 900;
}
.custom-btn.primary-btn {
    border-color: var(--primary-color);
}
.custom-btn.primary-btn::after, .custom-btn.primary-btn::before {
    background-color: var(--primary-color);
}
.custom-btn.primary-btn img {
    fill: var(--light-filter);
}
.custom-btn.primary-btn span {
    color: var(--light-color);
}
.custom-btn.primary-btn:hover img {
    filter: var(--primary-filter);
    animation: tada 0.2s ease-in-out both;
}
.custom-btn.primary-btn:hover span {
    color: var(--primary-color);
}
.custom-btn.primary-border {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.custom-btn.primary-border::after, .custom-btn.primary-border::before {
    background-color: #fffbfc;
}
.custom-btn.primary-border img {
    filter: var(--primary-filter);
}
.custom-btn.primary-border span {
    color: var(--primary-color);
}
.custom-btn.primary-border:hover img {
    filter: var(--light-filter);
    animation: tada 0.2s ease-in-out both;
}
.custom-btn.primary-border:hover span {
    color: var(--light-color);
}
.custom-btn.secondary-btn {
    border-color: var(--secondary-color);
}
.custom-btn.secondary-btn::after, .custom-btn.secondary-btn::before {
    background-color: var(--secondary-color);
}
.custom-btn.secondary-btn img {
    filter: var(--light-filter);
}
.custom-btn.secondary-btn span {
    color: var(--light-color);
}
.custom-btn.secondary-btn:hover img {
    filter: var(--secondary-filter);
    animation: tada 0.2s ease-in-out both;
}
.custom-btn.secondary-btn:hover span {
    color: var(--secondary-color);
}
.custom-btn:hover {
    box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
    transform: scale(0.95);
}
.custom-btn:hover::after, .custom-btn:hover::before {
    width: 0px;
}

.lawyer-box {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 9;
    padding: 10px;
    background-color: var(--light-color);
    border: 1px solid rgba(131, 36, 58, 0.1);
    transition: all 0.3s ease-in-out;
}
.lawyer-box .image-contain {
    width: 100%;
    height: 245px;
    border-radius: 20px;
    overflow: hidden;
}
.lawyer-box .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}
.lawyer-box .content {
    width: 100%;
    padding: 20px 0px 0px;
}
.lawyer-box .content .flex-data {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.lawyer-box .content .flex-data .title {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 0px;
}
.lawyer-box .content .flex-data .job-desc {
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0px;
}
.lawyer-box .content .flex-data .price {
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0px;
}
.lawyer-box .content .flex-data .price span {
    color: var(--gray-color);
    font-weight: 900;
}
.lawyer-box .content .flex-data .session-count {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 5px;
}
.lawyer-box .content .flex-data .session-count img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.lawyer-box .content .flex-data .session-count span {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 900;
}
.lawyer-box .content .topics {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
}
.lawyer-box .content .topics li {
    width: -moz-fit-content;
    width: fit-content;
    padding: 3px 8px;
    background-color: #f5efea;
    border-radius: 50px;
    color: var(--dark-color);
    font-size: 10px;
    font-weight: 700;
}
.lawyer-box .content .flex-button {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: 15px;
}
.lawyer-box .content .flex-button .custom-btn {
    width: calc(50% - 3px);
    height: 40px;
}
.lawyer-box .content .flex-button .custom-btn span {
    font-size: 13px;
}
.lawyer-box .content .flex-button .custom-btn img {
    width: 20px;
    height: 20px;
}
.lawyer-box .content .rate {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.lawyer-box .content .rate input {
    display: none;
}
.lawyer-box .content .rate label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}
.lawyer-box .content .rate input:checked ~ label,
.lawyer-box .content .rate label:hover,
.lawyer-box .content .rate label:hover ~ label {
    color: #ffc107;
}
.lawyer-box .content .rate img {
    width: 14px;
    height: 14px;
    filter: invert(100%) sepia(0%) saturate(7438%) hue-rotate(227deg) brightness(118%) contrast(73%);
    -o-object-fit: contain;
    object-fit: contain;
}
.lawyer-box .content .rate img.active {
    filter: invert(61%) sepia(95%) saturate(340%) hue-rotate(356deg) brightness(97%) contrast(110%);
}
.lawyer-box .content .rate span {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 900;
    margin-inline-start: 10px;
}
.lawyer-box:hover {
    transform: translateY(-10px) !important;
}
.lawyer-box:hover .title {
    color: var(--primary-color) !important;
}

i {
    font-size: 15px;
    color: #ccc;
    transition: all 0.3s ease;
}
i.active {
    color: #ffd700;
}

.navbar {
    width: 100%;
    padding: 30px 0px;
    position: fixed;
    transition: all 0.3s linear;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: var(--light-color);
}
.navbar.scrolled {
    padding: 10px 0px;
    box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
}
@media (max-width: 992px) {
    .navbar {
        padding: 10px 0px;
        box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
    }
}
.navbar .contain {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
.navbar .contain .brand-name img {
    width: 152px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}
.navbar .contain .hamburger {
    cursor: pointer;
    overflow: hidden;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 992px) {
    .navbar .contain .hamburger {
        display: none;
    }
}
.navbar .contain .hamburger .line-toggle {
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--light-color);
    border-radius: 5px;
    transition: all 0.6s;
}
.navbar .contain .hamburger .line-toggle:first-child {
    transform: translateY(-10px) translateX(-5px);
    width: 30px;
    transition-delay: 0s;
}
.navbar .contain .hamburger .line-toggle:nth-child(2) {
    transition-delay: 0.12s;
}
.navbar .contain .hamburger .line-toggle:last-child {
    transform: translateY(10px) translateX(-5px);
    width: 30px;
    transition-delay: 0s;
}
.navbar .contain .hamburger.active {
    background-color: var(--light-color);
}
.navbar .contain .hamburger.active .line-toggle:first-child {
    background: var(--primary-color);
    transform: translateY(0) translateX(0) rotate(45deg);
    width: 40px;
    transition-delay: 0.1s;
}
.navbar .contain .hamburger.active .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s;
}
.navbar .contain .hamburger.active .line-toggle:last-child {
    background: var(--primary-color);
    transform: translateY(0) translateX(0) rotate(314deg);
    width: 40px;
    transition-delay: 0.1s;
}
.navbar .contain .navbar-nav {
    flex-direction: row;
    gap: 20px;
}
@media (max-width: 992px) {
    .navbar .contain .navbar-nav {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 70px;
        right: -100%;
        background-color: var(--light-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 15px;
        transition: all 0.3s ease-in-out;
        gap: 0px;
        overflow-y: scroll;
    }
    .navbar .contain .navbar-nav::-webkit-scrollbar-track {
        background-color: transparent !important;
    }
    .navbar .contain .navbar-nav::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.5);
        border-radius: 8px;
    }
    .navbar .contain .navbar-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.5);
    }
    html[dir=ltr] .navbar .contain .navbar-nav {
        left: -100%;
        right: unset;
    }
    html[dir=ltr] .navbar .contain .navbar-nav.active-nav {
        left: 0px;
        right: unset;
    }
    .navbar .contain .navbar-nav.active-nav {
        right: 0px;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item {
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInSlide 0.5s ease-out forwards;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(3) {
        animation-delay: 0.3s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(4) {
        animation-delay: 0.4s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(5) {
        animation-delay: 0.5s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(6) {
        animation-delay: 0.6s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(7) {
        animation-delay: 0.7s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(8) {
        animation-delay: 0.8s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(9) {
        animation-delay: 0.9s;
    }
    .navbar .contain .navbar-nav.active-nav .nav-item:nth-child(10) {
        animation-delay: 1s;
    }
}
.navbar .contain .navbar-nav .nav-item {
    padding: 0px;
    margin: 0px;
}
@media (max-width: 992px) {
    .navbar .contain .navbar-nav .nav-item {
        width: 100%;
        padding: 10px 0px;
        border-bottom: 1px solid rgba(131, 36, 58, 0.1);
    }
    .navbar .contain .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
}
@media (min-width: 992px) {
    .navbar .contain .navbar-nav .nav-item.mobile-only {
        display: none;
    }
}
.navbar .contain .navbar-nav .nav-item.mobile-only .flex-data {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.navbar .contain .navbar-nav .nav-item.mobile-only .flex-data .word {
    font-size: 19px;
    font-weight: 900;
    color: var(--secondary-color);
}
.navbar .contain .navbar-nav .nav-item.mobile-only .download-word {
    font-size: 16px;
    margin-bottom: 9px;
}
.navbar .contain .navbar-nav .nav-item .nav-link {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    z-index: 9;
    padding: 0px 20px;
}
@media (max-width: 992px) {
    .navbar .contain .navbar-nav .nav-item .nav-link {
        width: -moz-fit-content;
        width: fit-content;
    }
}
.navbar .contain .navbar-nav .nav-item .nav-link::after, .navbar .contain .navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--yellow-color);
    transform: rotate(0deg) scale(0);
    transition: all 0.3s ease-in;
    top: calc(50% - 7.5px);
    z-index: -1;
}
.navbar .contain .navbar-nav .nav-item .nav-link::after {
    left: 0;
}
.navbar .contain .navbar-nav .nav-item .nav-link::before {
    right: 0;
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover, .navbar .contain .navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color);
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover::after, .navbar .contain .navbar-nav .nav-item .nav-link:hover::before, .navbar .contain .navbar-nav .nav-item .nav-link.active::after, .navbar .contain .navbar-nav .nav-item .nav-link.active::before {
    transform: rotate(45deg) scale(1);
}
.navbar .contain .social-media span {
    color: var(--secondary-color);
}
.navbar .contain .social-media a img {
    filter: var(--secondary-filter);
}
.navbar .contain .lang {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 50px;
    background-color: #f4f4f4;
    transition: all 0.3s ease-in;
}
.navbar .contain .lang span {
    color: var(--secondary-color);
    font-weight: 900;
    color: var(--secondary-color);
}
.navbar .contain .lang:hover {
    background-color: var(--primary-color);
    transform: scale(0.95);
}
.navbar .contain .lang:hover span {
    animation: fadeInLeft 0.4s linear both;
    color: var(--light-color);
}
.navbar .contain .button-contain {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
@media (max-width: 992px) {
    .navbar .contain .button-contain {
        display: none;
    }
}

header {
    width: 100%;
    padding: 150px 0px 40px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    background: linear-gradient(90deg, #f4f4f2, transparent);
}
@media (max-width: 992px) {
    header {
        padding: 80px 0px 30px;
    }
}
header .contain {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
header .contain .sub-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}
@media (max-width: 992px) {
    header .contain .sub-title {
        font-size: 18px;
        text-align: center;
    }
}
header .contain .title {
    font-size: 40px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0px;
}
@media (max-width: 992px) {
    header .contain .title {
        text-align: center;
        font-size: 18px;
        line-height: 30px;
    }
}
header .contain .title span {
    color: var(--primary-color);
}
header .contain .desc {
    font-size: 22px;
    font-weight: 500;
    color: var(--gray-color);
    margin: 20px 0px 30px;
}
@media (max-width: 992px) {
    header .contain .desc {
        font-size: 15px;
        text-align: center;
        margin: 15px 0px 15px;
    }
}
header .contain .social-media {
    margin-top: 20px;
}
@media (max-width: 992px) {
    header .contain .social-media {
        margin-top: 20px;
    }
}
header .image-contain {
    width: 100%;
    height: 400px;
    animation: translateY 1s ease-in-out infinite alternate both;
}
@media (max-width: 992px) {
    header .image-contain {
        height: 300px;
    }
}
header .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
}
html[dir=ltr] header .image-contain img {
    -o-object-position: center;
    object-position: center;
}
@media (max-width: 992px) {
    header .image-contain img {
        -o-object-position: center;
        object-position: center;
    }
}

.who .heading,
.review .heading,
.lawyer .heading {
    margin-bottom: 20px !important;
}
.who .swiper-wrapper,
.review .swiper-wrapper,
.lawyer .swiper-wrapper {
    padding: 20px 0px 70px;
}
.who .container,
.review .container,
.lawyer .container {
    position: relative;
}
.who .full-button-contain,
.review .full-button-contain,
.lawyer .full-button-contain {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
@media (max-width: 992px) {
    .who .full-button-contain,
    .review .full-button-contain,
    .lawyer .full-button-contain {
        margin-top: 20px;
    }
}
@media (min-width: 992px) {
    .who .full-button-contain,
    .review .full-button-contain,
    .lawyer .full-button-contain {
        width: -moz-fit-content;
        width: fit-content;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }
}
.who .full-button-contain .custom-btn,
.review .full-button-contain .custom-btn,
.lawyer .full-button-contain .custom-btn {
    width: 250px;
}
html[dir=rtl] .who .full-button-contain .custom-btn img,
html[dir=rtl] .review .full-button-contain .custom-btn img,
html[dir=rtl] .lawyer .full-button-contain .custom-btn img {
    transform: scaleX(-1);
}
html[dir=rtl] .who .full-button-contain .custom-btn:hover img,
html[dir=rtl] .review .full-button-contain .custom-btn:hover img,
html[dir=rtl] .lawyer .full-button-contain .custom-btn:hover img {
    transform: scaleX(-1);
}

.mobile-steps .box {
    width: 100%;
    padding: 20px 15px;
    position: relative;
    z-index: 9;
    transition: all 0.3s linear;
    text-align: center;
    margin-bottom: 100px;
}
@media (max-width: 992px) {
    .mobile-steps .box {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
}
.mobile-steps .box::after, .mobile-steps .box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    transition: all 0.3s linear;
}
.mobile-steps .box::before {
    background-color: var(--primary-color);
    bottom: 0px;
    right: 0px;
    z-index: -1;
}
.mobile-steps .box::after {
    background-color: var(--primary-color);
    bottom: -15px;
    right: -15px;
    z-index: -2;
}
html[dir=ltr] .mobile-steps .box::after {
    left: -15px;
    right: unset;
}
.mobile-steps .box h3 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}
.mobile-steps .box p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}
.mobile-steps .box:hover {
    transform: translateY(-10px);
}
.mobile-steps .box:hover::after {
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.mobile-steps .box:hover h3 {
    color: var(--light-color);
}
.mobile-steps .box:hover p {
    color: rgba(255, 255, 255, 0.7);
}
.mobile-steps .data-contain {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.mobile-steps .mokeup-data {
    width: 100%;
    height: 430px;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: url("../images/icons/screens.svg") center/contain no-repeat;
}
@media (max-width: 992px) {
    .mobile-steps .mokeup-data {
        height: 460px;
    }
}
@media (min-width: 992px) {
    .mobile-steps .mokeup-data.another-mokeup .device {
        width: 100%;
        right: 0px;
    }
}
.mobile-steps .mokeup-data.another-mokeup .button {
    width: 30px;
    height: 30px;
    background-color: var(--dark-color) !important;
    top: calc(50% - 15px);
    z-index: 9;
    border-radius: 10px;
    position: absolute;
}
.mobile-steps .mokeup-data.another-mokeup .button::after {
    color: var(--light-color) !important;
    font-size: 15px;
    content: ">";
    display: flex;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.mobile-steps .mokeup-data.another-mokeup .button.swiper-button-nexts {
    right: 20%;
}
@media (max-width: 992px) {
    .mobile-steps .mokeup-data.another-mokeup .button.swiper-button-nexts {
        right: 15%;
    }
}
.mobile-steps .mokeup-data.another-mokeup .button.swiper-button-nexts::after {
    content: ">";
}
.mobile-steps .mokeup-data.another-mokeup .button.swiper-button-prevs::after {
    content: "<";
}

html[dir="rtl"] .mobile-steps .mokeup-data.another-mokeup .button.swiper-button-nexts::after {
    content: "<";
}
html[dir="rtl"] .mobile-steps .mokeup-data.another-mokeup .button.swiper-button-prevs::after {
    content: ">";
}
.mobile-steps .mokeup-data.another-mokeup .button.swiper-button-prevs {
    left: 20%;
}
@media (max-width: 992px) {
    .mobile-steps .mokeup-data.another-mokeup .button.swiper-button-prevs {
        left: 15%;
        right: unset;
    }
}
@media (min-width: 992px) {
    .mobile-steps .mokeup-data.lab-device .device {
        width: 51%;
        right: 0px;
    }
}
.mobile-steps .mokeup-data.lab-device .button {
    width: 30px;
    height: 30px;
    background-color: var(--dark-color);
    top: calc(50% - 15px);
    z-index: 9;
    border-radius: 10px;
    margin: 0px !important;
}
.mobile-steps .mokeup-data.lab-device .button::after {
    color: var(--light-color);
    font-size: 15px;
}
.mobile-steps .mokeup-data.lab-device .button.swiper-button-nexts {
    right: -10px;
}
@media (max-width: 992px) {
    .mobile-steps .mokeup-data.lab-device .button.swiper-button-nexts {
        right: 0%;
    }
}
.mobile-steps .mokeup-data.lab-device .button.swiper-button-prevs {
    right: 50%;
    left: unset;
}
@media (max-width: 992px) {
    .mobile-steps .mokeup-data.lab-device .button.swiper-button-prevs {
        left: 0%;
        right: unset;
    }
}
.mobile-steps .mokeup-data .device {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.mobile-steps .mokeup-data .swiper {
    width: 96%;
    height: 98%;
}
.mobile-steps .mokeup-data .swiper .swiper-slide {
    margin: 0px;
}
.mobile-steps .mokeup-data .swiper img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
@media (max-width: 992px) {
    .mobile-steps .heading {
        margin-bottom: 20px;
    }
}
.mobile-steps .list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0px;
}
@media (max-width: 992px) {
    .mobile-steps .list {
        justify-content: flex-start;
        margin-top: 0px;
    }
}
.mobile-steps .list li {
    width: 100%;
    padding: 12px 10px;
    background-color: #f5f5f5;
    border: 1px solid var(--yellow-color);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 15px;
}
@media (min-width: 992px) {
    .mobile-steps .list li {
        height: 110px;
        overflow: hidden;
    }
}
.mobile-steps .list li h3 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}
.mobile-steps .list li p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}
.mobile-steps .list li:hover, .mobile-steps .list li.active {
    background-color: var(--primary-color);
}
.mobile-steps .list li:hover h3, .mobile-steps .list li.active h3 {
    color: var(--light-color);
}
.mobile-steps .list li:hover p, .mobile-steps .list li.active p {
    color: rgba(255, 255, 255, 0.7);
}
.mobile-steps .heading.margin-shape {
    margin: 40px auto 24px !important;
    text-align: center;
}
@media (max-width: 992px) {
    .mobile-steps .heading.margin-shape {
        margin: 0px 0px 20px !important;
    }
}
.mobile-steps .button-contain {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
}
@media (max-width: 992px) {
    .mobile-steps .button-contain .custom-btn {
        width: calc(50% - 10px);
    }
    .mobile-steps .button-contain .custom-btn img {
        width: 20px;
        height: 20px;
    }
    .mobile-steps .button-contain .custom-btn span {
        font-size: 12px;
    }
}

.download .contain {
    width: 100%;
    padding: 30px 88px 0px;
    background: radial-gradient(circle at center, #c54563 0%, #781b30 100%);
    border-radius: 40px;
    overflow: hidden;
}
@media (max-width: 992px) {
    .download .contain {
        padding: 30px 15px 0px;
        border-radius: 15px;
    }
}
.download .contain .image-contain {
    width: 100%;
    height: 400px;
    animation: translateX 1s ease-in-out infinite alternate both;
}
@media (max-width: 992px) {
    .download .contain .image-contain {
        height: 300px;
    }
}
.download .contain .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom;
    object-position: bottom;
}
.download .contain .content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-content: center;
    align-items: center;
}
.download .contain .content .brand-name img {
    width: 240px;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
}
.download .contain .content h2 {
    color: var(--light-color);
    font-size: 36px;
    font-weight: 900;
    margin: 15px 0px 10px;
}
@media (max-width: 992px) {
    .download .contain .content h2 {
        font-size: 18px;
        line-height: 30px;
    }
}
.download .contain .content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
}
@media (min-width: 992px) {
    .download .contain .content p {
        width: 70%;
        margin: 0px auto 40px;
    }
}
@media (max-width: 992px) {
    .download .contain .content p {
        margin-bottom: 20px;
        font-size: 14px;
    }
}
.download .contain .content .download-contain {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.question .contain {
    width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    align-items: center;
    align-content: center;
}
.question .contain img {
    width: 100%;
    height: 350px;
    -o-object-fit: contain;
    object-fit: contain;
    animation: translateY 1s ease-in-out infinite alternate;
    -o-object-position: center;
    object-position: center;
}
@media (max-width: 992px) {
    .question .contain img {
        height: 240px;
    }
}
.question .card {
    width: 100%;
    padding: 0px;
    border: 1px solid rgba(131, 36, 58, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
@media (max-width: 992px) {
    .question .card {
        border-radius: 12px;
    }
}
.question .card:last-child {
    margin-bottom: 0px;
}
.question .card .card-header {
    width: 100%;
    padding: 0px;
    background-color: transparent;
    border-radius: 0px;
    border: 0px;
}
.question .card .card-header .btn {
    width: 100%;
    text-align: start;
    margin: 0px;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    z-index: 9;
    font-weight: 900;
    color: var(--semiDark);
    padding: 10px 20px;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.35);
    gap: 10px;
}
@media (max-width: 992px) {
    .question .card .card-header .btn {
        padding: 10px 8px;
        font-size: 14px;
        padding-inline-end: 50px;
    }
}
.question .card .card-header .btn span {
    font-size: 20px;
    font-weight: 900;
    color: var(--gray-color);
}
@media (max-width: 992px) {
    .question .card .card-header .btn span {
        font-size: 14px;
    }
}
.question .card .card-header .btn::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url("../images/icons/question.svg") center/contain no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    transition: all 0.3s linear;
    z-index: -1;
    top: calc(50% - 10px);
    left: 10px;
}
@media (max-width: 992px) {
    .question .card .card-header .btn::after {
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
    }
}
html[dir=ltr] .question .card .card-header .btn::after {
    right: 10px;
    left: unset;
}
.question .card .card-header .btn[aria-expanded=true] {
    background-color: rgba(120, 27, 48, 0.1);
    color: var(--primary-color);
}
.question .card .card-header .btn[aria-expanded=true] span {
    color: var(--primary-color);
}
.question .card .card-header .btn[aria-expanded=true]::after {
    transform: rotate(45deg);
}
.question .card .card-body {
    padding: 10px 14px 10px;
    border-radius: 0px;
    border: 0px;
    background-color: var(--light-color);
}
@media (max-width: 992px) {
    .question .card .card-body {
        padding: 0px 10px 15px;
    }
}
.question .card .card-body p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    margin: 0px;
}
@media (max-width: 992px) {
    .question {
        padding-bottom: 0px;
        overflow: hidden;
    }
}

.lawyer-profile .box,
.review .box {
    width: 100%;
    padding: 0px 15px 20px;
    position: relative;
    z-index: 9;
    text-align: center;
    transition: all 0.3s linear;
}
.lawyer-profile .box::after,
.review .box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 90%;
    background: rgba(242, 242, 242, 0.5) url("../images/icons/qoute.svg") center/contain no-repeat;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s linear;
}
.lawyer-profile .box .user-img,
.review .box .user-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0px auto;
    border: 10px solid var(--light-color);
}
.lawyer-profile .box .user-img img,
.review .box .user-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.lawyer-profile .box .contain,
.review .box .contain {
    width: 100%;
    padding: 20px 0px 0px;
}
.lawyer-profile .box .contain h3,
.review .box .contain h3 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}
.lawyer-profile .box .contain p,
.review .box .contain p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}
.lawyer-profile .box .session-count,
.review .box .session-count {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}
.lawyer-profile .box .session-count img,
.review .box .session-count img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.lawyer-profile .box .session-count span,
.review .box .session-count span {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
}
.lawyer-profile .box .rate,
.review .box .rate {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}
.lawyer-profile .box .rate img,
.review .box .rate img {
    width: 14px;
    height: 14px;
    filter: invert(100%) sepia(0%) saturate(7438%) hue-rotate(227deg) brightness(118%) contrast(73%);
    -o-object-fit: contain;
    object-fit: contain;
    transition: all 0.3s ease;
}
.lawyer-profile .box .rate img.active,
.review .box .rate img.active {
    filter: invert(61%) sepia(95%) saturate(340%) hue-rotate(356deg) brightness(97%) contrast(110%);
}
.lawyer-profile .box .rate i,
.review .box .rate i {
    font-size: 15px;
    color: #ccc;
    transition: all 0.3s ease;
}
.lawyer-profile .box .rate i.active,
.review .box .rate i.active {
    color: #ffd700;
}
.lawyer-profile .box .rate span,
.review .box .rate span {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 900;
    margin-inline-start: 10px;
}
.lawyer-profile .box:hover,
.review .box:hover {
    transform: translateY(-10px);
}
.lawyer-profile .box:hover h3,
.review .box:hover h3 {
    color: var(--primary-color);
}

.contact-us .contain {
    width: 100%;
    padding: 80px 40px 60px;
    background: url("../images/icons/contact.png") center/cover no-repeat;
    border-radius: 40px;
    position: relative;
    z-index: 9;
}
@media (max-width: 992px) {
    .contact-us .contain {
        padding: 30px 15px 20px;
        border-radius: 15px;
    }
}
.contact-us .contain .contact-data {
    width: 100%;
    padding: 20px 15px;
    border: 1px solid var(--light-color);
    border-radius: 25px;
}
@media (max-width: 992px) {
    .contact-us .contain .contact-data {
        padding: 15px 10px;
        border-radius: 10px;
    }
}
.contact-us .contain .contact-data h3 {
    color: var(--light-color);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 40px;
}
@media (max-width: 992px) {
    .contact-us .contain .contact-data h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }
}
.contact-us .contain .contact-data .contact-link {
    width: 100%;
    padding: 15px 24px;
    background-color: rgba(242, 242, 242, 0.5);
    display: block;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .contact-us .contain .contact-data .contact-link {
        padding: 10px 15px;
        margin-bottom: 15px;
    }
}
.contact-us .contain .contact-data .contact-link .flex-data {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.contact-us .contain .contact-data .contact-link .flex-data img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}
.contact-us .contain .contact-data .contact-link .flex-data .name {
    font-size: 18px;
    font-weight: 900;
    color: var(--light-color);
}
.contact-us .contain .contact-data .contact-link .data {
    font-size: 15px;
    font-weight: 700;
    color: var(--light-color);
}
.contact-us .contain .contact-data .contact-link:hover {
    transform: translateY(-10px);
}
.contact-us .contain .contact-data .social-media {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid var(--light-color);
}
.contact-us .contain .contact-data .social-media span {
    color: var(--light-color);
}
.contact-us .contain .contact-data .social-media img {
    filter: var(--light-filter);
}
.contact-us .contain .form-contain {
    width: 100%;
    padding: 20px 40px;
    border-radius: 25px;
    background-color: var(--light-color);
}
@media (max-width: 992px) {
    .contact-us .contain .form-contain {
        padding: 15px 10px;
        border-radius: 10px;
    }
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}
.form-group label {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}
@media (max-width: 992px) {
    .form-group label {
        font-size: 15px;
    }
}
.form-group .form-icon {
    width: 100%;
    height: 50px;
    position: relative;
    z-index: 9;
}
.form-group .form-icon.form-phone {
    z-index: 99;
}
.form-group .form-icon.form-phone li {
    color: var(--dark-color) !important;
}
.form-group .form-icon.text-area {
    height: 100px;
}
.form-group .form-icon.text-area img {
    top: 10px;
}
.form-group .form-icon.text-area .form-control {
    padding-top: 10px;
    resize: none;
}
.form-group .form-icon img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    z-index: 9;
    pointer-events: none;
}
html[dir=ltr] .form-group .form-icon img {
    left: 10px;
    right: unset;
}
.form-group .form-icon .form-control {
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    padding-inline-start: 40px;
    border: 1px solid rgba(120, 27, 48, 0.1);
    color: var(--secondary-color);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
}
.form-group .form-icon .form-control::-moz-placeholder {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
}
.form-group .form-icon .form-control::placeholder {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
}
.form-group .form-icon:hover {
    border-color: var(--primary-color);
}

footer {
    width: 100%;
    padding: 50px 0px 15px;
    background-color: var(--secondary-color);
    position: relative;
    z-index: 9;
}
footer::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/icons/footer_pattern.svg") bottom right/contain no-repeat;
    bottom: 0;
    left: 0;
    z-index: -1;
}
@media (max-width: 992px) {
    footer::after {
        opacity: 0.4;
    }
}
footer .contain {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    gap: 20px;
}
footer .contain .brand-name img {
    width: 200px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}
footer .contain p {
    color: var(--light-color);
    font-weight: 500;
    font-size: 15px;
    margin: 0px;
}
footer .contain .social-media img {
    filter: var(--light-filter);
}
footer .copyrights {
    width: 100%;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 15px;
    text-align: center;
}
footer .copyrights p {
    color: var(--light-color);
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}
footer .copyrights p a {
    font-size: 15px;
    font-weight: 900;
    color: var(--light-color);
}
@media (max-width: 992px) {
    footer .copyrights p {
        font-size: 12px;
    }
}

.nav.nav-tabs {
    border: 0px;
    margin-bottom: 0px;
    padding-bottom: 4px;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-bottom: 0px;
}
.nav.nav-tabs::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.nav.nav-tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.7) !important;
}
.nav.nav-tabs.margin-shape {
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .nav.nav-tabs.margin-shape {
        margin-bottom: 15px;
    }
}
.nav.nav-tabs.three-tab li {
    width: 33.3333333333%;
}
.nav.nav-tabs.three-tab li .nav-link {
    width: 100%;
    min-width: 100%;
}
.nav.nav-tabs li {
    padding: 0px;
    margin: 0px;
}
.nav.nav-tabs li .nav-link {
    width: 100%;
    min-width: 150px;
    height: 60px;
    padding: 0px 10px;
    border-radius: 10px;
    background-color: var(--light-color);
    border: 1px solid #e4e4e6;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--semiDark-color);
}
@media (max-width: 992px) {
    .nav.nav-tabs li .nav-link {
        font-size: 10px;
        height: 40px;
    }
}
.nav.nav-tabs li .nav-link:hover {
    box-shadow: 0px 0px 10px rgba(120, 27, 48, 0.1);
}
.nav.nav-tabs li .nav-link.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

.tab-pane.fade.show.active {
    animation: fadeInSlide 0.4s ease-in-out;
}

@media (min-width: 992px) {
    .blogs .blog-box {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        gap: 15px;
    }
}
@media (min-width: 992px) {
    .blogs .blog-box .image-contain {
        width: 240px;
        height: 300px;
    }
}
@media (min-width: 992px) {
    .blogs .blog-box .contain {
        width: calc(100% - 240px);
    }
}

.blog-box {
    width: 100%;
    border-radius: 32px;
    border: 1px solid #e5e5e5;
    position: relative;
    z-index: 9;
    overflow: hidden;
    padding: 16px;
    margin-bottom: 20px;
    transition: all 0.3s linear;
}
@media (max-width: 992px) {
    .blog-box {
        padding: 10px 5px;
        border-radius: 15px;
    }
}
.blog-box .image-contain {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
}
@media (max-width: 992px) {
    .blog-box .image-contain {
        border-radius: 10px;
        height: 140px;
    }
}
.blog-box .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.blog-box .date {
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 5px;
    background-color: #781b30;
    border-radius: 50px;
    border: 1px solid rgba(120, 27, 48, 0.1);
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 15px;
    right: 15px;
}
html[dir=ltr] .blog-box .date {
    left: 15px;
    right: unset;
}
.blog-box .date img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}
.blog-box .date span {
    font-size: 15px;
    font-weight: 700;
    color: var(--light-color);
}
.blog-box .contain {
    width: 100%;
    padding-top: 16px;
}
.blog-box .contain h2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--semiDark);
    margin: 0px;
    line-height: 40px;
}
@media (max-width: 992px) {
    .blog-box .contain h2 {
        font-size: 16px;
        line-height: 20px;
    }
}
.blog-box .contain p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin: 16px 0px 22px;
}
@media (max-width: 992px) {
    .blog-box .contain p {
        margin: 15px 0px;
        font-size: 10px;
    }
}
.blog-box:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
}
.blog-box:hover h2 {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .padding-shape {
        padding: 0px 6px;
    }
}

.single-blog .date {
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 15px;
    background-color: #781b30;
    border: 1px solid rgba(120, 27, 48, 0.1);
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.single-blog .date img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}
.single-blog .date span {
    font-size: 15px;
    font-weight: 700;
    color: var(--light-color);
}
.single-blog .flex-head {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .single-blog .flex-head {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }
}
.single-blog .image-contain {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    z-index: 9;
}
@media (max-width: 992px) {
    .single-blog .image-contain {
        height: 230px;
    }
}
.single-blog .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.single-blog .share {
    padding: 20px 15px;
    border-radius: 10px;
    margin-top: 20px;
    background: var(--primary-color);
}
.single-blog .share .social-media {
    justify-content: center;
}
.single-blog .share .social-media span {
    color: var(--light-color);
}
.single-blog .share .social-media img {
    filter: var(--light-filter);
}
.single-blog .share li {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-color);
}
.single-blog h2 {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .single-blog h2 {
        font-size: 17px;
        line-height: 30px;
    }
}
.single-blog .type {
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 24px;
    background-color: #781b30;
    font-size: 15px;
    font-weight: 500;
    color: var(--light-color);
    margin-bottom: 10px;
    border-radius: 60px;
}

.fixed-icon {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
html[dir=ltr] .fixed-icon {
    left: unset;
    right: 10px;
}
.fixed-icon .whats {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #4a9551;
    display: flex;
    align-content: center;
    align-items: center;
}
.fixed-icon .whats img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}
.fixed-icon .call {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
}
.fixed-icon .call img {
    width: 15px;
    height: 15px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: var(--light-filter);
    display: block;
}

.about-us .contain {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.about-us .contain .sub-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-color);
    display: block;
    margin-bottom: 15px;
}
.about-us .contain h2 {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 0px;
}
@media (max-width: 992px) {
    .about-us .contain h2 {
        font-size: 20px;
    }
}
.about-us .contain .desc {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 500;
    margin: 32px 0px;
}
.about-us .contain .count {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 992px) {
    .about-us .contain .count {
        gap: 5px;
        justify-content: center;
    }
}
.about-us .contain .count li {
    text-align: center;
}
.about-us .contain .count li span {
    display: block;
}
.about-us .contain .count li span.number {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 5px;
}
@media (max-width: 992px) {
    .about-us .contain .count li span.number {
        font-size: 19px;
    }
}
.about-us .contain .count li span.data {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-color);
}
@media (max-width: 992px) {
    .about-us .contain .count li span.data {
        font-size: 11.5px;
    }
}
.about-us .image-contain {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    animation: translateY 1s ease-in-out infinite alternate;
}
@media (max-width: 992px) {
    .about-us .image-contain {
        height: 300px;
    }
}
.about-us .image-contain img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.visions .box {
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    background-color: var(--light-color);
    border-radius: 15px 50px 15px 50px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s linear;
}
.visions .box img {
    width: 80px;
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: var(--primary-filter);
    margin: 0px auto;
    display: block;
}
.visions .box h2 {
    color: var(--dark-color);
    font-size: 25px;
    font-weight: 900;
    margin: 15px 0px;
}
.visions .box p {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 500;
    margin: 0px;
}
.visions .box:hover {
    box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
    transform: translateY(-10px);
    background-color: var(--primary-color);
}
.visions .box:hover img {
    animation: tada 0.2s ease-in-out both;
    filter: var(--light-filter);
}
.visions .box:hover h2 {
    color: var(--light-color);
}
.visions .box:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.why .box {
    width: 100%;
    padding: 20px 15px;
    background-color: var(--primary-color);
    border-radius: 20px;
    position: relative;
    z-index: 9;
    transition: transform 0.3s linear;
}
@media (min-width: 992px) {
    .why .box {
        padding: 40px 20px;
    }
}
.why .box h3 {
    color: var(--light-color);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}
.why .box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
}
.why .box:hover {
    box-shadow: 0px 0px 10px rgba(131, 36, 58, 0.1);
    background-color: var(--secondary-color);
    transform: translateY(-10px);
}

.pagination-list {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 100%;
}
.pagination-list li {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
}
.pagination-list li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.pagination-list li a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

@media (max-width: 992px) {
    .filter-contain {
        display: none;
        transition: all 0.3s linear;
    }
    .filter-contain.active-filter {
        animation: fadeIn 0.3s linear;
        display: block;
    }
}
.filter-contain .form-group.form-search {
    margin-bottom: 30px;
}
html[dir=rtl] .filter-contain .form-select {
    background-position: left 10px center !important;
    padding-inline-start: 15px;
}
.filter-contain .form-control {
    border-color: #e5e7eb !important;
    border-radius: 50px !important;
    background-color: #f9f9f9 !important;
}
.filter-contain .flex-button {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
}
.filter-contain .flex-button .custom-btn {
    width: calc(50% - 5px);
}
.filter-contain .box {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 15px;
}
@media (max-width: 992px) {
    .filter-contain .box {
        padding: 15px 10px;
        border-radius: 10px;
    }
}
.filter-contain .box:last-child {
    margin-bottom: 0px;
}
.filter-contain .box p {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 20px;
}
.filter-contain .box p.alert {
    padding: 0px;
    position: relative;
    z-index: 9;
    padding-inline-start: 30px;
    margin: 0px;
}
.filter-contain .box p.alert::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: url("../images/icons/alert.svg") center/contain no-repeat;
    filter: var(--primary-filter);
    top: calc(50% - 12px);
    right: 0px;
}
html[dir=ltr] .filter-contain .box p.alert::after {
    right: unset;
    left: 0px;
}
.filter-contain .box .card {
    width: 100%;
    border: 0px;
    padding: 0px;
    margin-bottom: 20px;
}
.filter-contain .box .card:last-child {
    margin-bottom: 0px;
}
.filter-contain .box .card .card-header {
    width: 100%;
    padding: 0px;
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    margin: 0px;
}
.filter-contain .box .card .card-body {
    padding: 15px 10px 0px;
}
.filter-contain .box .btn {
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    margin: 0px;
    display: flex;
    align-content: center;
    align-items: center;
    border: 1px solid #e5e7eb;
    background-color: #f9f9f9;
    border-radius: 50px;
    gap: 10px;
    text-decoration: none;
    position: relative;
    z-index: 9;
}
.filter-contain .box .btn::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: url("../images/icons/check.svg") center/contain no-repeat;
    top: calc(50% - 7.5px);
    left: 15px;
    z-index: 9;
    transition: all 0.3s linear;
    transform: scale(0);
}
html[dir=ltr] .filter-contain .box .btn::after {
    left: unset;
    right: 15px;
}
.filter-contain .box .btn img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}
.filter-contain .box .btn span {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 700;
}
.filter-contain .box .btn[aria-expanded=true], .filter-contain .box .btn.active {
    background-color: var(--primary-color) !important;
}
.filter-contain .box .btn[aria-expanded=true] span, .filter-contain .box .btn.active span {
    color: var(--light-color);
}
.filter-contain .box .btn[aria-expanded=true] img, .filter-contain .box .btn.active img {
    filter: var(--light-filter);
}
.filter-contain .box .btn[aria-expanded=true]::after, .filter-contain .box .btn.active::after {
    transform: scale(1);
}

.filter-data {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
@media (min-width: 992px) {
    .filter-data {
        display: none;
    }
}
.filter-data p {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 900;
    margin: 0px;
}
.filter-data .filter-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 10px;
}
.filter-data .filter-icon img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: var(--light-filter);
}

.price-slider-container {
    width: 100%;
    margin-bottom: 20px;
}
.price-slider-container .price-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0px;
}
.price-slider-container .price-label .price-value {
    color: var(--primary-color);
    font-weight: 900;
}
.price-slider-container .price-slider {
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom: 0px;
}
.price-slider-container .price-slider .slider-track {
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
}
.price-slider-container .price-slider .slider-track .slider-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c54563 100%);
    border-radius: 4px;
    width: 0%;
    left: 0%;
    transition: all 0.3s ease;
}
.price-slider-container .price-slider .slider-thumb {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(131, 36, 58, 0.3);
}
.price-slider-container .price-slider .slider-thumb.left-thumb {
    left: 0%;
}
.price-slider-container .price-slider .slider-thumb.right-thumb {
    left: 100%;
}
.price-slider-container .price-slider .slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(131, 36, 58, 0.4);
}
.price-slider-container .price-slider .slider-thumb:active {
    transform: translate(-50%, -50%) scale(0.95);
}
.price-slider-container .price-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}
.price-slider-container .price-labels span {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    transition: color 0.3s ease;
}
.price-slider-container .price-labels span:hover {
    color: var(--primary-color);
}
.price-slider-container .price-labels span.active {
    color: var(--primary-color);
    font-weight: 700;
}

.wrapper {
    display: flex;
    align-items: center;
    align-content: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 15px;
}
.wrapper:last-child {
    margin-bottom: 0px;
}
.wrapper .radio-check {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 0px;
    border: 1px solid var(--primary-color) !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.wrapper .radio-check.radio-circle {
    border-radius: 50%;
}
.wrapper .radio-check.radio-circle::before {
    background: var(--primary-color);
    border-radius: 50%;
}
.wrapper .radio-check.radio-circle::after {
    background-color: var(--light-color);
}
.wrapper .radio-check::after, .wrapper .radio-check::before {
    content: "";
    position: absolute;
    transition: all 0.2s linear;
}
.wrapper .radio-check::before {
    background: url("../images/icons/check_data.svg") center/contain no-repeat;
    transform: scale(0);
    z-index: -1;
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    left: calc(50% - 7px);
}
.wrapper .radio-check::after {
    width: 100%;
    height: 0px;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    z-index: -2;
}
.wrapper .radio-check:checked {
    border-color: var(--primary-color) !important;
}
.wrapper .radio-check:checked::before {
    transform: scale(1);
}
.wrapper .radio-check:checked::after {
    height: 100%;
}
.wrapper .radio-title {
    color: #000;
    width: calc(100% - 30px);
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
    cursor: pointer;
    margin-bottom: 0px !important;
    margin-inline-start: 10px !important;
}
@media (max-width: 992px) {
    .wrapper .radio-title {
        font-size: 11px;
    }
}
.wrapper .radio-title .link {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}

.lawyer-profile {
    position: relative;
    z-index: 9;
    overflow: unset;
}
@media (max-width: 992px) {
    .lawyer-profile {
        overflow: hidden;
    }
}
.lawyer-profile .nav {
    background-color: #d1d5d8;
    border-radius: 20px;
    padding: 15px 10px;
    margin-bottom: 30px;
    justify-content: center;
    margin-top: -70px;
}
@media (max-width: 992px) {
    .lawyer-profile .nav {
        margin-top: 0px;
        padding: 8px 4px;
        overflow: hidden;
        gap: 6px;
        border-radius: 5px;
    }
}
.lawyer-profile .nav .nav-link.active {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}
@media (max-width: 992px) {
    .lawyer-profile .nav .nav-link {
        border-radius: 3px !important;
    }
}
.lawyer-profile .days {
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lawyer-profile .days li {
    height: 50px;
}
@media (min-width: 992px) {
    .lawyer-profile .days li {
        width: calc(14.2857142857% - 10px);
    }
}
@media (max-width: 992px) {
    .lawyer-profile .days li {
        width: 140px;
    }
}
.lawyer-profile .days li a {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #f3f4f6;
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.lawyer-profile .days li a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}
.lawyer-profile .flex-data {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
}
@media (max-width: 992px) {
    .lawyer-profile .flex-data {
        margin-bottom: 15px;
    }
}
.lawyer-profile .flex-data img {
    width: 24px;
    height: 24px;
    filter: var(--primary-filter);
    -o-object-fit: contain;
    object-fit: contain;
}
.lawyer-profile .flex-data h2 {
    color: var(--dark-color);
    font-size: 30px;
    font-weight: 900;
    margin: 0px;
}
@media (max-width: 992px) {
    .lawyer-profile .flex-data h2 {
        font-size: 20px;
    }
}
.lawyer-profile .desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.lawyer-profile p.title {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 900;
    margin: 20px 0px;
}
@media (min-width: 992px) {
    .lawyer-profile p.title {
        margin: 30px 0px;
    }
}
.lawyer-profile .time {
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lawyer-profile .time li a {
    width: 100px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 10px;
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}
.lawyer-profile .tab-pane {
    width: 100%;
    padding: 20px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
}
@media (max-width: 992px) {
    .lawyer-profile .tab-pane {
        padding: 15px 10px;
        border-radius: 10px;
    }
}
.lawyer-profile .certificate-detalis {
    width: 100%;
    position: relative;
    z-index: 9;
    padding-inline-start: 70px;
}
@media (max-width: 992px) {
    .lawyer-profile .certificate-detalis {
        padding-inline-start: 30px;
    }
}
.lawyer-profile .certificate-detalis::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #fde4e8;
    top: 0;
    right: 30px;
    z-index: -1;
}
@media (max-width: 992px) {
    .lawyer-profile .certificate-detalis::after {
        right: 10px;
    }
}
html[dir=ltr] .lawyer-profile .certificate-detalis::after {
    left: 30px;
    right: unset;
}
@media (max-width: 992px) {
    html[dir=ltr] .lawyer-profile .certificate-detalis::after {
        left: 10px;
    }
}
.lawyer-profile .certificate-detalis .certificate-box {
    width: 100%;
    position: relative;
    z-index: 9;
    text-align: start;
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}
@media (max-width: 992px) {
    .lawyer-profile .certificate-detalis .certificate-box {
        padding: 20px 10px;
        border-radius: 10px;
    }
}
.lawyer-profile .certificate-detalis .certificate-box::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url("../images/icons/cap.svg") center/contain no-repeat;
    top: 0;
    right: -60px;
    z-index: -1;
}
@media (max-width: 992px) {
    .lawyer-profile .certificate-detalis .certificate-box::after {
        width: 30px;
        height: 30px;
        right: -34px;
    }
}
html[dir=ltr] .lawyer-profile .certificate-detalis .certificate-box::after {
    left: -60px;
    right: unset;
}
@media (max-width: 992px) {
    html[dir=ltr] .lawyer-profile .certificate-detalis .certificate-box::after {
        left: -34px;
    }
}
.lawyer-profile .certificate-detalis .certificate-box .university {
    color: var(--gray-color);
    font-size: 12px;
    display: block;
    font-weight: 900;
    margin-bottom: 15px;
}
.lawyer-profile .certificate-detalis .certificate-box .date {
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 10px;
    background-color: #781b30;
    border-radius: 50px;
    color: var(--light-color);
    font-size: 15px;
}
@media (max-width: 992px) {
    .lawyer-profile .certificate-detalis .certificate-box .date {
        font-size: 10px;
        padding: 4px 5px;
    }
}
.lawyer-profile .certificate-detalis .certificate-box h3 {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 900;
    margin: 20px 0px;
}
@media (max-width: 992px) {
    .lawyer-profile .certificate-detalis .certificate-box h3 {
        font-size: 14px;
        margin: 10px 0px;
    }
}
.lawyer-profile .certificate-detalis .certificate-box p {
    color: var(--gray-color);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .lawyer-profile .certificate-detalis .certificate-box p {
        font-size: 12px;
        margin-bottom: 14px;
    }
}
@media (max-width: 992px) {
    .lawyer-profile .certificate-detalis .certificate-box .custom-btn {
        height: 40px;
    }
}

.iti__arrow {
    width: 12px;
    height: 12px;
    border: 0px;
    background: url("../images/icons/down_arrow.svg") center/contain no-repeat;
    filter: var(--primary-filter);
}

#telephone {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0px;
    padding: 0px;
    padding-inline-start: 0px;
    border-radius: 0px;
    margin-inline-start: 0px;
    font-size: 15px;
    font-weight: 500;
}

.iti {
    width: 100%;
}
.iti .iti__flag-container {
    border-radius: 10px 0 0 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-right: none;
    min-width: 80px;
}
.iti .iti__selected-flag {
    padding: 0 10px;
    background-color: #f8f9fa;
    border-radius: 10px 0 0 10px;
    min-width: 80px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.iti .iti__selected-flag:hover {
    background-color: #e9ecef;
}
.iti .iti__country-list {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.iti .iti__dial-code {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    margin-left: 5px;
    direction: ltr;
    display: inline-block;
}
.iti .iti__selected-flag::after {
    content: attr(data-dial-code);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    margin-left: 8px;
    position: relative;
    display: inline-block;
}
.iti .iti__arrow {
    margin-left: 5px;
}
html[dir=rtl] .iti .iti__flag-container {
    border-radius: 0 10px 10px 0;
    border-left: none;
    border-right: 1px solid #e9ecef;
}
html[dir=rtl] .iti .iti__selected-flag {
    border-radius: 0 10px 10px 0;
}
html[dir=rtl] .iti .iti__dial-code {
    margin-right: 5px;
    margin-left: 0;
}
html[dir=rtl] .iti .iti__arrow {
    margin-right: 5px;
    margin-left: 0;
}
html[dir=rtl] .iti .iti__selected-flag::after {
    margin-right: 8px;
    margin-left: 0;
    content: attr(data-dial-code);
}

.modal-dialog {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 0px;
}
.modal-dialog.big-modal {
    min-width: 700px;
}
.modal-dialog .modal-content {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body {
    width: 100%;
    border: 0px;
    padding: 0px;
    border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body .contain {
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    border-radius: 20px !important;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.modal-dialog .modal-content .modal-body .contain .icon {
    width: 85px;
    height: 85px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name {
    width: 190px;
    height: 50px;
    margin: 0px auto 30px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name img {
    width: 100% !important;
    height: 100% !important;
    margin-bottom: 0px;
    -o-object-fit: contain;
    object-fit: contain;
}
.modal-dialog .modal-content .modal-body .contain span.danger {
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-top: 15px;
    color: var(--primary-color);
}
.modal-dialog .modal-content .modal-body .contain h1 {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain p {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.iti--inline-dropdown .iti__dropdown-content,
[dir=rtl] .iti--allow-dropdown .iti__country-container,
[dir=rtl] .iti--show-selected-dial-code .iti__country-container {
    left: 0px;
    right: unset;
}

.who .blog-box h2 {
    font-size: 19px;
}
.who .blog-box p {
    font-size: 18px !important;
    margin-bottom: 0px !important;
}

html[dir=ltr] .iti--allow-dropdown .iti__country-container,
html[dir=ltr] .iti--show-selected-dial-code .iti__country-container,
html[dir=ltr] .iti--inline-dropdown .iti__dropdown-content {
    left: auto;
    right: 0px;
}

@media (max-width: 999px) {
    .order-mobile-0 {
        order: 0;
    }
    .order-mobile-1 {
        order: 1;
    }
}/*# sourceMappingURL=style.css.map */
