@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/* common css */
:root{
    --white: #fff;
    --black: #000;

    --primary-color: #CFF27E;
    --primary-color-hover: #6f8d33;
    --secondary-color: #171C25;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a.nav-link {
    white-space: nowrap;
}

.lawyer-content-wrp p {
    text-align: justify !important;
}
.detail-service-wrp p {
    text-align: justify !important;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

figure,
ol,
p,
ul {
    margin: 0;
    padding: 0;
}
a,small {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    text-decoration: none;
}
body {
    font-family: "Manrope", serif;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;  

    display: flex;
    flex-direction: column;
    background: #161B24;
}
html,body{
    height: 100%;
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    height: auto;
}
.main-wrp {
  flex: 1 0 auto;

  position: relative;
}
.main-wrp > *{
    position: relative;
    z-index: 2;
}
.footer{
    flex-shrink: 0;
}
/* END common css */

/* Back Button */
#backToTopBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    font-size: 1.125rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease,transform 0.5s ease,background-color 0.3s ease-in-out
}

#backToTopBtn:hover {
    opacity: 0.5 !important;
    border: 1px solid var(--primary);
}

#backToTopBtn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0)
}

#backToTopBtn svg {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    min-height: 1.25rem;
    stroke-width: 2
}
#backToTopBtn svg{
    stroke: black;
}
/* End Back Button */

/* btn */
.btn{
    display: flex;
    padding: 12px 24px;
    align-items: center;
    width: fit-content;
    gap: 10px;
    border-radius: 10px;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: normal;
    transition: all .3s ease-in-out;
}
.btn-primary{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
}
.btn-primary:focus-visible,
.btn-primary:hover{
    background-color: var(--primary-color-hover);
    border: 1px solid var(--primary-color-hover);
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: none;
}
.btn-secondary{
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.40);
    color: var(--white);
}
.btn-secondary:focus-visible,
.btn-secondary:hover{
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: none;
}
.btn-secondary svg path{
    transition: all .3s ease-in-out;
}
.btn-secondary:focus-visible svg path,
.btn-secondary:hover svg path{
    fill: var(--black);
}
.btn-primary svg,
.btn-third svg,
.btn-personal svg,
.btn-secondary svg{
    transition: all .3s ease-in-out;
}
.btn-secondary:focus-visible svg,
.btn-secondary:hover svg,
.btn-personal:focus-visible svg,
.btn-personal:hover svg,
.btn-third:focus-visible svg,
.btn-third:hover svg,
.btn-primary:focus-visible svg,
.btn-primary:hover svg{
    transform: rotate(45deg);
}
.btn-third{
    background-color: transparent;
    border: 1px solid rgba(22, 27, 36, 0.10);
    color: var(--secondary-color);
    font-weight: 400;
}
.btn-third:focus-visible,
.btn-third:hover{
    background-color: var(--black);
    border: 1px solid var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: none;
}
.btn-third svg path{
    transition: all .3s ease-in-out;
}
.btn-third:focus-visible svg path,
.btn-third:hover svg path{
    fill: var(--white);
}
.btn-transparent{
    border: none;
    background-color: transparent;
    padding: 0;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
}
.btn-personal svg path{
    fill: white;
}
.btn-personal{
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    color: var(--white);
}
.btn-personal:focus-visible svg path,
.btn-personal:hover svg path{
    fill: var(--black);
}
.btn-personal:focus-visible,
.btn-personal:hover{
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: none;
}
/* END btn */

/* text */
h1{
    font-size: 4rem;
    font-weight: 600;
    line-height: 64px; 
}
h2{
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 52px; 
}
h3{
    color: #C8A283;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}
h4{
    font-size: 19px;
    font-weight: 800;
    line-height: 23px;
}
p{
    font-size: 1rem;
    font-weight: 400;
}
small{
    font-size: 0.75rem;
    font-weight: 400;
}
/* END text */

/* header */
    /* upper header */
.upper-header{
    padding: 1rem 0;
    background: rgba(10, 16, 27, 0.60);
}
.upper-header-left,
.upper-header-right{
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    height: 100%;
}
.upper-header-left{ justify-content: end;}
.upper-header-right{ justify-content: start;}
.upper-header-right span{
    display: flex;
    align-items: center;
    gap: 1.875rem;
}
.upper-header-left a{
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.75rem;
    font-weight: 500;
}
.language-icon{
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.language-icon select{
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0;
    font-size: 12px;
}
.language-icon select:focus-visible,
.language-icon select:focus{
    background-color: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    color: var(--white);
}
.language-icon select option {
    background-color: transparent !important;
    color: var(--white) !important;
}
.onAir{
    display: flex;
    align-items: center;
    gap: 10px;
}
.blink {
    animation: blink-animation 1.5s infinite;
}

@keyframes blink-animation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
    /* lower header */
.header{
    position: relative;
    width: 100%;
    z-index: 999;
}
.navbar{
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0.8;
    background: rgba(14, 20, 29, 0.60);
}
#navbarTogglerDemo02{ justify-content: end; margin-left: 5rem;}
.navbar-nav{ width: 90%; gap: 1.5rem;}
.navbar-nav span{ display: flex; gap: 1.875rem; align-items: center;}
.nav-item a{
    color: #FFF;
    font-size: 0.875rem;
    font-weight: 500;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .dropdown-item.active, .dropdown-item.show, .dropdown-item:hover,
.nav-item a:focus-within,
.nav-item a:hover{
    color: var(--primary-color-hover);
}
.nav-item .btn{
    color: var(--black);
    font-weight: 800;
    text-decoration: none;
}
.dropdown-menu.show{
    border-radius: 24px;
    background: #2C384B;
    backdrop-filter: blur(20px);
    padding: 1rem;

    display: flex;
    flex-direction: column;
}
.dropdown-item{
    color: var(--white);
}
.dropdown-item:focus, .dropdown-item:hover{
    background: transparent;
}
.service-dropdown-item{
    display: flex;
    gap: 1rem;
    align-items: center;
}
.service-dropdown-item svg path{
    transition: all .3s ease-in-out;
}
.service-dropdown-item:hover svg path{
    fill: var(--primary-color);
}
.dropdown-toggle{
    display: flex;
    align-items: center;
    gap: 4px;

    color: var(--white);
    font-size: 12px;

}
.dropdown-item.active, .dropdown-item:active{
    background-color: transparent;
    color: var(--primary-color);
}
.dropdown-menu{
    min-width: auto;
}
.language-icon .dropdown-menu.show{
    padding: 0rem !important;
    border-radius: 10px !important;
    font-size: 12px !important;
}

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1rem;
    height: 1rem;

    background-image: url("../images/icons/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;

    transition: transform 0.3s ease;
    transform: rotate(0deg);
    border: none;
}
.dropdown-toggle.show::after {
    transform: rotate(-180deg);
    
}

.service-dropdown-item{
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 0 !important;
}
/* END header */

/* hero */
.hero{
    height: 50rem; 
    position: relative; 
    z-index: 2;
    overflow: hidden;
}
.hero .container{ 
    height: 100%; 
    display: flex; 
    flex-direction: column;
    justify-content: flex-end;
    gap: 3rem;

    position: relative;
    z-index: 2;
}
.hero-content{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.rating-wrp{
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.rating-wrp > :nth-child(2){
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
}
.rating-wrp-stars{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-card-title{
    font-size: 19px;
    font-weight: 800;
    line-height: 23px;
}
.hero-wrp{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.hero-wrp span{
    display: flex;
    gap: 1.25rem;
}
.hero-card{
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    height: 100%;

    transition: all 0.3s ease;
    transform: translateY(0);
}
.hero-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.hero-wrp p{
    width: 90%;
}
.hero-video{
    aspect-ratio: 14/8;
    overflow: hidden;
    border-radius: 24px;
    border: 8px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    position: relative;
    
}
.hero-video iframe{
    width: 125%;
    height: 130%;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main-wrp::after{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 774px;
    width: 100%;
    height: 774px;
    border-radius: 774px;
    background: rgba(35, 75, 112, 0.50);
    filter: blur(200px);
    z-index: 1;
}
.main-wrp::before{
    content: '';
    position: absolute;
    top: -5rem;
    left: 10%;
    width: 90%;
    height: 1000px;
    background: url('../images/background-bird.png') no-repeat;
    background-size: contain;
}
.navbar-collapse.show::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background-bird.png') no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0.3;
}
#heroSlider{
    padding: 2.5rem 0;
    overflow: hidden;
}
#heroSlider .splide__track{
    clip-path: inset(-100vw -100vw -100vw -100vw);
    overflow: visible;
}
#heroSlider .splide__slide{
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-partner {
    max-width: 130px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}
.hero-partner img {
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
}
.hero-partner:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}
.why-us-wrp,
.section-header{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.section-header h2{
    display: flex;
    align-items: center;
    gap: 10px;
}
.why-us-wrp span{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.section-header p{
    width: 60%;
}
/* END hero */

/* banner */
.banner{ padding: 60px 0.75rem 60px;}
.banner .container{
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
}
.banner-item{
    display: flex;
    flex-direction: column;
}
.banner-item span{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.banner-item span img{
    max-height: 36px;
}
.banner-item-number{ font-size: 2.5rem; font-weight: 600;}
/* END banner */

/* about */
.about{
    padding: 60px 0;
}
.about .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.about-banner{
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(256.1% 54.22% at 78.71% 50.14%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
}
.about-content{
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.about-content span{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.about-wrp{
    display: flex;
    gap: 1.25rem;
}
.about-wrp figure{
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    padding: 0.5rem;
    aspect-ratio: 1/1;
}
.about-wrp figure img{
    height: 100%;
    min-height: 52px;
    min-width: 44px;
    width: auto;
}
.about-wrp span{
    display: flex;
    flex-direction: column;
    gap: 0;
}
.about-btn-wrp{
    display: flex;
    gap: 1.25rem;
}
.about-video {
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    transition: box-shadow 0.3s ease;
}
.about-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.about-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.0) 100%);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.about-video:hover::before {
    left: 125%;
}
.about-video span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.about-video span svg {
    position: relative;
    z-index: 2;
}
.about-video span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}
.about-video:hover span::before {
    background: var(--primary-color-hover);
    width: 90px;
    height: 90px;
}
.gallery{
    padding: 60px 0;
    overflow: hidden;
}
.gallery-img{
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 24px;
}
.gallery-img img{
    height: 100%;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    transition: all .3s ease-in-out;
}
.gallery-img img:hover{
    scale: 1.05;
}
#gallerySlider .splide__track{
    overflow: visible;
    clip-path: inset(-100vw -100vw -100vw -100vw);
}
/* END about */

/* services */
.services{
    padding: 60px 0;
    overflow: hidden;
}
.services .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.services-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}
.services-card-link:hover .services-card {
    transform: translateY(-5px);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%), rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.services-card {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    justify-content: space-between;
    height: 100%;

    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);

    transition: all 0.3s ease;
    transform: translateY(0);
}
.services-card span {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.services-card-top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.services-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.services-card-tags small {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    border: 1px solid #C8A283;
}
#servicesSlider .splide__track{
    clip-path: inset(-100vw -100vw -100vw 0);
    overflow: visible;
}
#servicesSlider .splide__slide{
    opacity: 0.3;
    transition: opacity 0.3s ease;
}
#servicesSlider .splide__slide.is-visible{
    opacity: 1;
    transition: opacity 0.3s ease;
}
#servicesSlider .splide__arrow{
    height: 52px;
    width: 52px;
    background-color: var(--primary-color);
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease;
}
#servicesSlider .splide__arrow:hover{
    background-color: var(--primary-color-hover);
}
#servicesSlider .splide__arrow--next{
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
#servicesSlider .splide__arrow--prev{
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
#servicesSlider .splide__arrow:disabled{
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    pointer-events: none;
}
/* END services */

/* media */
.media{
    padding: 60px 0;
    overflow: hidden;
}
.media .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.media-card{
    position: relative;

    aspect-ratio: 4/3;
    max-height: 230px;

    overflow: hidden;

    border-radius: 24px;
    border: 1px solid #234B70;
    background: linear-gradient(180deg, rgba(22, 27, 36, 0.00) 32.01%, #161B24 99.86%), radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
}
.media-card img,
.media-card video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: all .3s ease-in-out;
}
.media-card img:hover,
.media-card video:hover{
    transform: scale(1.05);
}
.media-card small {
    position: absolute;
    bottom: 0.875rem;
    left: 0.875rem;

    color: #FFF;
    font-size: 12px;
    font-weight: 800;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(20px);
    padding: 8px 14px;
    transition: all 0.3s ease;
    cursor: default;
}
.media-card:hover small {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.media-card-2 {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;

    aspect-ratio: 4/3;
    max-height: 230px;

    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #234B70;
    background: linear-gradient(180deg, rgba(22, 27, 36, 0.00) 32.01%, #161B24 99.86%), 
                radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, 
                rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
}

.media-card-2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 27, 36, 0.00) 32.01%, #161B24 99.86%), 
                radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, 
                rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    z-index: 1;
    pointer-events: none;
}

.media-card-2 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.media-card-content h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3em; 
  max-height: 2.6em; 
}


.media-card-2:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.media-card-content {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    padding: 12px;
    z-index: 2;
    width: 100%;
}

.media-card-content-wrp{
    display: flex;
    justify-content: space-between;
}
.media-card-content-wrp small{
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    font-weight: 500;
}
.media-card-content h4{
    color: var(--white);
}
#mediaSlider .splide__track,
#mediaSlider3 .splide__track,
#mediaSlider2 .splide__track{
    clip-path: inset(-100vw -100vw -100vw 0);
    overflow: visible;
}
#mediaSlider .splide__slide,
#mediaSlider3 .splide__slide,
#mediaSlider2 .splide__slide{
    opacity: 0.3;
    transition: opacity 0.3s ease;
}
#mediaSlider .splide__slide.is-visible,
#mediaSlider3 .splide__slide.is-visible,
#mediaSlider2 .splide__slide.is-visible{
    opacity: 1;
    transition: opacity 0.3s ease;
}
#mediaSlider .splide__slide.is-active .media-card,
#mediaSlider3 .splide__slide.is-active .media-card,
#mediaSlider2 .splide__slide.is-active .media-card-2{
    border: 3px solid var(--primary-color);
    border-radius: 30px;
}
.media-card, .media-card-2{width: 100%;}
#mediaSlider2 .splide__arrow,
#mediaSlider3 .splide__arrow,
#mediaSlider .splide__arrow{
    height: 52px;
    width: 52px;
    background-color: var(--primary-color);
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease;
}

#mediaSlider2 .splide__arrow:hover,
#mediaSlider3 .splide__arrow:hover,
#mediaSlider .splide__arrow:hover{
    background-color: var(--primary-color-hover);
}
#mediaSlider2 .splide__arrow--next,
#mediaSlider3 .splide__arrow--next,
#mediaSlider .splide__arrow--next{
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
#mediaSlider2 .splide__arrow--prev,
#mediaSlider3 .splide__arrow--prev,
#mediaSlider .splide__arrow--prev{
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
#mediaSlider2 .splide__arrow:disabled,
#mediaSlider3 .splide__arrow:disabled,
#mediaSlider .splide__arrow:disabled{
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    pointer-events: none;
}

/* END media */

/* offices-card */
.offices{
    padding: 60px 0;
}
.offices .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.offices-content{
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.offices-card{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;

    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    color: var(--white);

    transition: all 0.3s ease;
    transform: translateY(0);
}
.offices-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.offices-card p{
    font-size: 12px;
    font-weight: 400;
}
    /* map */
.map-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.map-img svg {
    height: 100%;
    width: auto;
}



/* END offices-card */

/* personal */
.personal{
    padding: 60px 0;
}
.personal .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.personal-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(22, 27, 36, 0.00) 0%, rgba(22, 27, 36, 0.60) 100%);
    backdrop-filter: blur(20px);
    overflow: hidden;
    aspect-ratio: 4/5;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.personal-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.4s ease;
}

.personal-card:hover img {
    transform: scale(1.05);
}

.personal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 27, 36, 0.00) 0%, rgba(22, 27, 36, 0.60) 100%);
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}
.personal-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 255, 255, 0.05);
}

.personal-card-content{
    position: absolute;
    padding: 40px;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.personal-card-content p,
.personal-card-content h3{
    color: var(--white);
}
.personal-card-wrp > svg{
    height: auto;
    width: auto;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    transition: all 0.3s ease;
}
.personal-card-wrp > svg:hover{
    background-color: var(--white);
    border: 1px solid var(--white);
    transform: translateY(-2px);
}
.personal-card-wrp > svg path{
    transition: all 0.3s ease;
}
.personal-card-wrp > svg:hover path{
    fill: var(--black);
}
.personal-card-wrp{
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.personal-card-content{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.personal-btn-wrp{
    display: flex;
    align-items: end;
    justify-content: end;
    height: 100%;
}
/* END  personal */

/* footer */
.footer{
    background: var(--white);
    border-radius: 24px 24px 0px 0px;
    position: relative;
    z-index: 1;
    color: var(--black);
}
.footer a{
    color: var(--black);
    transition: all .3s ease-in-out;
}
.footer a:hover{
    color: var(--primary-color);
}
.footer-left, .footer-right{
    padding: 40px 0;
}
.footer-right-right,
.footer-right-center,
.footer-right-left{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-right-left-top,
.footer-right-left-bottom{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-right-left-bottom span a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-right-left-top span{
    display: flex;
    flex-direction: column;
}
.footer-right-center span{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-right-center-wrp{
    display: flex;
    flex-direction: column;
}
.btn-footer{
    padding: 12px 0;
    font-size: 14px !important;
}
.footer-right-right span{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-right-right-bottom{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-bottom{
    padding: 30px 0;
    border-top: 1px solid rgba(22, 27, 36, 0.10);
}
.footer-left{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.footer-left p{
    color: var(--black);
}
.footer-cop p {
    color: var(--black);
}
.footer-madeby a,
.footer-madeby p{
    color: var(--black);
}
.footer-madeby a:hover{
    color: var(--primary-color-hover);
}
.footer-madeby{
    text-align: end;
}
.footer-cop p, .footer-madeby p{ font-size: 0.75rem;}
/* END footer */

/* breadcrumb */
.breadcrumb-2,
.breadcrumb-3,
.breadcrumb{
    height: fit-content;
    margin-top: 5rem;
}
.breadcrumb .container{
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.breadcrumb-3 .container,
.breadcrumb-2 .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
}
.breadcrumb-2-img{
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
}
.breadcrumb-2-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.breadcrumb-2-content{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;

    text-align: center;
}
.breadcrumb-2-content h1{
    font-size: 2.5rem;
    line-height: 3rem;
}
.breadcrumb-wrp{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.breadcrumb-wrp > :last-child{
    color: #C8A283;
}
/* END breadcrumb */

/* detail service */
.detail-service{
    padding: 60px 0;
    position: relative;
}
.service-nav{
    position: sticky;
    top: 1rem;
    z-index: 100;

    padding: 46px 32px 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.service-list{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-item{
    display: flex;
    gap: 1rem;
    align-items: center;

    color: var(--white);
    font-size: 1rem;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    transition: all 0.3s ease-in-out;
}
.service-item:hover,
.service-item.active{
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.service-item svg path{
    transition: all 0.3s ease-in-out;
}
.service-item:hover svg path,
.service-item.active svg path{
    fill: var(--primary-color);
}
.detail-service-wrp{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.detail-service-wrp a{
    color: var(--white);
    text-decoration: underline;
}
.detail-service-wrp h3{
    color: var(--white);
    margin: 0.5rem 0;
}
.detail-card{
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
}
.detail-card small{
    font-size: 1rem;
    font-weight: 700;
    color: #CFF27E;
}
.detail-card p{
    font-weight: 300;
    line-height: 24px;
}

.detail-card-wrp, .detail-card-specialization, 
.detail-wrp-section{
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.detail-service h2{
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.specialization-card{
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
}
.specialization-card span{
    display: flex;
    align-items: center;
    gap: 20px;
}
.detail-wrp-section ul ,
.detail-card-wrp ul ,
#accordionFaq ul ,
.detail-card-specialization ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detail-wrp-section ul li,
.detail-card-wrp ul li,
#accordionFaq ul li,
.detail-card-specialization ul li{
    display: flex;
}
.detail-wrp-section ul li::before,
#accordionFaq ul li::before,
.detail-card-wrp ul li::before,
.detail-card-specialization ul li::before{
    content: url('../images/icons/ic-ul.svg'); 
    display: inline-block;
    width: 24px; 
    height: 24px;
    margin-right: 10px; 
    vertical-align: middle;
}
.specialization-card span figure{
    max-width: 50px;
    max-height: 60px;
}
.specialization-card span figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#accordionFaq .accordion-button,
#accordionFaq .accordion-item{
    background: transparent;
    color: var(--white);
    border-color: transparent;
}
#accordionFaq .accordion-button:not(.collapsed),
#accordionFaq .accordion-button:focus{
    outline: none;
    box-shadow: none;
}
#accordionFaq .accordion-button{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    padding: 20px 0;
    border-bottom: 1px solid rgba(207, 242, 126, 0.50);
}
#accordionFaq .accordion-item{
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px; 
}
#accordionFaq .accordion-body{
    border-bottom: 1px solid rgba(207, 242, 126, 0.50);
    padding: 0 0 20px 0;

}
#accordionFaq .accordion-button:not(.collapsed){
    border-bottom: none;
}
#accordionFaq .accordion-button::after{
    background-image: url('../images/icons/ic-accordion.svg');
    transition: all .3s ease-in-out;
}
#accordionFaq .accordion-button:not(.collapsed)::after{
    transform: rotate(225deg);
}
.accordion-item:first-of-type>.accordion-header .accordion-button{
    border-top-left-radius: unset;
    border-top-right-radius: unset;
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}

/* END detail service */

/* related comment */ 
.related-comment{
    padding: 60px 0;
}
.related-comment .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.comment-card{
    display: flex;
    flex-direction: column;
    gap: 10px;

    height: 100%;
    justify-content: space-between;
}
.comment-card > span{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.comment-card-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1rem 0;
    color: var(--white);
}
.comment-card-content h4{
    transition: all .3s ease-in-out;
}
.comment-card-content:hover h4{
    color: var(--primary-color);
}
.comment-card-img{
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 24px;
}
.comment-card-img video,
.comment-card-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    transition: all .3s ease-in-out;
}
.comment-card-img:hover img{
    scale: 1.05;
    filter: brightness(0.8);
}
.comment-card-img small{
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    z-index: 2;

    border-radius: 10px;
    border: 1px solid rgba(22, 27, 36, 0.30);
    background: rgba(22, 27, 36, 0.80);
    backdrop-filter: blur(20px);
    padding: 8px 14px;
    color: var(--primary-color);
}
.comment-card-wrp{
    display: flex;
    justify-content: space-between;
}
.comment-card-wrp span{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(20px);
}
.comment-card-wrp span:last-child{
    color: var(--primary-color);
}
#commentSlider .splide__track{
    clip-path: inset(-100vw -100vw -100vw 0);
    overflow: visible;
}
#commentSlider .splide__slide{
    opacity: 0.3;
    transition: opacity 0.3s ease;
}
#commentSlider .splide__slide.is-visible{
    opacity: 1;
    transition: opacity 0.3s ease;
}
#commentSlider .splide__arrow{
    height: 52px;
    width: 52px;
    background-color: var(--primary-color);
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease;
}
#commentSlider .splide__arrow:hover{
    background-color: var(--primary-color-hover);
}
#commentSlider .splide__arrow--next{
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
#commentSlider .splide__arrow--prev{
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
#commentSlider .splide__arrow:disabled{
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    pointer-events: none;
}
/* END related comment */ 

/* branches */
.branches{
    padding: 60px 0;
    overflow: hidden;
}
.branches .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.branches-card-wrapper {
    position: relative;
    margin-bottom: 2rem; 
}
.branches-card {
    aspect-ratio: 10/9;
    overflow: hidden;
    border-radius: 24px;
    z-index: 1;
}
.branches-card-2 {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 24px;
    z-index: 1;
}
.branches-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: all .3s ease-in-out;
}
.branches-card img:hover {
    scale: 1.05;
    filter: brightness(0.8);
}
.branches-card-wrapper .btn {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
/* END branches */

/* values */
.values{
    padding: 60px 0;
    overflow: hidden;
}
.values .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.value-card{
    padding: 40px;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    transition: all .3s ease-in-out;
}
.value-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.value-card-top{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.value-card-top figure{
    max-width: 45px;
    max-height: 45px;
}
/* END values */

/* awards */
.awards{
    padding: 60px 0;
    overflow: hidden;
}
.awards .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.award-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1.25rem;

    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    transition: all .3s ease-in-out;
}
.award-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.award-card-img{
    aspect-ratio: 4/3;
    max-height: 75px;
    max-width: 200px;
    overflow: hidden;
}
.award-card-img img{
    height: 100%;
    width: auto;
    object-fit: contain;
}
/* END awards */


/* blog search */
.blog{
    padding: 60px 0;
}
.blog-nav{
    padding: 30px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(256.1% 54.22% at 78.71% 50.14%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}
.btn-blog-nav{
    border: 1px solid rgba(255, 255, 255, 0.40);
    color: var(--white);
    transition: all .3s ease-in-out;
}
.btn-blog-nav:active,
.btn-blog-nav.active{
    background: var(--primary-color);
    color: var(--secondary-color);
}
.btn-blog-nav:focus-within,
.btn-blog-nav:hover{
    background: var(--primary-color-hover);
    color: var(--secondary-color);
}

/* END blog search */

/* detial blog */
.blog-detail-img{
    padding: 60px 0;
}
.blog-detail-img-wrp{
    aspect-ratio: 16/9;
    overflow: hidden;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
}
.blog-detail-img-wrp img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.detail-blog-content{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.detail-blog-text blockquote{
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 30px;
}
.detail-blog-text{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.detail-blog-text p{
    margin-bottom: 0.5rem;
}
.detail-blog-text p strong{
    font-weight: 800;
}
.detail-blog-text ol {
  list-style-position: outside;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.detail-blog-text ol li {
  margin: 0.75rem 0;
  list-style: decimal;
}

.detail-blog-similiar{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.detail-blog-similiar span{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-blog-similiar a{
    color: var(--primary-color);
}
.detail-blog{
    padding: 0 0 60px;
}
/* END detial blog */

/* error page */
.error-page{
    height: 100%;
    display: flex;
    align-items: center;

    padding: 60px 0;
}
.error-page-wrp{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
/* END error page */

/* career */
.career{
    padding: 60px 0;
}
.career .container{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.career-card{
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: var(--white);
    transition: all .3s ease-out;
}
.career-card:hover {
    transform: translateY(-5px);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%), rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.career-card h3{
    padding-bottom: 20px;
}
.career-card-type{
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.career-card-type span{
    display: flex;
    align-items: center;
    gap: 10px;
}
.career-card-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.career-card-info p{
    padding: 10px 0;
}
/* END career */

/* why us */
.why-us{
    padding: 60px 0;
    overflow: hidden;
}
.why-us-card{
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    gap: 10px;

    height: 100%;
    transition: all .3s ease-in-out;
}
.why-us-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.why-us-card h4{
    color: #C8A283;
}
/* END why us */

/* career info */
.career-info{
    padding: 60px 0;
}
.career-info-detail{
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    transition: all .3s ease-in-out;
}
.career-info-detail:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.career-info-detail h4{
    margin: 0;
    color: #C8A283;
}
.detail-career-wrp{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.detail-career-wrp h2{
    margin-bottom: 50px;
}
.detail-career-content h3{
    font-size: 28px;
    color: var(--white);
}
.detail-career-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-career-content ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-blog-text ul li::before,
.detail-career-content ul li::before {
  content: url('../images/icons/ic-ul.svg'); 
  display: inline-block;
  width: 24px; 
  height: 24px;
  margin-right: 10px; 
  vertical-align: middle;
}
.detail-career{
    padding: 0 0 60px;
}
/* END career info */

/* detail lawyer */
.detail-lawyer{
    padding: 60px 0;
}
.detail-lawyer .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.lawyer-img-wrp{
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px;
    max-height: 500px;
}
.lawyer-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
}
.lawyer-content h2{
    margin-bottom: 1.5rem;
}
.lawyer-img-wrp img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.btn-lawyer{
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.40);
    color: var(--white);
}
.btn-lawyer:focus,
.btn-lawyer:focus-within,
.btn-lawyer:hover{
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
    transform: translateY(-2px);
}
.btn-lawyer svg{
    transition: all .3s ease-in-out;
}
.btn-lawyer:focus svg,
.btn-lawyer:focus-within svg,
.btn-lawyer:hover svg{
    stroke: var(--black);
}
.lawyer-content-wrp{
    display: flex;
    flex-direction: column;
    gap: 10px
}
/* END detail lawyer */

/* other lawyer */
.other-lawyers{
    padding: 60px 0;
}
.other-lawyers .container{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.other-lawyers-card{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;

    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    color: var(--white);
    transition: all .3s ease-in-out;
    height: 100%;
}
.other-lawyers-card:hover{
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.other-lawyers-image{
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 24px;
    max-width: 200px;
}
.other-lawyers-image img{
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    object-fit: cover;
}
.other-lawyers-content{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
}
.other-lawyers-content span{
    display: flex;
    flex-direction: column;
}

.other-lawyers-content span p{
    opacity: .5;
}
.other-lawyers-title{
    text-align: center;
}
/* END other lawyer */

/* contact */
.contact{
    padding: 60px 0;
}
.contact .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-wrp{
    display: flex;
    justify-content: center;
    gap: 60px;
}
.contact-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.contact-card-icon{
    padding: 60px 0;
    display: flex;
    justify-content: center;
}
.contact-card h3, .contact-card a{ 
    color: var(--white);
}
.contact-card a:hover:not(.btn){
    color: var(--primary-color);
}
.contact-card-icon {
    position: relative;
    display: inline-block;
}
.contact-card-icon svg:first-child {
    position: relative;
    z-index: 2; 
}
.contact-card-icon svg:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    animation: breathe 4s ease-in-out infinite;
    transition: animation-duration 0.3s ease;
    pointer-events: none;
}
.contact-card-icon:hover svg:last-child {
  animation-duration: 1.5s;
}
.form-check-label a{
    color: var(--primary-color);
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.form-check-label a:hover{
    color: var(--primary-color-hover);
}
@keyframes breathe {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}
.contact-card-content span p{
    color: var(--white);
    opacity: 1;
}
.contact-card-content{ gap: 0;}
.contact-card-content .btn-footer{ padding: 6px 0; color: var(--white);}
.alert-success{ background: var(--primary-color); border: 1px solid var(--primary-color); color: var(--secondary-color);}
/* END contact */

/* contact banner */
.contact-banner{
    padding: 60px 0;
}
.contact-banner .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-banner-container{
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(256.1% 54.22% at 78.71% 50.14%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 40px;
}
.contact-banner-img{
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 24px;
}
.contact-banner-img img{
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    object-fit: cover;
}
.contact-banner-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: center;
}
.contact-banner-wrp{
    display: flex;
    flex-direction: column;
}
.contact-banner-btn-wrp{
    display: flex;
    gap: 20px;
    align-items: center;
}
/* END contact banner */

/* contact form */
.contact-form{
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(256.1% 54.22% at 78.71% 50.14%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 40px;
}
#sendContact .form-control{
    background: transparent;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--white);
}
#sendContact .form-check-input:focus,
#sendContact .form-control:focus{
    box-shadow: none;
    outline: none;
}
#sendContact .form-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#sendContact .custom-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#sendContact .custom-checkbox {
    width: 20px;
    height: 20px;
    appearance: none;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin: auto 0;
}
#sendContact .custom-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
#sendContact .form-check{
    padding-left: 0;
    height: 100%;
    align-items: center;
}
.form-check-input.is-invalid~.form-check-label{ color: var(--white);}
/* END contact form */

/* detail branch */
.detail-branch{
    padding: 60px 0;
}
.branch-map{
    height: 100%;
    border-radius: 24px;
}
.branch-map iframe{
    height: 100%;
    width: 100%;
    border-radius: 24px;
}
.branch-content{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.branch-content-wrp{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.branch-card-1, .branch-card-2{
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 30px;
    height: 100%;
    color: var(--white);
    transition: all .3s ease-in-out;
}
.branch-card-1:hover,
.branch-card-2:hover {
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.branch-card-1{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
}
.branch-card-1 span{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.branch-card-2{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
}
/* END detail branch */

/* corporate-lawyer */
.corporate-lawyer{
    padding: 60px 0;
}
.corporate-lawyer .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.corporate-lawyer-img{
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    height: 100%;
}
.corporate-lawyer-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.corporate-lawyer-content{
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 100%;
    justify-content: center;
}
.corporate-lawyer-content-wrp{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.corporate-lawyer-content-wrp h3{
    color: var(--white);
    margin-top: 10px;
}
/* END corporate-lawyer */

/* corporate */
.corporate{
    padding: 60px 0;
}
.corporate .container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.corporate-title{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.corporate-card{
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    transition: all .3s ease-in-out;
}
.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.08);
}
/* END corporate */

.services-menu {
  width: auto;
  white-space: nowrap;
  padding: 1rem;
}

.services-columns {
  display: flex;
  gap: 2rem;
}

.services-column {
  display: flex;
  flex-direction: column;
}

.service-dropdown-item {
  white-space: nowrap;
  display: block;
  padding: 0.25rem 0;
}

/* gdpr */
.gdpr {
    padding: 40px 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.gdpr-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 16px;
}

.gdpr-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gdpr-content h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 6px;
}

.gdpr-content h4 {
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 600;
}

.gdpr-content p,
.gdpr-content li {
    margin: 4px 0;
}

.gdpr-content ul {
    list-style: none;
    padding-left: 0;
    margin: 6px 0;
}

.gdpr-content li {
    position: relative;
    padding-left: 26px;
    margin: 4px 0;
}

.gdpr-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-image: url('../images/icons/ic-ul.svg'); /* <- nahraď cestou k tvojej ikone */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}


.gdpr-content a {
    color: var(--primary-color);
    transition: all .3s ease-in-out;
    text-decoration: underline;
}

.gdpr-content a:hover {
    color: var(--primary-color-hover);
}

.gdpr-content strong {
    font-weight: 600;
}

/* END gdpr */