/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    /*
            Purple: hsl(250, 66%, 75%)
            Blue: hsl(207, 90%, 72%)
            Pink: hsl(356, 66%, 75%)
            Teal: hsl(174, 63%, 62%)
    */
    --first-hue: 48;
    --sat: 43.5%;
    --lig: 27.1%;
    --second-hue: 46;
    --first-color: hsl(var(--first-hue), var(--sat), var(--lig));
    --first-color-alt: hsl(var(--first-hue), var(--sat), 68%); /* -4% */
    --title-color: hsl(var(--first-hue), var(--sat), var(--lig));
    --text-color: hsla(0, 0%, 22%, 1);
    --border-color: hsla(0, 0%, 22%, 1);
    /*--text-color-light: hsl(var(--second-hue), 4%, 55%);*/
    /*=============== Font and typography ===============*/
    --biggest-font-size: 1.75rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --tiny-font-size: .625rem;
    /*============= Font weight =============*/
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    /*============= z index =============*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/*=============== BASE ===============*/
* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
}

ul,
ol {
    list-style: none;
}

.page-section ul,
.page-section ol {
    list-style: disc;
}

a {
    text-decoration: none;
    cursor: pointer;
}

input {
    width: 100%;
}

textarea {
    width: 100%;
    resize: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

p {
    margin-bottom: 16px;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1199px;
    margin: 0 auto;
    padding-right: .75rem;
    padding-left: .75rem;
}

.d-block {
    display: block !important;
}

.slide-back {
    width: auto;
    height: 400px;
    object-fit: contain;
}

.bg-primary {
    background-color: var(--first-color) !important;
}

.primary-btn {
    padding: 8px 20px;
    line-height: 1.5;
    font-size: 14px;
    display: inline-block;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    background-color: var(--first-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

    .primary-btn i {
        padding-left: 6px;
    }

.primary-btn-out {
    line-height: 1.5;
    font-size: 14px;
    display: inline-block;
    border: none;
    font-weight: 500;
    cursor: pointer;
    color: var(--first-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

.primary-btn-out i {
    padding-left: 6px;
}

.page-section {
    margin: 30px auto;
}

    :is(.page-section.crew-area h1, .page-section.crew-area h2, .page-section.crew-area h3, .page-section.crew-area h4, .page-section.crew-area h5, .page-section.crew-area h6) strong,
    .page-section.crew-area h1,
    .page-section.crew-area h2,
    .page-section.crew-area h3,
    .page-section.crew-area h4,
    .page-section.crew-area h5,
    .page-section.crew-area h6 {
        margin-bottom: 15px;
        font-weight: bold;
    }

.page-section.crew-area ul {
    margin-bottom: 15px;
}

.page-section.crew-area hr {
    margin: 15px 0;
}

.info-title {
    font-size: 28px;
    font-weight: var(--font-medium);
}

.page-title {
    font-size: 32px;
    font-weight: var(--font-semibold);
    text-align: start;
}

.page-subtitle {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--first-color);
    position: relative;
    font-weight: var(--font-medium);
    margin-bottom: 16px;
    text-align: start;
}

    .page-subtitle::before {
        content: "";
        display: block;
        width: 20px;
        margin-right: 10px;
        border: 1px solid var(--text-color);
        transform: translateY(-50%);
    }

.section-title {
    font-size: 22px;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
}

.info-input {
    position: relative;
}

    .info-input input,
    .info-input textarea {
        border: 1px solid var(--text-color);
        border-radius: 4px;
        padding: 14px;
    }

    .info-input label {
        font-size: 16px;
        padding: 0 10px;
        position: absolute;
        top: -13px;
        left: 14px;
        background-color: #fff;
    }

.line {
    width: 100%;
    display: block;
    border: 1px solid var(--first-color);
    margin: 20px 0px;
}

.custom-list .custom-list-item span {
    position: relative;
    padding-left: 10px;
}

    .custom-list .custom-list-item span:first-child::before {
        content: "";
        display: block;
        width: 10px;
        position: absolute;
        border: 1px solid var(--first-color);
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

.text-uppercase {
    text-transform: uppercase;
}

.text-white {
    color: #fff;
}

.menu-hamburger {
    display: none;
    width: 41px;
    height: 45px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

    .menu-hamburger span {
        display: block;
        position: absolute;
        height: 5px;
        width: 100%;
        background: var(--first-color);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

        .menu-hamburger span:nth-child(1) {
            top: 6px;
            transform-origin: left center;
        }

        .menu-hamburger span:nth-child(2) {
            top: 18px;
            transform-origin: left center;
        }

        .menu-hamburger span:nth-child(3) {
            top: 29px;
            transform-origin: left center;
        }

    .menu-hamburger.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 3px;
        left: 8px;
    }

    .menu-hamburger.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    .menu-hamburger.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 32px;
        left: 6px;
    }

@media screen and (max-width: 576px) {
    .primary-btn {
        font-size: 18px!important;
    }

    .primary-btn-out {
        font-size: 16px;
    }

    .info-input input, 
    .info-input textarea {
        font-size: 16px;
    }

    .info-input label {
        font-size: 18px;
        top: -14px;
    }
}

@media screen and (max-width: 768px) {
    .page-section {
        margin: 40px auto;
    }

    .slide-back {
        height: auto;
        object-fit: cover;
    }

    .section-title {
        font-size: 20px!important;
        margin-bottom: 10px;
        text-align: center;
    }

    .page-title {
        font-size: 28px;
        text-align: center;
    }

    .page-subtitle {
        justify-content: center;
        text-align: center;
    }

        .page-subtitle::after {
            content: "";
            display: block;
            width: 20px;
            margin-left: 10px;
            border: 1px solid var(--text-color);
            transform: translateY(-50%);
        }
}

@media screen and (max-width: 992px) {
    .info-title {
        font-size: 32px;
        text-align: center;
    }

    .search-area {
        display: none;
    }

    .no-scroll {
        overflow: hidden;
    }

    .menu-hamburger {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 16px;
        right: 20px;
    }

        .menu-hamburger .hamburger-icon {
            display: none;
            font-size: 36px;
            color: var(--text-color);
        }

        .menu-hamburger .xmark-icon {
            display: none;
            font-size: 36px;
            color: var(--text-color);
        }

    .menu {
        height: 70px;
        padding: 20px 20px 0;
        background-color: #fff;
        position: relative;
    }

        .menu.active .menu-group {
            transition: all 0.5s ease 0s;
            opacity: 1;
            right: 0;
        }

        .menu .menu-group {
            height: 100vh;
            width: 100%;
            background-color: #fff;
            opacity: 0;
            position: absolute;
            display: none !important;
            top: 70px;
            right: -100%;
            transition: all 0.5s ease 0s;
            overflow-y: auto;
            z-index: 10;
            flex-direction: column;
            padding: 20px;
        }

        .menu.active .menu-group {
            display: flex !important;
        }

        .menu .menu-group .menu-item:not(:last-child) {
            margin-right: 0;
        }

    .menu-item {
        padding: 10px 0;
        text-align: center;
    }

        .menu-item:not(:last-child) {
            border-bottom: 1px solid #b8b8b8;
            width: 100%;
            text-align: center;
        }
}

@media screen and (max-width: 576px) {
    .info-title {
        width: 100%;
        font-size: 18px;
        white-space: normal !important;
    }
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ps-1 {
    padding-left: 5px;
}

.ps-2 {
    padding-left: 10px;
}

.ps-3 {
    padding-left: 15px;
}

.ps-4 {
    padding-left: 20px;
}

.ps-5 {
    padding-left: 25px;
}

.pe-1 {
    padding-right: 5px;
}

.pe-2 {
    padding-right: 10px;
}

.pe-3 {
    padding-right: 15px;
}

.pe-4 {
    padding-right: 20px;
}

.pe-5 {
    padding-right: 25px;
}

.px-1 {
    padding: 0 5px;
}

.px-2 {
    padding: 0 10px;
}

.px-3 {
    padding: 0 15px;
}

.px-4 {
    padding: 0 20px;
}

.px-5 {
    padding: 0 25px;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    }

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
    ""
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media screen and (min-width: 576px ) {
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media screen and (min-width: 768px ) {
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media screen and (min-width: 992px ) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

@media screen and (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
}

@media screen and (max-width: 576px) {
    .container {
        max-width: 100%;
        width: 100%;
    }
}


/*=============== HEADER ===============*/
.menu-dropdown {
    display: inline-block;
}

    .menu-dropdown .dropdown-content {
        display: none;
        position: absolute;
        top: 54px;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%);
        background-color: #fff;
        min-width: max-content;
        z-index: 10;
        transition: opacity .3s ease-in-out;
    }

        .menu-dropdown .dropdown-content.show {
            display: flex;
            flex-wrap: wrap;
        }

    .menu-dropdown .content-item-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
    }

.header-top-wrapper {
    background-color: var(--first-color);
}

    .header-top-wrapper .header-address-links {
        display: flex;
        flex-wrap: wrap;
        column-gap: 6px;
    }

    .header-top-wrapper .header-languages {
        display: flex;
        column-gap: 10px;
        align-items: center;
    }

.header-top-wrapper .header-languages > a:first-child {
    height: 25px;
}

 .header-top-wrapper .header-languages > a:first-child > img {
     height: 22px;
 }

.header-top-wrapper .header-languages > a > img {
    width: auto;
    height: 16px;
    object-fit: contain;
}

.header-top-content {
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    justify-content: space-between;
    align-items: center;
}

.header-address-links a,
.header-address-links a i {
    color: #fff;
}

.social-links-wrapper ul {
    display: flex;
    column-gap: 1rem;
}

    .social-links-wrapper ul li {
        background-color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    }

        .social-links-wrapper ul li a i {
            color: var(--first-color);
            transition: color .3s ease-in-out;
        }

        .social-links-wrapper ul li:hover a i {
            color: var(--text-color);
        }

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

    .nav-wrapper .sexyselect {
        display: none;
    }

#logo img {
    width: 115px;
}

.nav-wrapper ul {
    display: flex;
    column-gap: 20px;
}

    .nav-wrapper ul li a {
        color: var(--text-color);
        font-weight: var(--font-medium);
        transition: color .3s ease-in-out;
    }

.nav-wrapper ul li a:hover {
    color: var(--first-color);
}

    .nav-wrapper ul li.active a {
        color: var(--first-color);
    }

.nav-wrapper .gcse-search {
    position: relative;
}

.nav-wrapper .search-input {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.nav-wrapper .gcse-search-icon {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
}

@media screen and (min-width: 992px) {
    .menu-dropdown .dropdown-content.show .dropdown-content-box {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        column-gap: 20px;
        margin-top: 31px;
        box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
        padding: 16px;
    }

    li.menu-dropdown:hover .dropdown-link + .dropdown-content {
        opacity: 1;
        display: block;
        flex-wrap: wrap;
    }

    li.menu-dropdown:hover .dropdown-link + .dropdown-content .dropdown-content-box {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        margin-top: 31px;
        box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
        padding: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .nav-wrapper ul {
        column-gap: 8px;
    }
}

@media screen and (max-width: 992px) {
    .menu-dropdown.show {
        background: var(--first-color);
        padding-bottom: 0;
    }

    .menu-dropdown.show a {
        color: #fff;
    }

    .menu-dropdown.show a:hover {
        color: #fff;
    }

    .nav-wrapper {
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .nav-wrapper #logo a {
        display: block;
    }

    .nav-wrapper ul li .dropdown-content a {
        color: #00000080;
        transition: color .3s ease-in-out;
    }

    .nav-wrapper ul li .dropdown-content a:hover {
        color: var(--first-color);
    }

    .social-links-wrapper ul {
        justify-content: center;
    }

    .menu-dropdown .dropdown-content {
        display: none;
        position: inherit;
        column-gap: 20px;
        transform: translateX(0);
        background-color: #fff;
        min-width: max-content;
        box-shadow: none;
        padding: 10px;
        z-index: 10;
    }

        .menu-dropdown .dropdown-content.show {
            display: flex;
            opacity: 1;
            flex-direction: column;
            row-gap: 6px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

    

    .menu-dropdown .content-item-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 6px;
    }

    .header-top-content {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

@media screen and (max-width: 576px) {
    .header-top-wrapper .header-address-links a {
        padding: 6px;
    }

    .header-top-content {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .header-top-wrapper .header-languages {
        column-gap: 16px;
    }

    .header-top-wrapper .header-languages a {
        padding: 6px;
    }

    .header-top-wrapper .header-languages img {
        transform: scale(2);
    }

    .social-links-wrapper ul li {
        width: 40px;
        height: 40px;
    }

    .social-links-wrapper ul li a i {
        font-size: 18px;
    }

    .header-top-wrapper .header-languages > a:first-child {
        height: auto;
    }
}

/* HOME PAGE */
.breadcrumb-area {
    margin: 30px auto;
}

    .breadcrumb-area .breadcrumb-list {
        display: flex;
    }

        .breadcrumb-area .breadcrumb-list a span {
            color: var(--text-color);
            transition: color .3s ease-in-out;
        }

            .breadcrumb-area .breadcrumb-list a span:hover {
                color: var(--first-color);
            }

            .breadcrumb-area .breadcrumb-list span.active {
                color: var(--first-color);
            }

.breadcrumb-area .breadcrumb-list li {
    font-size: 14px;
}

.breadcrumb-area .breadcrumb-list li i {
    padding: 0 10px;
    font-size: 12px;
}

.banner-carousel .carousel-item {
    position: relative;
}

.banner-carousel .filter-item {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(269.81deg, #000000 4.01%, rgba(0, 0, 0, 0) 85.65%);
}

.banner-carousel img {
    height: 85vh;
    object-fit: cover;
}

.banner-carousel .carousel-text {
    position: absolute;
    top: 50%;
    right: 50px;
    width: 40%;
    transform: translateY(-50%);
}

    .banner-carousel .carousel-text p.title {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
    }

    .banner-carousel .carousel-text p.description {
        color: #fff;
        margin-top: 10px;
    }

.about-area img {
    width: 100%;
}

.about-area .enter-content .enter-content-right .item-content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .about-area .enter-content .enter-content-right .item-content h1 {
        font-size: 40px;
    }

    .about-area .enter-content .enter-content-right .item-content h2 {
        margin: 10px 40px 20px 40px;
        font-size: 19px;
        font-weight: 400;
    }

.about-area .about-content-lawyer {
    padding: 30px;
    min-height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .about-area .about-content-lawyer .content-description {
        color: #fff;
    }

        .about-area .about-content-lawyer .content-description ul {
            display: flex;
            flex-direction: column;
            row-gap: 6px;
            list-style: none;
        }

.about-area .about-content-crime {
    row-gap: 20px;
}

.about-area .about-content-crime .section-title {
    text-align: center;
}

.about-area .about-content-crime .crime-carousel .crime-item .item-content {
    padding: 20px;
    min-height: 93px;
    border-radius: 0 0 10px 10px;
}

.about-area .about-content-crime .crime-carousel .crime-item .item-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    row-gap: 14px;
    min-height: 175px;
}

.about-area .about-content-crime .crime-carousel .crime-item .item-content-wrapper * {
    margin-bottom: 0;
    margin-top: 0;
    color: hsla(0, 0%, 22%, 1);
}

.about-area .about-content-crime .crime-carousel .crime-item .item-article {
    font-weight: 500;
    color: var(--first-color);
    min-height: 23.5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.about-area .about-content-crime .crime-carousel .crime-item .item-description p {
    min-height: 23.5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: none;
}

.about-area .about-content-crime .crime-carousel .crime-item .item-description p:first-child {
    display: -webkit-box;
}

.about-area .about-content-crime .crime-carousel .crime-item .item-category {
    display: inline-block;
    background: var(--first-color);
    border-radius: 0 9px;
    font-size: 12px;
    margin: 0;
    color: #fff;
    padding: 2px 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.about-area .about-content-crime .crime-carousel .crime-item {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 2px 9px rgb(0 0 0 / 20%);
    transition: transform .3s ease-in-out;
}

.about-area .about-content-crime .crime-carousel .crime-item:hover {
    transform: scale(1.012);
}

.about-area .about-content-crime .crime-carousel .crime-item img {
    height: 225px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.about-area .about-content-crime .crime-carousel .item {
    height: auto;
    padding: 10px;
}

.about-area .about-content-crime .crime-carousel .owl-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 14px;
}

.about-area .about-content-crime .crime-carousel .owl-nav .owl-prev {
    position: absolute;
    right: 65px;
    top: 50.8%;
    transform: translateY(-50%);
}

.about-area .about-content-crime .crime-carousel .owl-nav .owl-next {
    position: absolute;
    right: 25px;
    top: 50.8%;
    transform: translateY(-50%);
}


    .about-area .about-content-crime .crime-carousel .owl-nav span {
        font-size: 40px;
        line-height: 8px;
        height: 31px;
        display: inline-block;
        background: hsl(0deg 0% 100%);
        padding: 10px;
        border-radius: 50%;
        color: var(--first-color);
        box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    }

.about-area .about-content-crime .item .user {
  display: flex;
  margin-top: auto;
}

.about-area .about-content-crime .item .user img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  object-position: top;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.about-area .about-content-crime .item .user-info h5 {
    font-weight: 500;
    margin: 0;
}

.about-area .about-content-crime .item .user-info small {
  color: #545d7a;
}

    .about-area .about-content-crime .item .tag {
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 0 9px;
        font-size: 12px;
        margin: 0;
        color: #fff!important;
        padding: 5px 15px;
        text-transform: uppercase;
        cursor: pointer;
        background-color: var(--first-color);
    }

.tag-purple {
    background-color: #5e76bf;
}

.referances-carousel img {
    height: 125px;
    object-fit: contain;
}

.referances-carousel a {
    cursor: context-menu;
}

.information-area .information-area-content {
    padding: 30px 0;
}

    .information-area .information-area-content .row {
        row-gap: 20px;
    }

.information-area .information-button {
    text-align: end;
}

.page-info-area .info-content {
    position: relative;
    background: url(../Uploads/home/page-banner-img.png);
    height: 200px;
    width: 100%;
    background-size: cover;
}

.page-info-area.landing-page .info-content {
    height: 300px;
}

    .page-info-area .info-content .info-title {
        position: absolute;
        top: 50%;
        left: 50%;
        color: #fff;
        text-align: center;
        white-space: nowrap;
        transform: translate(-50%, -50%);
    }

.page-info-area.landing-page .info-content .info-title {
    position: absolute;
    top: 40%;
    left: 50%;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

    .page-info-area .info-content .info-filter {
        position: absolute;
        display: block;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .page-info-area.landing-page .info-content a {
        position: absolute;
        top: 60%;
        left: 50%;
        color: #fff;
        text-align: center;
        white-space: nowrap;
        transform: translate(-50%, -50%);
    }

.landing-page-area .enter-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-page-area .enter-content .enter-content-img {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.landing-page-area .enter-content .enter-content-img img {
    width: 250px;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--first-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.landing-page-contact .page-section {
    margin: 30px auto 60px auto;
}

.landing-page-contact .information-button .primary-btn {
    width: 100%;
    padding: 16px 20px;
}

@media screen and (max-width: 992px) {
    .about-area .enter-content .enter-content-right .item-content h1 {
        font-size: 32px;
    }

    .about-area .enter-content .enter-content-right .item-content h2 {
        font-size: 19px;
        margin: 10px 20px 20px 20px;
    }

    .information-area .information-area-content {
        padding: 20px 0;
    }

    .banner-carousel img {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .breadcrumb-area {
        margin: 10px auto;
    }

    .breadcrumb-area .breadcrumb-list {
        justify-content: center;
    }

    .about-area .enter-content-left img {
        height: 300px;
        object-fit: contain;
    }

    .about-area .enter-content .enter-content-right .item-content h1 {
        font-size: 28px;
    }

    .about-area .enter-content .enter-content-right .item-content h2 {
        font-size: 18px;
        margin: 10px;
    }

    .about-area .about-content-lawyer .content-description ul {
        row-gap: 4px;
    }

    .about-area .about-content .page-section {
        text-align: center;
    }

    .banner-carousel .carousel-text {
        position: absolute;
        top: 50%;
        right: auto;
        left: 50%;
        width: 100%;
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .banner-carousel img {
        height: 300px;
    }
}

@media screen and (max-width: 576px) {
    .breadcrumb-area .breadcrumb-list {
        flex-wrap: wrap;
        justify-content: start;
    }

    .information-area .information-button {
        text-align: center;
    }

        .information-area .information-button button {
            width: 100%;
        }
}

/* BLOG PAGE */
.blog-card {
    position: relative;
    margin-bottom: 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 16px rgb(0 0 0 / 10%);
}

.blog-row-wrapper {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-row-wrapper > * {
    flex-shrink: 0;
    max-width: 100%;
    margin-top: 0;
}

.blog-card .blog-card-img {
    position: relative;
    padding: 0;
}

.blog-card img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.blog-card .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

    .blog-card .blog-card-content .blog-card-content-body p {
        min-height: 23.5px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        margin-bottom: 10px;
        display: none;
    }

    .blog-card .blog-card-content .blog-card-content-body p:nth-child(2) {
        display: -webkit-box;
    }

    .blog-card .blog-card-content .blog-card-content-body .section-title {
        min-height: 23.5px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        margin-bottom: 4px;
    }

    .blog-card .blog-card-content-footer {
        display: flex;
        justify-content: end;
    }

.blog-card .blog-card-date {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px 0;
    font-size: 12px;
    margin: 0;
    color: #fff !important;
    padding: 5px 15px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: var(--first-color);
}

        .blog-card .blog-card-content-footer span {
            font-size: 14px;
        }

    .blog-card.bg-primary {
        color: #fff;
    }

        .blog-card.bg-primary .blog-card-img {
            order: 2;
        }

        .blog-card.bg-primary a {
            color: var(--text-color);
            background-color: #fff;
        }

.text-carousel-area {
    padding: 30px 30px;
    box-shadow: 2px 2px 16px rgb(0 0 0 / 10%);
    border-bottom: 6px solid var(--first-color);
    border-radius: 10px;
}

.text-carousel .item {
    text-align: center;
}

    .text-carousel .item .subtext {
        font-size: 14px;
        font-weight: var(--font-light);
    }

.blog-detail-area .blog-detail-content h2 {
    font-size: 24px;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    color: var(--first-color);
}

.blog-detail-area .blog-detail-content h3 {
    font-size: 20px;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    color: var(--first-color);
}

:is(.blog-detail-area .blog-detail-content h2, .blog-detail-area .blog-detail-content h3) strong {
    font-weight: bold;
}

.blog-detail-area .blog-detail-content ul {
    margin-bottom: 10px;
}

.blog-detail-area .blog-detail-content ul li {
    position: relative;
    display: flex;
    align-items: start;
    column-gap: 8px;
    margin-bottom: 6px;
}

.blog-detail-area .blog-detail-content ul li:before {
    content: "";
    display: block;
    min-width: 10px;
    border: 1px solid var(--first-color);
    margin-top: 8px;
}

.blog-detail-area .right-sidebar .sidebar-content {
    background-color: var(--first-color);
    padding: 10px 30px;
}

.blog-detail-area .right-sidebar .sidebar-content h3 {
    font-size: 24px;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.blog-detail-area .right-sidebar .sidebar-content ul {
    list-style: disc;
    color: #fff;
}

.blog-detail-area .right-sidebar .sidebar-content ul li {
    margin-bottom: 10px;
    margin-left: 18px;
}

.blog-detail-area .right-sidebar .sidebar-content ul li a {
    color: #fff;
    transition: color .3s ease-in-out;
}

.blog-detail-area .right-sidebar .sidebar-content ul li a:hover {
}


.blog-row-wrapper > a {
    color: inherit;
}

@media screen and (max-width: 768px) {
    .blog-card .blog-card-content-footer {
        flex-direction: column;
        align-items: normal;
        text-align: center;
        row-gap: 10px;
    }
}

@media screen and (max-width: 992px) {
    .blog-row-wrapper {
        justify-content: center;
        margin-right: 0;
        margin-left: 0;
    }

    .blog-row-wrapper {
        justify-content: center;
    }

    .blog-card .blog-card-content {
        padding: 16px;
    }

    .blog-card .blog-card-content .blog-card-content-body p {
        text-align: center;
    }

    .blog-card .blog-card-img img {
        height: 100%;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }
}

/* CONTACT PAGE */
.contact-area .contact-info-area {
    align-items: flex-start;
    padding-bottom: 50px;
}

    .contact-area .contact-info-area .contact-info-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.contact-area .contact-info-area .contact-info-item a {
    color: var(--text-color);
}

.contact-area .contact-info-area .contact-info-item i {
    font-size: 50px;
    color: var(--first-color);
}

        .contact-area .contact-info-area .contact-info-item .info-title {
            font-size: 24px;
            text-transform: uppercase;
            padding: 20px 0 10px 0;
        }

        .contact-area .contact-info-area .contact-info-item .info-desc {
            font-size: 14px;
        }

.contact-area .contact-form-area {
    align-items: center;
}

.contact-area .contact-form-content {
    padding: 0 50px;
}

    .contact-area .contact-form-content .contact-form-item {
        padding-bottom: 20px;
    }

    .contact-area .contact-form-content .information-button {
        text-align: end;
    }

@media screen and (max-width: 992px) {
    .contact-area .contact-info-area {
        row-gap: 40px;
    }

    .contact-area .contact-form-area .contact-map {
        order: 2;
    }

    .contact-area .contact-form-content {
        padding: 0;
    }

    .contact-area .contact-form-area {
        row-gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact-area .contact-form .section-title {
        margin-bottom: 20px !important;
    }

    .contact-area .contact-info-area {
        row-gap: 20px;
        padding-bottom: 30px;
    }

    .contact-area .contact-form-area {
        row-gap: 30px;
    }

    .contact-area .contact-info-area .contact-info-item .info-title {
        font-size: 20px;
        padding: 10px 0 5px 0;
    }
}

@media screen and (max-width: 568px) {
    .contact-area .contact-form-content .information-button {
        text-align: center;
    }

        .contact-area .contact-form-content .information-button button {
            width: 100%;
        }
}

/* SSS PAGE */
/*.entry-content {
    text-align: center;
}*/

    .entry-content .accordion-title {
        padding: 12px 30px;
        background: #FFFFFF;
        border-radius: 4px;
    }

    .entry-content .accordion-wrapper {
        box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
        border-radius: 4px;
    }

        .entry-content .accordion-wrapper:not(:last-child) {
            margin-bottom: 20px;
        }

        .entry-content .accordion-wrapper .accordion-content {
            padding: 22px 30px;
            background-color: #fff;
        }

            .entry-content .accordion-wrapper .accordion-content p {
                text-align: start;
            }

.entry-content .accordion-title a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--first-color);
    font-weight: 500;
    text-align: start;
}

@media screen and (max-width: 768px) {
    .entry-content .accordion-wrapper .accordion-content {
        padding: 10px 30px;
    }
}


/* Footer AREA */
.footer-wrapper {
    background-color: var(--first-color);
}

    .footer-wrapper * {
        color: #fff;
    }

    .footer-wrapper .footer-item .footer-item-content {
        width: fit-content;
        margin: 0 auto;
    }

        .footer-wrapper .footer-item .footer-item-content span {
            font-weight: var(--font-semibold);
        }

    .footer-wrapper .footer-item .item-title {
        display: inline-block;
        font-size: 36px;
    }

    .footer-wrapper .footer-item .item-subtitle {
        display: inline-block;
        font-size: 20px;
    }

    .footer-wrapper .social-links-wrapper {
        margin-top: 20px;
    }

    .footer-wrapper .footer {
        justify-content: space-between;
        padding: 60px 0 40px 0;
    }

    .footer-wrapper .footer-copyright {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        row-gap: 15px;
        padding: 10px 0;
    }

        .footer-wrapper .footer-copyright .by-area {
            white-space: nowrap;
            display: flex;
            align-items: center;
        }

            .footer-wrapper .footer-copyright .by-area a {
                display: flex;
            }

        .footer-wrapper .footer-copyright img {
            width: 75px;
            margin: 0 10px;
        }

@media screen and (max-width: 992px) {
    .footer-wrapper .footer {
        padding: 40px 0 20px 0;
        row-gap: 15px;
    }

    .footer-wrapper .footer-item {
        text-align: center;
    }

    .footer-wrapper .social-links-wrapper {
        margin-top: 6px;
    }

    .footer-wrapper .footer-copyright {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 10px;
    }

        .footer-wrapper .footer-copyright .by-area {
            order: 2;
        }
}

@media screen and (max-width: 762px) {
    .footer-wrapper .footer {
        padding: 20px 0;
        row-gap: 25px;
    }
}

@media screen and (max-width: 576px) {
    .footer-wrapper .footer-item .footer-item-content br {
        display: none;
    }

    .footer-wrapper .footer-copyright img {
        width: 75px;
        margin: 0 5px;
    }

    .footer-wrapper .footer-copyright {
        text-align: center;
        padding: 10px 0 20px 0;
    }
}

/* KADROMUZ PAGE */
.crew-area .crew-wrapper {
    justify-content: center;
}

.attorny-detail-image-wrapper {
    text-align: center;
}

.attorny-detail-images-wrapper {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    flex-wrap: wrap;
}

.crew-area .crew-card {
    box-shadow: 0px 0px 15px rgba(16, 10, 85, 0.15);
}

    .crew-area .crew-card img {
        height: 450px;
        object-fit: cover;
    }

.crew-card .card-desc {
    text-align: center;
    padding: 6px 0 20px 0;
}

.crew-card .card-desc a {
    color: var(--text-color);
}

    .crew-card .card-desc span {
        font-size: 18px;
        color: var(--first-color);
        display: inline-block;
        padding: 6px 0 12px 0;
    }

.crew-card .social-links-wrapper ul {
    justify-content: center;
}

.crew-detail-left .card-desc {
    padding-top: 20px;
}

    .crew-detail-left .card-desc .desc-sec-title {
        font-size: 18px;
        color: var(--first-color);
        display: inline-block;
        padding: 6px 0 12px 0;
    }

    .crew-detail-left .card-desc .desc-info-links {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        padding-bottom: 20px;
    }

        .crew-detail-left .card-desc .desc-info-links a {
            color: var(--text-color);
        }

.crew-detail-right .detail-item:not(:first-child) {
    margin: 20px 0;
}

.crew-detail-right .detail-item .custom-list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.our-team-item ul,
.our-team-item ol {
    list-style: none;
}

@media screen and (max-width: 992px) {
    .crew-detail-area .social-links-wrapper ul {
        justify-content: start;
    }
}

@media screen and (max-width: 768px) {
    .crew-area .crew-card-wrapper:not(:last-child) {
        margin-bottom: 30px;
    }

    .crew-detail-area .social-links-wrapper ul {
        justify-content: center;
    }

    .crew-detail-area {
        text-align: center;
    }

        .crew-detail-area .crew-detail-left {
            margin-bottom: 20px;
        }

            .crew-detail-area .crew-detail-left .card-img {
                height: 300px;
                object-fit: contain;
            }

    .crew-detail-left .card-desc .desc-info-links {
        row-gap: 6px;
        padding-bottom: 10px;
    }

    .crew-detail-right .custom-list .custom-list-item {
        text-align: start;
    }
}

/* ERROR PAGE */
.page-section.error-area {
    margin: 30px auto;
    margin-bottom: 60px;
}

.error-area .img-area {
    text-align: center;
}

.error-area .img-area img {
    width: 60%;
}

.error-area .content-area {
    text-align: center;
}

.error-area .content-area .error-opps {
    display: block;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 10px;
    margin-bottom: -50px;
}

.error-area .content-area .error-text {
    display: block;
    font-size: 42px;
    margin-top: -36px;
}

.error-area .content-area .primary-btn {
    font-size: 16px;
    margin-top: 10px;
    padding: 12px 36px;
}

.error-page-navigate-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media screen and (max-width: 991.98px) {
    .error-area .img-area img {
        width: 70%;
    }

    .error-area .content-area .error-opps {
        font-size: 52px;
        margin-bottom: -40px;
    }

    .error-area .content-area .error-text {
        font-size: 32px;
        margin-top: -30px;
    }
}

@media screen and (max-width: 767.98px) {
    .error-area .img-area img {
        width: 75%;
    }

    .error-area .content-area .error-opps {
        font-size: 46px;
        margin-bottom: -30px;
    }

    .error-area .content-area .error-text {
        font-size: 26px;
        margin-top: -24px;
    }
}

@media screen and (max-width: 576.98px) {
    .error-area .img-area img {
        width: 100%;
    }

    .error-area .content-area .error-opps {
        font-size: 50px;
        margin-bottom: -20px;
    }

    .error-area .content-area .error-text {
        font-size: 26px;
        margin-top: -16px;
    }

    .error-area .content-area .primary-btn {
        font-size: 16px!important;
        margin-top: 16px;
    }
}

/* LANDING PAGE */
.lawyer-price-content {
    color: #fff;
}

.lawyer-select-content .page-section {
    padding: 30px 0;
}

.lawyer-price-content .page-section {
    padding: 60px 0;
}

.lawyer-select-content div.row,
.lawyer-price-content div.row {
    align-items: center;
}

.lawyer-price-content .primary-btn {
    background: #fff;
    color: var(--first-color);
}

.lawyer-select-content .right-content {
    text-align: end;
}

.lawyer-price-content .left-content {
    text-align: start;
}
    
.lawyer-select-content .right-content img,
.lawyer-price-content .left-content img{
    width: 75%;
    height: 360px;
    object-fit: contain;
}

.lawyer-form-content div.row {
    justify-content: center;
    align-items: center;
}

.lawyer-form-content a {
    color: #fff;
}

.lawyer-form-content .page-title {
    margin-bottom: 20px;
}

.lawyer-form-content .contact-info-area {
    justify-content: space-around;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.lawyer-form-content .left-content {
    color: #fff;
    padding-right: 30px;
}

.lawyer-form-content .left-content > div.bg-primary {
    padding: 60px 40px;
    border-radius: 6px;
}

.lawyer-form-content .contact-form-content .contact-form-item {
    padding-bottom: 20px;
}

.lawyer-form-content .contact-info-area .contact-info-item {
    display: flex;
}

.lawyer-form-content .contact-info-area .contact-info-item > div {
    margin-left: 30px;
}

.lawyer-form-content .contact-info-area .contact-info-item i {
    padding-top: 6px;
    font-size: 26px;
    width: 20px;
}

.lawyer-form-content .contact-info-area .contact-info-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.whatsapp-btn-wrapper {
    position: fixed;
    right: 3%;
    bottom: 3%;
}

.whatsapp-btn-wrapper .whatsapp-btn-content{
    padding: 16px;
    background: #25d366;
    line-height: 0px;
    border-radius: 30px;
    box-shadow: 1px 6px 24px 0 rgba(7,94,84,.24);
    cursor: pointer;
    transition: background-color .2s linear;
}

.whatsapp-btn-wrapper .whatsapp-btn-content:hover {
    background: #4ddf83;
}

.whatsapp-btn-wrapper .whatsapp-btn-content a {
    color: #fff;
}

.whatsapp-btn-wrapper .whatsapp-btn-content i {
    font-size: 30px;
    line-height: 26px;
}

@media screen and (max-width: 991.98px) {
    .lawyer-price-content .left-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .lawyer-price-content .right-content .page-title,
    .lawyer-select-content .left-content .page-title {
        text-align: center;
    }

    .lawyer-price-content .right-content {
        text-align: center;
    }

    .lawyer-select-content .left-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .lawyer-select-content .right-content {
        text-align: center;
    }

    .lawyer-form-content .left-content {
        margin-bottom: 40px;
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .lawyer-form-content .right-content .information-button {
        text-align: center;
    }

    .lawyer-form-content .right-content .information-button .primary-btn {
        width: 100%;
    }

    .lawyer-select-content .right-content img, .lawyer-price-content .left-content img {
        height: 250px;
    }
}

@media screen and (max-width: 767.98px) {
    .landing-page-area .enter-content .enter-content-img {
        flex-direction: column;
        align-items: center;
    }

    .landing-page-area .enter-content .enter-content-img img {
        width: 300px;
    }

    .lawyer-form-content .contact-info-area {
        gap: 30px;
    }

    .lawyer-form-content .contact-info-area .contact-info-item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .lawyer-form-content .contact-info-area .contact-info-item > div {
        margin-left: 0;
        text-align: center;
    }

    .lawyer-form-content .contact-info-area .contact-info-item h3 {
        font-size: 22px;
    }

    .info-content .primary-btn {
        font-size: 14px!important;
    }
}