@font-face {
    font-family: 'raleway-bold';
    src: url('../fonts/Raleway-Bold.ttf');
}

@font-face {
    font-family: 'public_sans';
    src: url('../fonts/PublicSans-Regular.ttf');
}

/* ----------------- Root --------------------- */
:root {
    --primary-color: #192f59;
    --secondary-color: #3db166;
    --half-white-color: rgba(255, 255, 255, 0.5);
    --rgb-white: 255, 255, 255;
    --color-white: #ffffff;
    --color-black: #000000;
    --main-heading: 40px;
    --fs-xsmall: 12px;
    --fs-small: 14px;
    --fs-normal: 16px;
    --fs-medium: 18px;
    --fw-bolder: 700;
    --font-public_sans: 'public_sans';
    --primary-font-bold: 'raleway-bold';
    --br-30: 30px;
    --br-40: 40px;
}

/* ------------------- Focus --------------------- */
.form-control:focus {
    box-shadow: none;
}

/* ----------------- Basic style --------------------- */

body {
    font-family: var(--font-public_sans);
    overflow-x: hidden;
    font-size: 16px;
}

.banner-section {
    padding-top: 105px;
    padding-bottom: 60px;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

hr.divider {
    height: 2px;
    color: #E9E9E9;
    background-color: #E9E9E9;
    margin-top: 60px;
    margin-bottom: 30px;
}

.br-30 {
    border-radius: var(--br-30);
}

.section-title h3 {
    color: var(--primary-color);
    font-family: var(--primary-font-bold);
}

.section-title h5 {
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--font-public_sans);
}

p {
    font-family: var(--font-public_sans);
}

/* ----------------- Typography ------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font-bold);
}


p.fs-20 {
    font-size: 20px;
    font-weight: var(--fw-bolder);
}

.fs-12 {
    font-size: 12px;
}

h2 {
    font-size: var(--main-heading);
    font-weight: var(--fw-bolder);
}

h3 {
    font-size: var(--main-heading);
    font-weight: var(--fw-bolder);
}

h5 {
    font-size: 25px;
    font-weight: var(--fw-bold);
}

h6.sub-heading {
    font-size: 18px;
    font-family: var(--font-rubik);
    font-weight: var(--fw-bolder);
}

.primary-font-light {
    font-family: var(--font-kanit-light);
}

.fs-18 {
    font-size: 18px;
}

.fs-14 {
    font-size: 14px;
}

.fs-30 {
    font-size: 30px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    outline: 0;
    transition: all ease .4s;
}

.text-primary {
    color: var(--primary-color) !important;
}

.pt-30 {
    padding: 30px 0px;
}

/* ----------------- Buttons --------------------- */
.btn-main {
    color: var(--color-white);
    background-color: var(--primary-color);
    text-transform: capitalize;
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: var(--fw-bolder);
    border: 2px solid var(--primary-color);
    border-radius: 0.25rem !important;
    padding: 12px 28px;
    z-index: 1;
    transition: all .4s;
}

.btn-main:hover,
.btn-main:focus {
    background: var(--secondary-color);
    color: var(--color-white);
    border: 2px solid var(--secondary-color);
}

.btn-main-outline {
    color: var(--primary-color);
    background-color: transparent;
    text-transform: uppercase;
    font-family: var(--font-kanit);
    font-size: var(--fs-small);
    font-weight: var(--fw-bolder);
    border: 2px solid var(--primary-color);
    border-radius: 0.25rem !important;
    padding: 8px 18px;
    z-index: 1;
    transition: all .45s;
}

.btn-main-outline:hover,
.btn-main-outline:focus {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline {
    color: var(--primary-color);
    background-color: transparent;
    text-transform: capitalize;
    font-family: var(--font-kanit);
    font-size: 12px;
    padding: 4px 5px;
    font-weight: var(--fw-bold);
    border: 1px solid var(--primary-color);
    border-radius: 3px;
}

.btn-outline:hover,
.btn-outline:focus {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.btn-white {
    color: var(--font-black);
    border: 2px solid var(--color-white);
    background-color: var(--color-white);
    border-radius: 14px;
    font-weight: var(--fw-bolder);
}

.btn-white:hover,
.btn-white:focus {
    color: var(--font-black);
    border: 2px solid var(--color-white);
    background-color: var(--color-white);
}


/* --------------Header------------------------ */
.header {
    width: 100%;
    position: relative;
    top: 0;
    background: transparent;
    box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.top-header {
    background-color: var(--primary-color);
    padding: 10px 0px;
    position: relative;
    z-index: 3;
}

.top-header .info ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.top-header ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.top-header .info ul li {
    padding: 5px 10px;
    display: inline-block;
}

.top-header .info ul li a {
    color: #96a2b8;
    font-size: 15px;
}

.top-header .info ul li a:hover {
    color: var(--color-white);
}

.top-header .info ul li i {
    font-size: 15px;
    color: #96a2b8;
    margin-right: 8px;
}

.top-header .social ul {
    margin-bottom: 0px;
}

.top-header .social li {
    display: inline-block;
    list-style: none;
}

.top-header .social li a {
    /* padding: 5px 10px !important; */
    color: var(--secondary-color) !important;
    display: inline-block;
    transition: all .45s linear;
    height: 30px;
    width: 30px;
    line-height: 28px;
    text-align: center;
    margin: 2px;
    background-color: rgb(195 195 195 / 25%);
    border: 1px solid rgb(195 195 195 / 25%);
}

.top-header .social li a:hover {
    border: 1px solid var(--color-white);
    color: var(--color-white) !important;
}

.bottom-header {
    position: relative;
    z-index: 1000;
    background-color: var(--color-white);
}

.header.fixed .bottom-header {
    position: fixed;
    background: var(--color-white);
    left: 0px;
    width: 100%;
    z-index: 1000;
    right: 0px;
    top: 0px;
    animation: slideDown 0.7s ease-out;
    box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.bottom-header .navbar-brand {
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
}

.bottom-header .navbar-toggler:focus {
    box-shadow: none;
}

.bottom-header .navbar-toggler {
    border: none;
}

.bottom-header .navbar-toggler-icon {
    background-image: none;
}

.bottom-header .nav-link {
    margin-right: 10px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
    position: relative;
    font-family: var(--font-public_sans);
}

.bottom-header .nav-link.active,
.bottom-header .nav-link:hover {
    position: relative;
    color: var(--secondary-color);
}

.bottom-header .nav-link.active::after,
.bottom-header .nav-link:hover::after {
    bottom: -4px;
    position: absolute;
    background-color: var(--secondary-color);
    height: 6px;
    width: 100%;
    content: '';
    left: 0px;
    right: 0px;
}


/* -------------------------Footer-------------------------- */
.top-footer {
    background-color: #181818;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #d9d9d9;
}

.bottom-footer {
    background-color: #202020;
    color: #838383;
    width: 100%;
    padding: 22px 0;
    font-size: 16px;
}

.bottom-footer a {
    color: #838383;
}

.bottom-footer a:hover {
    color: var(--secondary-color);
}

.footer-title {
    color: var(--color-white);
    font-size: 25px;
    padding-bottom: 14px;
    position: relative;
    margin-bottom: 23px;
    font-weight: 500;
}

.footer-title:after {
    content: '';
    width: 87px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) -.09%, #fff 100.06%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.top-footer p {
    line-height: 26px;
    font-size: 16px;
}

.footer-list {
    list-style: none;
    padding-left: 0px;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.footer-list li i {
    color: var(--secondary-color);
}

.footer-list li a {
    font-size: var(--fs-small);
    color: #8d8d8d;
    text-decoration: none;
}

.footer-list li a:hover {
    color: var(--color-white);
}

.footer-address {
    color: #8d8d8d;
    font-size: 14px !important;
}


/* -------------------------------Banner Section---------------------------------- */
.banner-carousel .btn-main {
    z-index: 12;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    color: rgb(45, 45, 45);
    text-decoration: none;
    white-space: nowrap;
    line-height: 16px;
    font-weight: 600;
    font-size: 18px;
    border-color: rgb(61, 177, 102);
    border-style: solid;
    border-width: 0px 0px 0px 5px;
    padding: 19px 21px;
    border-radius: 0%;
    text-transform: capitalize;
    font-family: var(--font-public_sans);
}

.banner-carousel .btn-main:hover {
    color: var(--primary-color);
}

.bg-image {
    min-height: 80vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.banner-cont {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner1-title {
    font-size: 48px;
    line-height: 54px;
    color: #fff;
    margin-bottom: 45px;
    font-family: var(--primary-font-bold);
}

@media (max-width: 992px) {

    .banner1-title,
    .banner2-title {
        font-size: 40px;
    }
}

.banner-subtitle {
    color: #13B154;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    font-family: var(--font-public_sans);
}

.banner-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 5px 5px 10px !important;
}

.banner-carousel .owl-nav .owl-next {
    padding: 5px 10px 5px 5px !important;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-carousel .owl-dots {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 5%;
}

.banner-carousel .owl-dots button span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: rgba(255, 255, 255, 0.28);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.banner-carousel .owl-dots button.active span {
    background: #fff;
}

/* -------------------------------About section------------------------ */
.about-section .btn-main {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    text-transform: capitalize;
    padding: 12px 20px;
}

.about-section .btn-main:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.about-section .about-text {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.about-text::after {
    position: absolute;
    content: "";
    height: 6px;
    width: 100%;
    bottom: 0;
    left: 0;
    display: inline-block;
    background: var(--primary-color);
}

.about-section .about-1 {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid var(--secondary-color);
}

.about-section .about-2 {
    border-radius: 10px;
    border: 5px solid var(--primary-color);
    margin-top: 20px;
}

/* ----------------------------Video Section-------------- */
.video-section {
    background-image: url('../images/bg/video-bg.jpg') !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.video-container {
    position: relative;
    text-align: center;
    margin: 50px 0px;
}

.play-button {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}

.play-button i {
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 3;
}

.waves-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    z-index: -1;
    overflow: visible;
}

.waves {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 1s;
}

.wave-3 {
    animation-delay: 2s;
}

@keyframes waves {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.video-section h4 {
    color: var(--color-white);
    font-weight: 600;
    font-size: 34px;
    font-family: var(--font-exo);
}

/* -----------------------CTA Section--------------- */
.cta-section {
    background-color: var(--primary-color);
    background-image: url('../images/bg/cta-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section .single-cta {
    text-align: center;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.cta-section .single-cta .counter {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
}

.single-cta h6 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

.single-cta .counter-icon {
    width: 80px;
    height: auto;
}

.single-cta:hover {
    transform: translateY(-10px);
    /* Lift effect on hover */
}

/* ------------------Event Section--------------- */
.about-section,
.testimonial-section,
.event-section {
    background-color: rgba(25, 47, 89, 0.05);
}

.event-section .btn-register {
    color: var(--secondary-color);
    background-color: transparent;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: var(--fw-bolder);
    border: 2px solid var(--secondary-color);
    border-radius: 0.25rem !important;
    padding: 8px 26px;
    z-index: 1;
}

.text-main {
    color: var(--secondary-color) !important;
}

.single-event:hover .text-main {
    color: var(--color-white) !important;
}

.single-event .thumb {
    overflow: hidden;
}

.single-event .event-content {
    padding: 30px;
    background: #f0f7ff;
    position: relative;
    transition: all 0.5s ease 0s;
}

.single-event .event-content .date {
    position: absolute;
    background-color: var(--secondary-color);
    padding: 10px 20px;
    left: 30px;
    top: -60px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-family: 'Jost', sans-serif;
}

.single-event .event-content .date strong {
    font-size: 24px;
    display: block;
    margin-top: 10px;
}

.single-event .event-content h3 {
    font-size: 20px;
    margin-bottom: 10px !important;
    margin-top: 15px;
}

.single-event .event-content p,
.single-event .event-content .time {
    font-size: 16px;
}

.single-event .event-content .time strong {
    font-weight: 500;
    color: var(--secondary-color);
}

.single-event img {
    transition: all 0.5s ease-in-out;
}

.single-event:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.single-event:hover .event-content {
    background: var(--primary-color);
    color: #96bece;
}

.single-event:hover .event-content a {
    color: var(--color-white);
}

.single-event:hover .event-content .time strong,
.single-event:hover .event-content h3 a {
    color: #fff;
}

/* --------------------------Subscribe Section-------- */
.subscribe-section {
    background-color: var(--primary-color);
    background-image: url('../images//bg/subscribe-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe-section h4 {
    color: var(--color-white);
}

.subscribe-section input {
    background-color: var(--color-white);
    border-radius: 0px;
    border: 0px;
}

.subscribe-section input:focus {
    box-sizing: none;
    border: 0px;
}

.subscribe-section .btn-secondary {
    background-color: var(--secondary-color);
    border: 0px;
    border-radius: 0;
    padding: 10px 20px;
}

/* -----------------------Testimonial Section------------------ */
.single-testimonial {
    position: relative;
    margin: 15px;
    padding: 67px 50px 39px 47px;
    flex: 1 0 auto;
}

.testimonial-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.single-testimonial::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(100% - 17px);
    border: 1px solid var(--primary-color);
    content: "";
    z-index: -1;
}

.single-testimonial::after {
    border: 1px solid var(--primary-color);
    content: "";
    height: 100%;
    left: 15px;
    position: absolute;
    top: 13px;
    width: calc(100% - 15px);
    z-index: -1;
}

.single-testimonial .content p {
    position: relative;
    font-size: 16px;
    margin-bottom: 20px;
}

.single-testimonial .content .icon-quote {
    position: absolute;
    top: -18px;
    left: 45px;
    width: 92px;
    height: 66px;
    background-image: url('../images/icons/icon-quote.png');
}

.single-testimonial .content .info-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single-testimonial .content .info-box .thumb {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 0;
    text-align: center;
}

.single-testimonial .content .info-box .thumb img {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    width: auto;
}

.single-testimonial .content .info-box .info-box-content {
    margin-left: 14px;
}

.single-testimonial .content .info-box .name {
    color: var(--theme-color-dark);
    font-family: var(--text-font);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -.01em;
    margin-bottom: 7px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.single-testimonial .content .info-box .designation {
    display: block;
    font-size: 12px;
    line-height: 1em;
    color: #7a7a7a;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-carousel .owl-dots {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: -15%;
}

.testimonial-carousel .owl-dots button span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #ddd;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.testimonial-carousel .owl-dots button.active span {
    background: var(--secondary-color);
}

.testimonial-section {
    padding-bottom: 130px !important;
}

/* ---------------------Lawyers Section---------------------- */
.single-team .thumb img {
    border-radius: 15px;
    transition: all 0.7s;
}

.single-team .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.7s;
}

.single-team:hover .thumb img {
    transform: scale(1.1);
}

.single-team .thumb::after {
    position: absolute;
    content: '';
    left: 0px;
    background: rgba(0, 0, 0, 0.3);
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.single-team:hover .thumb::after {
    background: rgba(0, 0, 0, 0.1);
}

.single-team .content {
    padding-top: 35px;
    text-align: center;
}

.single-team .content .social li {
    display: inline-block;
    margin-right: 10px;
}

.single-team .content .social a i {
    color: var(--secondary-color);
}

.single-team .content h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.single-team .content h6 {
    color: #7a7a7a;
    font-size: 16px;
}

.lawyers-profile-section .view-btn {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
}

.lawyers-profile-section .view-btn:hover {
    color: var(--primary-color);
}

/* --------------Case Section-------------------- */
.single-case {
    width: 100%;
    height: 100%;
    position: relative;
}

.single-case .thumb {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 350px;
    position: relative;
    transition: all 0.7s;
    width: 100%;
}

.single-case .thumb img {
    transition: all 0.7s;
}

.single-case .content {
    position: absolute;
    z-index: 4;
    left: 55px;
    bottom: 0;
    color: #fff;
    opacity: 1;
    transition: all 1s cubic-bezier(.25, 1, .35, 1) 0s;
}

.content .case-categ,
.content h4 a {
    color: #fff;
    margin-bottom: 0px;
}

.content .case-categ li {
    font-size: 14px;
    text-transform: uppercase;
}

.content h4 {
    font-size: 24px;
    margin-top: 10px;
}

.case-plus {
    font-size: 16px;
    opacity: 0;
    line-height: 1;
}

.single-case .thumb::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
}

.single-case:hover .thumb {
    transform: scale(1.1);
}

.single-case:hover .case-plus {
    opacity: 1;
}

.single-case:hover .content {
    bottom: 20px;
}

/* ---------------------------Breadcrumb Section----------------------- */
.breadcrumb-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgb(0, 0, 0)), url(../images/bg/breadcrumb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 140px 0px;
    position: relative;
}

.breadcrumb-section h5 {
    color: var(--color-white);
    font-size: 30px;
    font-weight: 600;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    width: 100%;
}

.breadcrumb-list li,
.breadcrumb-list li a {
    color: rgb(255 255 255 / .7);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

.breadcrumb-list li:hover a {
    color: #fff;
}


/* ------------------------------Contact Page------------------------ */
.map iframe {
    width: 100%;
    height: 600px;
}

.contact-section h4 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 46px;
    color: #222;
    font-weight: 500;
    margin-bottom: 44px;
}

.contact-section .single-item {
    position: relative;
    padding: 0px 0px 32px 80px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ebebeb;
}

.contact-section .single-item:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

.contact-section .single-item .icon-box {
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 48px;
    line-height: 50px;
    color: var(--secondary-color);
}

.contact-section .single-item h3 {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2px;
    font-size: 24px;
}

.contact-section .single-item span {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.contact-section .single-item p {
    font-size: 16px;
}

/* ----------------------------Team Card------------------ */
.team-card {
    position: relative;
    overflow: hidden;
}

.team-card .team-img-wrap {
    /*border: 1px solid var(--primary-color);*/
    padding: 15px;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
/********/
.team-img {
  height: 220px;              /* fixed height for all */
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  overflow: hidden;           /* prevent overflow */
  background: #fff;           /* optional background */
}

.team-img img {
  max-height: 220px;          /* fit inside box */
  max-width: 100%;            /* prevent overflow in width */
  object-fit: contain;        /* scale image proportionally */
  display: block;
}

/************/
.team-card .team-img {
    overflow: hidden;
    position: relative;
}

.team-card .team-img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.team-card .team-img:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: rgba(14, 18, 29, 0.4);
}

.team-card .team-content {
    padding: 30px 30px 0px 30px;
    text-align: center;
}

.team-card .team-title {
    margin-bottom: 2px;
    font-size: 24px;
    line-height: 1.417;
    font-weight: 600;
    margin-top: -0.32em;
}

.team-card .team-title a {
    color: var(--secondary-color);
}

.team-card .team-desig {
    color: var(--primary-color);
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: -0.3em;
}

.team-card:hover .team-img-wrap {
    border-color: var(--secondary-color);
}

.team-card:hover .team-img img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}

.team-card:hover .team-img:after {
    opacity: 1;
}

/* ------------------------------- event detail -------------------------- */
.side-title {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--primary-font-bold);
}

.address-box p {
    margin-bottom: 0px;
}

.location-icon i {
    color: var(--secondary-color);
    font-size: 35px;
}

.common-list {
    list-style: none;
    padding-left: 0px;
}

.common-list li {
    margin-bottom: 10px;
    text-indent: -15px;
    margin-left: 35px;
}

.common-list i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.event-detail-box {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.event-detail-box span.title {
    color: var(--secondary-color);
}

.event-detail-box span i {
    color: var(--secondary-color);
    margin-right: 5px;
    margin-left: 5px;
}

.event-detail-box span {
    color: var(--primary-color);
    font-family: var(--primary-font-bold);
}

/* ---------------------------------- schools -------------------------- */
.schools-card {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(21, 87, 153, .08);
    padding: 15px 20px 10px;
    border-radius: 25px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.schools-card:hover {
    box-shadow: 0 0 10px rgba(21, 87, 153, .5);
    transition: all 0.3s;
}

.schools-card:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -1px;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, rgba(25, 47, 89, 1) 33%, rgba(61, 177, 102, 1) 64%);
}

.schools-card .school-name {
    font-size: 24px;
    font-family: var(--primary-font-bold);
    color: var(--primary-color);
}

.schools-card .correspondent-name {
    font-size: 20px;
    font-family: var(--primary-font-bold);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.schools-card .contact-detail {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.schools-card .contact-detail i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.schools-card .location-box {
    display: flex;
    gap: 15px;
}

.schools-card .location-box p {
    font-size: 14px;
    margin-bottom: 0px;
}

.schools-card .location-icon i {
    font-size: 18px;
    color: var(--secondary-color);
}

.school-carousel .owl-nav button {
    position: absolute;
    top: -110px;
    left: 87.6%;
    border: none;
    padding: 0;
    font-size: 36px;
    color: #fff;
    z-index: 9;
    cursor: pointer;
    transition: .3s;
    background: var(--primary-color) !important;
    width: 50px;
    height: 50px;
    border-radius: 4px;
}

.school-carousel .owl-nav button.owl-next {
    left: 94%;
    right: 0;
}

.school-carousel .owl-nav button img {
    width: 25px;
    height: 25px;
}

.school-carousel .owl-dots {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: -15%;
}

.school-carousel .owl-dots button.active span {
    background: var(--secondary-color);
}

.school-carousel .owl-dots button span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: var(--primary-color);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

/* ---------------------------- Case study details page -------------------------------*/

.case-details .case-header {
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);

}

.association-card.case-card {
    height: auto !important;
    margin-bottom: 20px;
}

.association-card.case-card .association-name {
    border-bottom: 1px dashed rgba(24, 34, 47, 0.3);
    padding-bottom: 10px;
}

.association-card.case-card .association-name i {
    color: var(--secondary-color);
}

.case-details .card-header {
    font-weight: bold;
    border-bottom: 1px solid rgba(25, 47, 89, 0.1);
    padding: 18px;
    font-size: 22px;
    color: var(--secondary-color);
}

.case-details .card-body {
    padding: 20px;
}

.case-details .card-body p {
    color: var(--primary-color);
    font-size: 16px;
}

.case-details .card-body p strong {
    color: var(--color-black);
}

.case-details .btn-custom {
    background-color: var(--secondary-color);
    color: white;
}

.case-details .btn-custom:hover {
    background-color: var(--secondary-color);
    color: white;
}

.case-details .btn-link {
    color: var(--secondary-color) !important;
    padding: 0px !important;
    text-decoration: none;
    font-size: 16px;
}

@media (max-width: 768px) {
    .case-details .card-body {
        padding-bottom: 0;
        padding-top: 10px;
    }
}

/* ------------------------------------Back to Top------------------------ */
#button {
    display: inline-block;
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button i {
    font-size: 24px;
    color: var(--color-white);
}

#button:hover {
    cursor: pointer;
    background-color: var(--secondary-color);
}

#button:active {
    background-color: var(--secondary-color);
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------- lawyer detail --------------------  */
.secondary-title {
    font-size: 28px;
    color: var(--secondary-color);
    font-family: var(--font-public_sans);
    font-weight: 600;
}

.lawyer-detail {
    margin-bottom: 25px;
}

.lawyer-detail h5 {
    font-size: 20px;
    color: var(--primary-color);
}

.lawyer-detail p {
    font-size: 18px;
}

.lawyer-img {
    width: auto;
    max-height: 550px;
    border-radius: 20px;
}

.list-unstyled.lawyer-detail-social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list-unstyled.lawyer-detail-social-icons a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.list-unstyled.lawyer-detail-social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.lawyer-details__progress {
    display: block;
    position: relative;
    width: 100%;
}

.lawyer-details__progress-single {
    display: block;
    position: relative;
}

.lawyer-details__progress .bar {
    background-color: #eef0f6;
    border-radius: 7px;
    height: 13px;
    margin-bottom: 22px;
    position: relative;
    width: 100%;
}

.lawyer-details__progress .bar-inner {
    background-color: var(--secondary-color);
    border-radius: 7px;
    display: block;
    height: 13px;
    position: relative;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    width: 0;
}

.lawyer-details__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.lawyer-details__progress-title {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 6px;
}

.lawyer-details__progress .count-text {
    bottom: 21px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.background-secondary {
    background-color: rgba(25, 47, 89, 0.05);
}

.common-form .form-control {
    padding: 15px 20px;
    border: 1px solid #f4f5f8;
}

.common-form .form-control::placeholder {
    font-size: 16px;
    color: #aaa;
}

/* ---------------------------Cases Section----------------------------------- */
.single-case .service-card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: rgba(25, 47, 89, 0.1);
    border-top: 6px solid #3db166;
}

.single-case .service-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.single-case h3 {
    font-size: 20px !important;
    text-transform: capitalize;
    font-weight: 600;
    color: #1f194c;
    z-index: 3;
    margin-bottom: 20px;
}

.single-case h5 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--secondary-color);
    z-index: 3;
}

.single-case p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    z-index: 3;
    margin-bottom: 20px;
}

.single-case .court-name {
    margin: 15px 0;

}

.single-case p strong {
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    z-index: 3;
}

/* Learn More Link Styles */

.learn-more {
    padding: 0;
    color: var(--primary-color);
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.learn-more .text {
    position: relative;
    display: inline-block;
    line-height: 1;
    padding-bottom: 4px;
    text-transform: capitalize;
}

.learn-more .text:before,
.learn-more .text:after {
    content: "";
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.5s ease;
}

.learn-more .text:after {
    background-color: var(--secondary-color);
    width: 0;
    z-index: 10;
}

.learn-more:hover .text:after {
    width: 100%;
}

.learn-more:hover {
    color: var(--secondary-color);
}

.learn-row:hover {
    color: var(--secondary-color);
}

/* ----------------------------News Section---------------- */
.news-section .news-card {
    border: 1px solid rgba(23, 22, 28, 0.14);
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s ease;
}

.news-section .news-card .date-box {
    border: 2px solid rgba(23, 22, 28, 0.16);
    border-radius: 30px;
    padding: 23px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 10px;
    position: relative;
    transition: border 0.4s ease;
    min-width: 138px;
}

.news-section .news-card .date-box::after,
.news-section .news-card .date-box::before {
    content: "";
    position: absolute;
    top: -11px;
    height: 22px;
    left: 25%;
    width: 2px;
    background-color: rgba(23, 22, 28, 0.16);
    transition: 0.4s ease;
}

.news-section .news-card .date-box::after {
    left: 75%;
}

.news-section .news-card .date-box .date {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: var(--color-black);
    transition: 0.4s ease;
}

.news-section .news-card .date-box .month-year {
    line-height: 1;
    text-align: center;
    color: var(--color-black);
    transition: 0.4s ease;
}

.news-section .news-card .event-title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--color-black);
}

.news-section .news-card .event-info {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.news-section .news-card .event-info h6 {
    font-size: 15px;
    color: rgba(23, 22, 28, 0.6);
    transition: 0.4s ease;
    margin-bottom: 0;
}

.news-section .news-card .event-info h6 i {
    color: var(--color-black);
    margin-right: 4px;
    transition: 0.4s ease;
}

.news-section .news-card:hover {
    background-color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.3);
}

.news-section .news-card:hover .date-box .date,
.news-section .news-card:hover .date-box .month-year,
.news-section .news-card:hover .event-info h6 i,
.news-section .news-card:hover .event-info h6,
.news-section .news-card:hover .event-title {
    color: var(--color-white);
}

.news-section .news-card:hover .date-box {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.news-section .news-card:hover .date-box:after,
.news-section .news-card:hover .date-box:before {
    background-color: rgba(255, 255, 255, 0.3);
}

/* ----------------------------- association ----------------------- */
.association-card {
    border: 1px dashed rgba(24, 34, 47, 0.3);
    padding: 10px;
    transition: 0.4s ease;
    border-radius: 0px;
    height: 100%;
}

.association-card:hover {
    border-color: var(--secondary-color);
}

.association-card .association-name {
    font-size: 24px;
    font-family: var(--primary-font-bold);
    color: var(--primary-color);
}

.association-card .chairman-name {
    font-size: 20px;
    font-family: var(--primary-font-bold);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.association-info {
    display: flex;
    gap: 10px;
    border-top: 1px dashed rgba(24, 34, 47, 0.3);
    padding-top: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.association-card i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.association-card .location-box {
    display: flex;
    gap: 15px;
}

.association-card .location-icon i {
    font-size: 18px;
    color: var(--secondary-color);
}

.association-card .location-box p {
    font-size: 14px;
    margin-bottom: 0px;
}

.list-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 10px;
    list-style: none;
    padding-left: 0px;
}

.list-view li {
    margin-bottom: 10px;
    text-indent: -15px;
    margin-left: 35px;
}

.list-view li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.intro-right-card {
    flex-direction: row;
    align-items: center;
    padding: 12px;
    background-color: #ffffff;
    box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
    border-radius: 16px;
    transition: all 0.5s ease;
    border: 0px;
}

.intro-right-card:hover {
    transform: scale(1.08);
}

.intro-right-card .icon-box .icon {
    font-size: 40px;
    transition: all 0.8s ease;
    display: inline-block;
    color: var(--secondary-color);
}

.intro-right-card:hover .icon-box .icon {
    transform: rotateY(360deg);
}

/* -----------------------------Case FIlter--------------------- */
.search-form {
    padding: 32px 50px 40px;
    background-color: #F9F9F7;
    box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1019607843);
}

.search-form form label {
    font-weight: 500;
    font-size: 18px;
    font-family: var(--primary-font-bold);
    color: var(--color-black);
    margin-bottom: 10px;
}

.search-form form input,
.search-form form select {
    height: 50px;
    padding: 0 20px;
    background-color: #FFFFFF;
    border: 1px solid rgba(28, 35, 31, 0.15);
    /* -webkit-box-shadow: 0px 10px 60px rgba(28, 35, 31, 0.1); */
    /* box-shadow: 0px 10px 60px rgba(28, 35, 31, 0.1); */
    border-radius: 5px;
    color: #484848;
}

.search-form form input:focus,
.search-form form select:focus {
    box-shadow: none;
    border: 1px solid var(--secondary-color);
}

.search-form form .btn-main {
    height: 50px;
}

.search-form form input::placeholder {
    font-size: 18px;
}
.tabledrag-toggle-weight-wrapper,.filter-help,#edit-moderation-state-wrapper
{
  display:none !important;  
}
.node-case-form 
{
margin-top: 60px;
}

.learn-more-btn
{
    width: 142px;
    float: right;
}
.node-documents-form
{
  margin-top:80px;  
}
.logo_color
{
color:#BD1E2C;
}
span.mob_des {
    display: none;
}