/*
Theme Name: GCT Law WP
Theme URI: https://wordpress.org/
Author: GCT Law WP
Author URI: https://wordpress.org/
Description: GCT Law WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: gctlaw-wp
*/
body {
    background: #fff;
    overflow-x: hidden;
    font-family: "Mulish", sans-serif;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
    color: #AF8E6A;
}

a:hover {
    text-decoration: none;
}

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

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 28px;
    font-size: 16px;
    margin: 0px;
    padding-bottom: 15px;
}


header {
/*    position: fixed;*/
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
/*    background: rgba(15, 23, 42, 0.95);*/
    /*backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    z-index: 99;
}

/* ========================================
   Desktop Navigation
   ======================================== */
nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav>ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav>ul>li {
    position: relative;
}

nav>ul>li:hover,
nav>ul>li:hover a{
    background: #000;
    color: #fff;
}

nav li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

nav li>a:hover {
    color: var(--color-text);
    background: var(--color-bg-secondary);
}

/* Dropdown Indicator - CSS Arrow for items with submenus */
nav li:has(> ul)>a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0px;
    transition: var(--transition-fast);
}


nav ul li a.active{
  background: #000;
  color: #fff;
}

nav ul li ul{
  background: #000;
}

nav ul li ul li a{
  color: #fff;
  font-size: 13px;
}

.menulogo{
  padding: 10px 0 0 0;
}
/* ========================================
   Desktop Submenu (Level 2+)
   ======================================== */
nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

/* Nested submenu positioning (Level 3+) */
nav li ul li ul {
    top: 0;
    left: 100%;
    margin-left: 4px;
}

nav li ul li {
    position: relative;
    width: 100%;
}

nav li ul li>a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    justify-content: space-between;
}

nav li ul li>a:hover {
    background: var(--color-bg-tertiary);
    color: #8d8d8d;
}

/* Rotate nested arrow indicator to point right */
nav li ul li:has(> ul)>a::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    border-right: none;
    margin-left: auto;
}

/* Show submenu on hover (desktop) */
@media (min-width: 769px) {
    nav li:hover>ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate dropdown arrow on hover */
    nav>ul>li:hover>a::after {
        transform: rotate(180deg);
    }

    /* Hide mobile elements on desktop */
    .menu-toggle,
    .nav-close,
    .nav-overlay {
        display: none !important;
    }
}

/* ========================================
   Mobile Menu Toggle (Hamburger)
   ======================================== */
.menu-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--color-bg-tertiary);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Close Button (Mobile)
   ======================================== */
.nav-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    z-index: 10;
}

.nav-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
}

.nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

.nav-close span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-close span:nth-child(2) {
    transform: rotate(-45deg);
}

/* ========================================
   Mobile Navigation
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 45px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-height));
        height: auto;
        background: var(--color-bg-secondary);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition-slow), opacity var(--transition-normal), visibility var(--transition-normal);
        z-index: 1000;
        display: block;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        background: #fff;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        display: none;
    }

    /* Mobile Nav List */
    nav>ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    nav>ul>li {
        position: relative;
    }

    nav li>a {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        justify-content: space-between;
    }

    /* Mobile Submenu */
    nav li ul {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: var(--radius-sm);
        box-shadow: none;
        padding: 0;
        margin-top: 4px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        overflow: hidden;
        transition: max-height var(--transition-slow),
            opacity var(--transition-normal),
            visibility var(--transition-normal),
            padding var(--transition-normal);
    }

    nav li ul.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 8px 0 8px 16px;
    }

    nav li ul li ul {
        margin-left: 0;
        background: rgba(0, 0, 0, 0.15);
    }

    nav li ul li>a {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    /* Reset arrow for mobile - all point down */
    nav li:has(> ul)>a::after,
    nav li ul li:has(> ul)>a::after {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        border-bottom: none;
        margin-left: auto;
        transition: var(--transition-fast);
    }

    /* Rotate arrow when submenu is open */
    nav li:has(> ul.active)>a::after {
        transform: rotate(180deg);
    }

    /* Left border for visual hierarchy */
    nav li ul li {
        border-left: 2px solid var(--color-border);
        padding-left: 12px;
        margin-left: 4px;
    }

    nav li ul li:hover {
        border-left-color: var(--color-primary);
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-overlay);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-normal), visibility var(--transition-normal);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ========================================
   Demo Content
   ======================================== */
main {
    padding-top: var(--header-height);
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ========================================
   Animation for mobile nav items
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

nav.active>ul>li {
    animation: fadeIn 0.3s ease forwards;
}

nav.active>ul>li:nth-child(1) {
    animation-delay: 0.05s;
}

nav.active>ul>li:nth-child(2) {
    animation-delay: 0.1s;
}

nav.active>ul>li:nth-child(3) {
    animation-delay: 0.15s;
}

nav.active>ul>li:nth-child(4) {
    animation-delay: 0.2s;
}
.menulogo img{
  width: 100%;
}

.headertopcontainer{
  background: #000000;
  padding-top: 10px;
}

.headerleft ul li{
  display: inline-block;
  font-size: 13px;
  color: #fff;
  padding: 0 8px;
}

.headerleft ul li a{
  color: #fff;
}

.headersocialmedia ul li{
  display: inline-block;
}

.headeraddress p{
  color: #fff;
  font-size: 13px;
  line-height: 20px;
}

.headersocialmedia ul li a{
  color: #fff;
  font-size: 13px;
}

.herobanner img{
  width: 100%;
}

.herobanner .mobilebanner{
    display: none;
}

.herobanner{
  position: relative;
  z-index: 1;
}

.herotext{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.herotext h1{
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0,0,0,0.75);
  font-size: 55px;
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 30px;
  font-family: "Mulish", sans-serif;
}

.herotext a{
  color: #4e4e4e;
  background: #ffffff00;
  padding: 15px 30px;
  border: 1px solid #4e4e4e;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
   font-family: "Mulish", sans-serif;
}

.herotext a:hover{
  background: #AF8E6A;
  color: #fff;
  transition: all 0.6s ease-in;
}

.aboutcontainer{
  margin: 50px 0 0 0;
}

.welcometext h2{
  font-size: 40px;
  color: #000;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  padding-right: 35px;
  line-height: 40px;
}

.welcometext h2 span{
  color: #AF8E6A;
}

.welcometext,
.welcomebtn{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.welcomedes p{
  font-size: 18px;
  color: #000;
  font-weight: 300;
  padding-bottom: 0px;
  font-family: "Mulish", sans-serif;
  line-height: 28px;
  margin-bottom: 0px;
}
.welcomebtn a{
  border: 1px solid #4e4e4e;
  background: #ffffff00;
  color: #4e4e4e;
  padding: 12px 20px;
  font-size: 16px;
}
.welcomebtn a:hover{
  background: #AF8E6A;
  color: #fff;
  transition: all 0.6s ease-in;
}

.dividersection{
  margin: 50px 0 0 0;
}
.lineA {
    border: 1px solid #4e4e4e;
    width: 70%;
    margin: 0 auto;
    opacity: 0.5;
}

.lineB {
    border: 1px solid #4e4e4e;
    width: 50%;
    margin: 0 auto;
    top: 10px;
    position: relative;
    opacity: 0.5;
}

.practiceareacontainer{
  margin: 50px 0 0 0;
}

.practiceareacontainer h2{
  font-size: 40px;
  color: #000;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  padding-right: 35px;
  line-height: 40px;
}

.practiceareacontainer h2 span{
  color: #AF8E6A;
}

.practiceareas h3 {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
    border: 1px solid #b9b9b9;
    text-align: center;
    padding: 40px 50px;
    height: 110px;
}

.practiceareatitle::before {
    left: 10px;
    top: 10px;
    z-index: -1;
}

.practiceareatitle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #b9b9b9;
    background-color: white;
}

.practiceareas{
   position: relative;
   margin-bottom: 30px;
   cursor: zoom-in;
   transition: all 0.8s ease;

}

/*.practiceareas:hover {
    transform: scale(1.05);
}*/


/*.practiceareatitle:hover,
.practiceareatitle:hover h3{
  background: #000;
  color: #fff;
  transition: all 0.7s ease-in;
  cursor: pointer;
}*/

/* BOX 1 – INNER BORDER GROWS OUTWARD */
.row > div:nth-child(1) .practiceareas h3{
  box-shadow: inset 0 0 0 0 #d39d62;
  transition: box-shadow 0.45s ease;
}

.row > div:nth-child(1) .practiceareas:hover h3{
  box-shadow: inset 0 0 0 3px #AF8E6A;
}


/* BOX 2 – INTERNAL BORDER OUTSIDE TEXT (IN → OUT) */
.row > div:nth-child(2) .practiceareas h3{
  box-shadow: inset 0 0 0 0 #AF8E6A;
  transition: box-shadow 0.45s ease;
}

.row > div:nth-child(2) .practiceareas:hover h3{
  box-shadow:
    inset 0 0 0 10px #cfa76e;
}


/* BOX 3 – LUXURY GLOW EXPANDS OUTWARD */
.row > div:nth-child(3) .practiceareas h3{
  box-shadow:
    inset 0 0 0 0 #AF8E6A,
    inset 0 0 0 rgba(184,138,68,0);
  transition: box-shadow 0.5s ease;
}

.row > div:nth-child(3) .practiceareas:hover h3{
  box-shadow:
    inset 0 0 0 3px #AF8E6A,
    inset 0 0 16px rgba(184,138,68,0.55);
}

.ourpeoplecontainer{
  margin: 50px 0 0 0;
}

.ourpeoplecontainer h2{
  font-size: 40px;
  color: #000;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  padding-right: 35px;
  line-height: 40px;
}

.ourpeoplecontainer h2 span{
  color: #AF8E6A;
}

.morepeoplebtn a{
  border: 1px solid #4e4e4e;
  background: #ffffff00;
  color: #4e4e4e;
  padding: 12px 20px;
  font-size: 16px;
}
.morepeoplebtn a:hover{
  background: #AF8E6A;
  color: #fff;
  transition: all 0.6s ease-in;
}

.morepeoplebtn{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: right;
}

.teamfigcaption{
  position: relative;
}

.teamfigcaption img {
    width: 100%;
    border-radius: 5px;
    opacity: 0.3;
}

.teamfigcaption {
    position: absolute;
    left: 5%;
    bottom: 0%;
    transform: translateY(-50%);
}

.teamfigcaption h3{
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  padding-bottom: 5px;
  font-family: "Mulish", sans-serif;
  line-height: 18px;
  margin-bottom: 0px;
}

.teamfigcaption p{
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 0px;
  font-family: "Mulish", sans-serif;
  line-height: 12px;
}

.teammember-slider .owl-prev{
  position: absolute;
  left: 2%;
  display: block;
  font-size: 20px !important;
  margin: 0;
  cursor: pointer;
  color: #fff;
  top: 40%;
}

.teammember-slider .owl-next{
  position: absolute;
  right: 2%;
  display: block;
  padding: 0 .3em !important;
  font-size:20px !important;
  margin: 0;
  cursor: pointer;
  color: #fff;
  top: 40%;
}

.teammember-slider .owl-dots {
    text-align: center;
    margin: 30px 0 0 0;
}
.teammember-slider .owl-dots button.owl-dot.active span{
  background-color: #000;
  border-radius: 0%;
  height: 12px;
  width: 12px;
  position: absolute;
  top: 1px;
  left:1px;
}
.teammember-slider .owl-dots button.owl-dot{
  background: #888888;
   border-radius: 0%;
   height: 13px;
   width: 13px;
   position: relative;
   margin: 0 5px;
}

.teammemberfig{
  margin: 30px 0 0 0;
}
.teammemberfig img{
  width: auto !important;
  min-width: auto;
  transition: filter 0.5s ease-in-out;
   filter: grayscale(0%);
}
.teammemberfig img:hover{
 filter: grayscale(100%);
}

.latestblogscontainer{
  margin: 50px 0 0 0;
}

.blogtitle h2{
  font-size: 40px;
  color: #000;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  padding-right: 35px;
  line-height: 40px;
}

.blogtitle h2 span{
  color: #AF8E6A;
}

.blogsviewmorebtn{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: right;
}

.blogsviewmorebtn a{
  border: 1px solid #4e4e4e;
  background: #ffffff00;
  color: #4e4e4e;
  padding: 12px 20px;
  font-size: 16px;
}
.blogsviewmorebtn a:hover{
  background: #AF8E6A;
  color: #fff;
  transition: all 0.6s ease-in;
}

/*.blogimage img{
  width: auto;
  min-width: auto;
  border: 1px solid #000;
  padding: 10px;
}*/

.blogimagebox h3{
  font-size: 28px;
  font-weight: 500;
  font-family: "Mulish", sans-serif;
  line-height: 30px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.blogimagebox h3 a{
  color: #000;
}


.blogimagebox p span{
  font-size: 12px;
  color: #000;
  font-weight: 300;
  padding-bottom: 0px;
  font-family: "Mulish", sans-serif;
  line-height: 12px;
  font-style: italic;
}

.blogimagebox p{
  font-size: 18px;
  color: #000;
  font-weight: 300;
  padding-bottom: 0px;
  font-family: "Mulish", sans-serif;
  line-height: 30px;
}
.nextblogimagebox{
    text-align: right;
}

.nextblogimagebox h3{
    padding-right: 0px;
    text-align: right;
    padding-left: 300px;
}

.nextblogimagebox p{
    text-align: right;
}

.blogimagebox{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: left;
}

.blogimage{
  margin-bottom: 50px;
}

.blogimagebox{
  padding-bottom: 50px;
}

.blogimage img {
  width: auto;
  min-width: auto;
  border: 1px solid #b9b9b9;
  padding: 5px;
  background: #fff;
}

.blogimage {
  display: inline-flex;
  position: relative;
}
.blogimage::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #b9b9b9;
  background-color: white;
}
.blogimage::before {
  left: 10px;
  top: 10px;
  z-index: -1;
}

.newsinsightxboxtext h3{
    font-size: 25px;
    font-weight: bold;
    font-family: "Mulish", sans-serif;
    line-height: 30px;
    padding-bottom: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
}

.newsinsightxboxtext h3 a {
    color: #000;
}

.newsinsightxboxtext p span{
    font-size: 12px;
    color: #000;
    font-weight: 300;
    padding-bottom: 0px;
    font-family: "Mulish", sans-serif;
    line-height: 12px;
    font-style: italic;
}

.newsinsightxboxtext p{
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-bottom: 0px;
    font-family: "Mulish", sans-serif;
    line-height: 30px;
}

.footercontainer{
  padding: 50px 0;
  margin: 50px 0 0 0;
  background: #000;
 }

.footeradd h2{
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  padding-bottom: 10px;
  font-family: "Mulish", sans-serif;
  line-height: 30px;
 }

.footeradd p{
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  padding-bottom: 0px;
  font-family: "Mulish", sans-serif;
  line-height: 27px;
}

.quicklinks h2{
  font-size: 23px;
  color: #fff;
  font-weight: 300;
  padding-bottom: 10px;
  font-family: "Mulish", sans-serif;
  line-height: 30px;
}  


.quicklinks ul li{
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  padding-bottom: 0px;
  font-family: "Mulish", sans-serif;
  line-height: 27px;
}

.quicklinks ul li a{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}

.footersocial ul li {
  display: inline-block;
  padding-right: 5px;
}
.footersocial ul li a{
  color: #fff;
}

.quickcontact h2{
  font-size: 23px;
  color: #fff;
  font-weight: 300;
  padding-bottom: 10px;
  font-family: "Mulish", sans-serif;
  line-height: 30px;
}

.fottercall ul li{
  display: inline-block;
}

.fotteremail ul li{
  display: inline-block;
}

.fottercall ul li i{
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 7px;
  font-size: 13px;
}

.fottercall{
  margin: 15px 0;
}

.fottercall ul li a{
  color: #fff;
}

.fotteremail ul li i{
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 7px;
  font-size: 13px;
}

.fotteremail ul li a{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}

.footercopyrights p{
  text-align: center;
  font-size: 15px;
  color: #000;
  font-weight: 400;
  padding-bottom: 0px;
  font-family: "Mulish", sans-serif;
  line-height: 27px;
}

.footercopyrights{
  padding: 15px 0;
}

.quicklinks ul li{
  transform: translateX(1);
  transition: transform 0.5s ease;
}


.quicklinks ul li a:hover{
    color: #d39d62;
}

.footersocial ul li:hover{
  color: #d39d62;
  transform: scale(1.5, 1.5);
  transition: all 0.5s ease-in;
}

.footersocial ul li a:hover{
    color: #d39d62;
}

.footersocial ul li i{
    font-size: 13px;
}

/*------OUR Firm CSS------*/
.innerherocontainer img{
    width: 100%;
    
}
.innerherocontainer{
    position: relative;
}


.herotitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.herotitle h1{
    text-align: center;
    font-family: "Mulish", sans-serif;
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 0;
    padding-bottom: 0;
	text-shadow: 2px 2px 4px #888888;
}

.ourfirmcontainer{
    margin: 50px 0 0 0;
}

.firmleftmenu ul li a{
    color: #000;
    font-size: 18px;
    font-family: "Mulish", sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 10px;
    font-weight: 400;
}

.firmleftmenu ul li{
     margin:10px 0;
     text-align: right;
}
.firmleftmenu ul {
    border: 1px solid #0000003d;
    padding: 0px 0px 50px 0px;
    position: absolute;
    left: -10px;
    top: -10px;
}

.overviewrightsec p{
    font-size: 18px;
    font-weight: 300;
    font-family: "Mulish", sans-serif;
}

.overviewrightsec h3{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    /*background: #dedede;
    padding: 10px;*/
}

.overviewrightsec h3{
  display:inline-block;
  position:relative;
  
}
.overviewrightsec h3::after{
  content: '';
    height: 3px;
    width: 50%;
    background: #AF8E6A;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.overviewrightsec ul {
    padding: 0 0 10px 20px;
}


.overviewrightsec ul li{
    font-size: 18px;
    font-weight: 300;
    font-family: "Mulish", sans-serif;
    list-style: disc;
}

.overviewrightsec ol {
    padding: 0 0 10px 20px;
}

.overviewrightsec ol li{
    font-size: 18px;
    font-weight: 300;
    font-family: "Mulish", sans-serif;
}

.ourfirmbtn{
    text-align: right;
    margin: 30px 0 0 0;
}

.ourfirmbtn a{
    border: 1px solid #4e4e4e;
    background: #ffffff00;
    color: #4e4e4e;
    padding: 12px 20px;
    font-size: 16px;
    font-family: "Mulish", sans-serif;
}

.ourfirmbtn a:hover {
    background: #af913d ;
    color: #fff;
    transition: all 0.6s ease-in;
    border: 1px solid #af913d;
}

.firmleftborder{
    position: absolute;
    border: 1px solid #0000003d;
    height: 322px;
    width: 340px;
}
.practicearealeftbox{
    height: 522px;
}
.firmleftmenu{
    margin: 20px 0 0 0;
}

.firmleftmenu ul li.active,
.firmleftmenu ul li:hover{
    background: #AF8E6A;
    color: #000;
    margin: 10px 0;
}

/*.firmleftmenu ul li:hover{
    background: #af913d;
    color: #000;
    padding: 5px 2px;
    margin: 10px 0;
}*/

.firmleftmenu ul{
  background: url(assets/images/leftmenubg.jpg) center center no-repeat;
  background-size: cover;
  padding: 20px 0 100px 0;
  position: relative;
}
.teamtitle{
    margin: 0px 0 0 0;
}

.teammemberimg img{
    width: 100%;
}

/*.teamtitle h3{
    font-size: 16px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    color: #1d1d1b;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 0px;
}*/

.teamtitle h2{
    text-align: center;
    font-family: "Mulish", sans-serif;
    color: #1d1d1b;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 0;
    text-transform: uppercase;
    font-weight: 400;
}

/*.teamtitle p,
.teamtitle p a{
    font-size: 18px;
    font-weight: 300;
    font-family: "Mulish", sans-serif;
    color: #1d1d1b;
    text-align: center;
}*/

.mainteambtn a{
    border: 1px solid #4e4e4e;
    background: #ffffff00;
    color: #4e4e4e;
    padding: 12px 20px;
    font-size: 16px;
    font-family: "Mulish", sans-serif;
}

.mainteambtn a:hover {
    background: #AF8E6A;
    color: #fff;
    transition: all 0.6s ease-in;
}

.mainteambtn{
    text-align: center;
    margin: 20px 0;
}

.businessleaderteam h2{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    display: inline-block;
    position: relative;
}

.businessleaderteam h2::after {
    content: '';
    height: 3px;
    width: 50%;
    background: #AF8E6A;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.businessleaderteam{
    margin: 30px 0;
}

.teamsearchleftpanel{
    position: relative;
    border: 1px solid #0000003d;
    height: 345px;
    width: 355px;
}

.teamleftside{
    margin: 20px 0 0 0;
}

/*.teamleftside ul li.active,
.teamleftside ul li:hover{
    background: #AF8E6A;
    color: #000;
    margin: 10px 0;
}
*/


.teamleftside ul{
  background: url(assets/images/leftmenubg.jpg) center center no-repeat;
  background-size: cover;
  padding: 20px 10px 100px 0 !important;
}

.teamleftside ul li a{
    color: #000;
    font-size: 18px;
    font-family: "Mulish", sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 10px;
    font-weight: 400;
}

.teamleftside ul li{
     margin:10px 0;
     text-align: right;
}
.teamleftside ul {
    border: 1px solid #0000003d;
    position: absolute;
    left: -25px;
    top: -10px;
}

.teamsearchleftpanel ul li label{
    text-transform: uppercase;
}

.teamsearchleftpanel ul li .searchfield{
    outline: none;
    border: 1px solid #a9a9a9;
    height: 40px;
    width: 60%;
}

.teamsearchleftpanel ul li select{
    width: 60%;
    height: 40px;
    outline: none;
    border: 1px solid #a9a9a9;
    background: #fff;
}

.searchfilterbtn{
    border: 1px solid #4e4e4e;
    background: #ffffff00;
    color: #4e4e4e;
    padding: 12px 20px;
    font-size: 16px;
    font-family: "Mulish", sans-serif;
    padding: 10px 20px;
    
}

.searchfilterbtn:hover{
    background: #AF8E6A;
    color: #fff;
    transition: all 0.6s ease-in;
}

/*.teamleftside{
    position: relative;
    border: 1px solid #0000003d;
    height: 330px;
    width: 340px;
}*/

.teammemberimg {
  position: relative;
  margin: 0 1%;
}

.teammemberimg img{
  display: block;
}

.ourpeoplebox .img-overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left:0;
    top:0;
    background: #AF8E6A96;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #AF8E6Ae6;
     transition: all .5s ease;
}
.businessprofessional .img-overlay{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left:0;
    top:0;
    background: #d3d3d3c9;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #d3d3d3c9;
     transition: all .5s ease;
}
.teammemberimg{
    position: relative;
    display: block;
}

.teammemberimg:hover .img-overlay {
   visibility: visible;
    opacity: 1;
    transition: all .6s ease;
}

.viewprofiletitle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-family: poppins;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  width: 100%;
}

.viewprofiletitle a{
    border: 1px solid #4e4e4e;
    background: #AF8E6A;
    color: #4e4e4e;
    padding: 10px 15px;
    font-size: 14px;
    font-family: "Mulish", sans-serif;
}
.dingleteamdetails{
    margin: 30px 0;
}

.dingleteamdetails h1{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    text-transform: uppercase;
}

.dingleteamdetails h2{
    font-size: 22px;
    font-weight: 400;
    font-family: "Mulish", sans-serif;
    text-transform: capitalize;
    padding-bottom: 0px;
}

.dingleteamdetails p a{
    color: #000;
    font-size: 18px;
    font-family: "Mulish", sans-serif;
    letter-spacing: .06em;
    font-weight: 400;
}

.dingleteamdetails h3{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    display: inline-block;
    position: relative;
    margin-top: 20px;
    padding-bottom: 15px;
    margin-bottom: 0px;
}
.dingleteamdetails h3::after {
    content: '';
    height: 3px;
    width: 50%;
    background: #AF8E6A;
    position: absolute;
    left: 0;
    bottom: 10px;
}
.dingleteamdetails p,
.dingleteamdetails p a{
    font-size: 18px;
    font-weight: 400;
    font-family: "Mulish", sans-serif;
    text-decoration: underline;
    text-decoration-color: #AF8E6A;
    padding-bottom: 0px;
}
.dingleteamdetails p:hover,
.dingleteamdetails p a:hover{
    text-decoration: none;
    transition: all 0.6s ease-in-out;
}

.classteamoverview p{
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 28px;
    text-decoration: none;
}

.dingleteamdetails img{
    width: auto;
    min-width: auto;
    display: block;
}

.singleteamimng img{
    width: 100%;
    min-width: auto;
}

.singleteamimng{
    text-align: center;
}
.singleteamimng{
    margin: 30px 0;
}
.teamsocialmedia ul{
    text-align: left;
}

.teamsocialmedia ul li{
    display: inline-block;
    padding: 0 10px 0 0;
}

.teamsocialmedia ul li i{
    color: #000;
    font-size: 20px;
}
.teamsocialmedia,
.practiceareas{
    margin: 10px 10px 0 0;
}

.practiceareas ul{
    text-align: right;
}

.ourpeoplebox{
    margin-bottom: 30px;
}


.practiceareas ul li a{
    font-size: 18px;
    font-weight: 400;
    font-family: "Mulish", sans-serif;
    color: #000;
    text-decoration: underline;
    text-decoration-color: #AF8E6A;
}

.practiceareas{
    font-size: 18px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    color: #000;
}

.newinsightsbox h2{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 0px;
    line-height: 40px;
}

.newinsightsbox h2 a {
    color: #000;
}

.newinsightsbox p span{
    font-size: 16px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 26px;
    text-decoration: none;
    font-style: italic;
}

.newinsightsbox p{
    font-size: 16px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 20px;
    text-decoration: none;
    padding-bottom: 0px;
}

.insightsnews{
    margin: 10px 0 0 0;
}

.insightsnews p{
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 28px;
    text-decoration: none;
    padding-bottom: 10px;
}

.newinsightsbox{
    margin-bottom: 20px;
}

.newsinsightsleftpanel ul li label{
    text-transform: uppercase;
}


.newsinsightsleftpanel ul li select{
    width: 60%;
    height: 40px;
    outline: none;
    border: 1px solid #a9a9a9;
    background: #fff;
}


.newsinsightsleftpanel{
    position: relative;
    border: 1px solid #0000003d;
    height: 490px;
    width: 355px;
}


.newsinsightsleft ul {
    background: url(assets/images/leftmenubg.jpg) center center no-repeat;
    background-size: cover;
    padding: 20px 10px 100px 0 !important;
}

.newsinsightsleft ul {
    border: 1px solid #0000003d;
    position: absolute;
    left: -25px;
    top: -10px;
}

.newsinsightsleft ul li {
    margin: 10px 0;
    text-align: right;
}

.newsinsightsleftpanel ul li label {
    text-transform: uppercase;
}

.newsinsightsleftpanel ul li .searchfield {
    outline: none;
    border: 1px solid #a9a9a9;
    height: 40px;
    width: 60%;
}
.newsinsightsleft{
    margin: 20px 0 0 0;
}

.begindate{
    width: 60%;
    height: 40px;
    outline: none;
    border: 1px solid #a9a9a9;
    background: #fff;
    margin-bottom: 10px;
}

.diversityequityrightpanel p{
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 28px;
    text-decoration: none;
}


.diversityequityrightpanel h3{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    /*background: #dedede;
    padding: 10px;*/
}

.diversityequityrightpanel h3{
  display:inline-block;
  position:relative;
  
}
.diversityequityrightpanel h3::after{
  content: '';
    height: 3px;
    width: 50%;
    background: #AF8E6A;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.diversityequityrightpanel ul li{
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 28px;
    text-decoration: none;
    display: flex;
}

.diversityequityrightpanel ul li::before{
    position: relative;
  top: calc(50% - 4px); /* half font-size */
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-size: 15px;
  font-weight: 900;
  padding: 0 10px;
}

.diversityequityrightpanel ul li a {
    display: contents;
}

.deialeftpanel{
    position: relative;
    border: 1px solid #0000003d;
    height: 930px;
    width: 355px;
}

.deialeftpanel ul {
    border: 1px solid #0000003d;
    position: relative;
    left: -10px;
    top: -10px;
}
.deialeftpanel ul {
    background: url(assets/images/leftmenubg.jpg) center center no-repeat;
    background-size: cover;
    padding: 10px !important;
}

.deiatitlebox h2{
    font-size: 25px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    text-transform: uppercase;
    text-align: right;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.deiatitlebox p{
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 28px;
    text-decoration: none;
    text-align: right;
    text-transform: uppercase;
}

.deiatitlebox{
    margin: 20px 0 0 0;
}

.deialeftpanel ul li img{
    width: 100%;
}

.deialeftsec{
    margin: 20px 0 0 0;
}

.newsinsightssec hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 3px solid #AF8E6A;
    margin: 1em 0;
    padding: 10px 0;
    opacity: 1;
    width: 50%;
    margin: 0 auto;
}

.blogsectionbox h2{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 0px;
    line-height: 40px;
}

.blogsectionbox h2 a{
    color: #000;
}

.blogsectionbox p span {
    font-size: 16px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 26px;
    text-decoration: none;
    font-style: italic;
}

.blogsectionbox p {
    font-size: 16px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 20px;
    text-decoration: none;
    padding-bottom: 0px;
}

.blognewssec {
    margin: 10px 0 0 0;
}

.excerptblognews p {
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-bottom: 15px;
    font-family: "Mulish", sans-serif;
    line-height: 28px;
    text-decoration: none;
    padding-bottom: 10px;
}

/*.blognewssec{
    display: flex; 
  justify-content: space-between;
}*/

.blogfeaturedimg {
  margin-right: 10px;
}

.blogfeaturedimg img {
    width: auto;
    min-width: auto;
    border: 2px solid #c3c3c3;
    padding: 5px;
}

/*.excerptblognews {
  flex: 1; 
}*/

.blogsectionbox{
    margin-bottom: 20px;
}

.blogrightsec hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 3px solid #AF8E6A;
    margin: 1em 0;
    padding: 10px 0;
    opacity: 1;
    width: 50%;
    margin: 0 auto;
}

.blogleftmenu {
    margin: 20px 0 0 0;
}


.searchbarsmfiled{
    outline: none;
    border: 1px solid #a9a9a9;
    height: 40px;
    width: 100%;
    margin-right: 10px;
    padding: 0 10px;
}
.blogsearch{
    display: flex;
}

.blogsearchbtn{
    border: 1px solid #4e4e4e;
    background: #ffffff00;
    color: #4e4e4e;
    padding: 5px 20px;
    font-size: 16px;
}

.blogsearchbtn:hover{
    background: #AF8E6A;
    color: #fff;
    transition: all 0.6s ease-in;
}

.recentpost h2{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    line-height: 40px;
    position: relative;
    display: inline-block;
}

.recentpost ul li a{
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-bottom: 0px;
    font-family: "Mulish", sans-serif;
    line-height: 28px;
}
.recentpost ul li::Before{
    top: calc(50% - 4px); /* half font-size */
    left: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-size: 12px;
    font-weight: 600;
    padding: 5px;
    color: #AF8E6A;
}
.recentpost ul li{
    margin-bottom: 10px;
    display: flex;
}
.blogsearch{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px;
    margin-bottom: 20px;
}

.recentpost{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
    margin-bottom: 20px;
}

.pagination {
  display: flex; /* Use flexbox for layout */
  justify-content: center; /* Center the pagination links */
  list-style: none; /* Remove bullet points if using <ul> */
  padding: 0;
  margin: 20px 0;
}

.pagination a {
  color: #333;
  text-decoration: none; /* Remove default link underline */
  padding: 8px 12px;
  border: 1px solid #ddd;
  margin: 0 4px; /* Add some space between links */
  border-radius: 4px; /* Rounded corners */
  transition: background-color 0.3s; /* Smooth hover transition */
}

.pagination a:hover:not(.active-link) {
  background-color: #AF8E6A;
}

.pagination a.active-link {
  background-color: #AF8E6A; /* Style for the current page link */
  color: white;
  border: 1px solid #AF8E6A;
}

/* Style for the Previous/Next buttons */
.pagination .prev-next {
  background-color: #e9e9e9;
  font-weight: bold;
}


.blogdetailspage h2{
    font-size: 28px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    line-height: 40px;
}

.blogdetailspage p,
.blogdetailspage p span {
    font-size: 16px;
    color: #000;
    font-weight: 300;
    padding-bottom: 0px;
    font-family: "Mulish", sans-serif;
    line-height: 26px;
    text-decoration: none;
    font-style: italic;
}

.blogdetails p {
    font-size: 18px;
    color: #000;
    font-weight: 300;
    font-family: "Mulish", sans-serif;
    line-height: 28px;
    text-decoration: none;
    padding-bottom: 10px;
    font-style: normal;
}

.blogdetails h3{
    font-size: 25px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 0px;
    line-height: 30px;
}

.blogdetailspage img{
    width: 100%;
    margin-bottom: 10px;
}

.recentpost h2::after {
    content: '';
    height: 3px;
    width: 50%;
    background: #AF8E6A;
    position: absolute;
    left: 0;
    bottom: 10px;
}

/*Contact Form*/
.law-contact-form {
border: 1px solid #e5e5e5;
}

.law-contact-form .form-control {
padding: 12px 14px;
border-radius: 4px;
border: 1px solid #e5e5e5;
}

.law-contact-form .form-control:focus {
border-color: #AF8E6A;
box-shadow: none;
}

.law-contact-form .btn-primary {
background: none !important;    
border: 1px solid #000 !important;
color: #000 !important;
transition: all 0.6s ease-in;
border-radius: 0px !important;
}

.law-contact-form .btn-primary:hover {
background: #AF8E6A !important;
color: #fff !important;
  transition: all 0.6s ease-in;
}
/*Contact Form*/

/*Contact Sidebar*/
.law-firm-contact-card{
background:#ffffff;
border:1px solid #e5e5e5;
border-left:4px solid #AF8E6A;
padding:30px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.firm-title{
font-weight:600;
margin-bottom:20px;
color:#AF8E6A;
}

.firm-info-item{
display:flex;
align-items:flex-start;
margin-bottom:15px;
font-size:15px;
}

.firm-info-item i{
color:#AF8E6A;
width:22px;
margin-right:10px;
margin-top:4px;
}

.firm-info-item div{
line-height:1.6;
}

/*Contact Sidebar*/

/*Blog*/
.post-nav-buttons{
display:flex;
gap:15px;
}

.post-nav-buttons a{
display:inline-block;
padding:10px 22px;
border:1px solid #000;
text-decoration:none;
color:#000;
border-radius:0;
font-weight:500;
transition:all .3s ease;
}

.post-nav-buttons a:hover{
background:#AF8E6A;
border-color:#AF8E6A;
color:#fff;
}

.blogSidebar a.tag-cloud-link {
    color: #000;
}

.wp-block-tag-cloud a{
font-size:14px !important;
border:1px solid #000;
padding:6px 10px;
margin:5px;
display:inline-block;
color:#000;
}

.wp-block-tag-cloud a:hover{
background:#c9a34e;
border-color:#c9a34e;
color:#fff;
}
/*Blog*/

.img-square-cover{
width:var(--size);
height:var(--size);
object-fit:cover;
}

/*News*/
.news-pagination {
    margin-top: 40px;
    text-align: center;
}

.news-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 8px;
}

.news-pagination li {
    display: inline-block;
}

.news-pagination a,
.news-pagination span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.news-pagination a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Active Page */
.news-pagination .current {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Disabled (Prev/Next edge cases) */
.news-pagination .dots {
    border: none;
    background: transparent;
}
/*News*/