:root {
    --dg: hsla(0, 0%, 20%, 1);
    --mg: hsla(0, 0%, 85%, 1);
    --lg: hsla(240, 22%, 96%, 1);
    --gr: hsla(188, 50%, 26%, 1);
    --bl: hsla(213, 100%, 17%, 1);
    --rd: hsla(339, 71%, 26%, 1);
    --gd: hsla(40, 37%, 51%, 1);
    --accent: var(--gr);
}

html {
    background: var(--mg);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-style: normal;
    font-family: freight-display-pro, serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dg);
    max-width: 100svw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: white;
    margin: 0 auto;
    max-width: 1920px;
}

img,
video {
    width: 100%;
    object-fit: cover;
}

section {
    position: relative;
    padding: 3.75rem 0;
}

footer {
    margin-bottom: 3.125rem;
}

*:focus,
button:focus,
a:focus {
    outline: 1px dotted var(--lg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: freight-display-pro, serif;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: .9375rem;
    color: var(--b1);
    text-transform: uppercase;
    margin-bottom: 0;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1rem;
}

p+h2,
p+h3,
p+h4,
p+h5,
ul+h2,
ul+h3,
ul+h4,
ul+h5 {
    margin-top: 1.875rem;
}

a {
    color: var(--b1);
    font-weight: 500;
    transition: color .3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--b2);
}

ol,
ul {
    padding-left: 1.125rem;
    list-style-position: outside;
}

ol {
    list-style: lower-alpha;
}

ul {
    list-style: square;
}

li::marker {
    color: var(--y1);
}

label {
    position: relative;
    display: block;
    margin: 0;
    margin-top: 0.875rem;
}

legend+label {
    margin-top: 0;
}

label+input {
    min-width: 100%;
}

fieldset {
    margin-bottom: 1.875rem;
}

strong {
    font-weight: 700;
}

.btn {
    padding: .4375rem 1.875rem;
    font-family: freight-display-pro, serif;
    font-weight: 500;
    line-height: 1.875rem;
    border-radius: 0;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}

.btn.btn-primary {
    color: var(--accent);
    border: 1px solid var(--accent);
    background: transparent;
}

.btn.btn-secondary {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary:active:not(:disabled):not(.disabled),
.btn.btn-primary.active:not(:disabled):not(.disabled),
.btn.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: none;
    color: white;
}

.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:active:not(:disabled):not(.disabled),
.btn.btn-secondary:hover {
    background-color: var(--dg);
    border-color: var(--dg);
    box-shadow: none;
}

.btn.btn-icon {
    position: relative;
    padding: .4375rem 3.1875rem .4375rem 1.875rem;
}

.btn.btn-icon>i {
    position: absolute;
    right: .9375rem;
    top: 50%;
    transform: translateY(-50%);
}

.section-title {
    margin-bottom: .75rem;
}

.section-title>* {
    font-size: 1.25rem;
    color: var(--accent);
}

.section-body {
    border-left: 1px solid var(--gd);
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.bg-33,
.bg-66 {
    position: relative;
    overflow: hidden;
    pointer-events: none;
    width: 100%
}

.bg-left {
    left: 0
}

.bg-right {
    right: 0
}

.bg-accent {
    background-color: var(--accent);
    color: white;
}

.green {
    --accent: var(--gr);
}

.blue {
    --accent: var(--bl);
}

.red {
    --accent: var(--rd);
}

.bg-accent .section-title>* {
    color: white;
}

/* ::::: Navigation ::::: */
#nav-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    background: white;
    border-top: 1px solid var(--mg);
}

#nav {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    height: 3.125rem;
    width: calc(100% + 1.875rem);
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

#nav>* {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

#nav-desktop,
.nav-submenu {
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 3.125rem;
    right: 0;
    overflow: hidden;
    z-index: 1;
    transform: translateX(-100%);
    transition: transform .3s ease;
    background: white;
}

#nav-desktop.open,
.nav-submenu.open {
    transform: translateX(0);
    background: white;
}

.nav-menu {
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
}

.full-logo {
    display: none;
}

.nav-link,
.nav-dropdown {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .75rem .9375rem;
    color: var(--dg);
    font-weight: 500;
    border: 0;
    text-decoration: none;
    background: transparent;
    transition: color .3s ease, background-color .3s ease;
    font-family: freight-display-pro, serif;
    text-align: left;
}

.nav-link:hover,
.nav-mobile-cta:hover,
.nav-dropdown:hover {
    text-decoration: none;
    color: var(--b1);
}

.nav-item-active>a,
.nav-item-active>button {
    color: var(--b1);
}

.nav-item-active>a:hover,
.nav-item-active>button:hover {
    color: var(--dg);
}

.nav-dropdown i {
    display: block;
    margin-left: .5rem;
}

.nav-item {
    position: relative;
}

.nav-item.active > .nav-link,
.nav-item.active > .nav-dropdown {
    font-weight: 600;
    color: var(--b1);
}

.nav-submenu .nav-item:not(:first-of-type) {
    border-top: 1px solid hsla(0, 100%, 100%, 0.15);
}

.nav-submenu ul {
    list-style: none;
    padding: 0;
}

.nav-logo {
    height: 3.125rem;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .25rem;
}

.nav-logo img {
    height: 100%;
    object-fit: contain;
}

.logo-light {
    display: none;
}

.nav-logo-wrap,
.nav-mobile-cta,
.nav-toggler {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-width: 0 1px 0 0;
    color: white;
    font-weight: 200;
    z-index: 10;
}

.nav-toggler-icon {
    display: inline-block;
    position: relative;
    width: 1rem;
    height: 1.5rem
}

.nav-toggler-icon span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    opacity: 1;
    left: 0;
    background: var(--dg);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

.nav-toggler-icon span:nth-child(1) {
    top: 5px
}

.nav-toggler-icon span:nth-child(2),
.nav-toggler-icon span:nth-child(3) {
    top: 11px
}

.nav-toggler-icon span:nth-child(4) {
    top: 17px
}

.open .nav-toggler-icon span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%
}

.open .nav-toggler-icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.open .nav-toggler-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.open .nav-toggler-icon span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%
}

.nav-mobile-btn {
    background: transparent;
    color: var(--dg);
    border: 0;
    text-align: right;
}

.nav-mobile-btn i {
    margin-left: .4375rem;
}

.nav-mobile-cta,
.nav-toggler {
    font-size: 0;
    background: white;
    color: var(--dg);
    text-decoration: none;
}

.nav-mobile-cta i {
    font-size: 1rem;
}

.nav-submenu li.nav-item.nav-item-active>.nav-link,
.nav-submenu li.nav-item.nav-item-active>.nav-dropdown {
    background-color: var(--dg);
    color: white;
}

.nav-item-all .nav-link {
    font-size: .75rem;
    justify-content: flex-end;
    font-weight: 500;
}

.nav-item-contact,
.nav-item-shop {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .4375rem .9375rem;
}

.nav-item-contact .nav-link,
.nav-item-shop .nav-link {
    justify-content: flex-start;
}

#nav-desktop .nav-item-contact .nav-link,
#nav-desktop .nav-item-shop .nav-link {
    background: var(--b1);
    height: 2.5rem;
    border-radius: 20px;
    color: white;
    padding: 0 1.875rem;
    transition: background-color .3s ease;
}

#nav-desktop .nav-item-contact .nav-link:hover {
    background: var(--dg);
}

#nav-desktop .nav-item-shop .nav-link {
    background: var(--dg);
}

#nav-desktop .nav-item-shop .nav-link:hover {
    background: var(--b1);
}

#nav-desktop .nav-item-contact .nav-link i,
#nav-desktop .nav-item-shop .nav-link i {
    margin-right: .9375rem;
}

.langSwitch .fa-globe,
.langSwitch .fa-language {
    margin: 0 .75rem 0 0;
}

.nav-header {
    padding: .75rem;
}

.nav-header h6 {
    margin: 0;
}

.nav-header-img {
    display: none;
}

/* ::::: Hero ::::: */
#hero {
    overflow: clip;
    position: relative;
}

.hero-slider, .hero-slide, .hero-slider, .hero-img-wrap, .hero-img-wrap > picture, .hero-content, .hero-content-wrap {
    display: block;
    height: 100%;
}

.hero-img-wrap img {
    height: 100%;
}

.hero-content, .hero-content-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.hero-title {
    margin-bottom: 1.75rem;
}

.hero-title h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0;
    line-height: 1.2;
}

.hero-title h2 {
    font-size: 1.25rem;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--gd);
}

.hero-body {
    border-left: 1px solid var(--gd););
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.hero-btn {
    display: flex;
    justify-content: flex-end;
}

.hero-content-main {
    padding: 3.75rem 0;
}

/* ::::: Practices ::::: */
.practice {
    position: relative;
    border: 1px solid var(--lg);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: border-color .3s ease;
    background: white;
    color: var(--dg);
}

.practice-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.practice-title {
    text-align: center;
}

.practice-body {
    margin-bottom: 4rem;
}

.practice-link {
    display: flex;
    justify-content: center;
}

.practice-title * {
    color: var(--accent);
    margin-bottom: 1rem;
}

.practice li::marker {
    color: var(--accent);
}

/* ::::: Projects ::::: */
.project-slider {
    margin: 0 -.75rem;
}

.project-slide-wrap {
    border: 1px solid var(--lg);
    margin: 0 .75rem;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-slider .slick-track {
    display: flex !important;
}

.project-slider .slick-slide {
    height: inherit !important;
}

.project-slide-title {
    color: var(--accent);
}

.project-link {
    display: flex;
    justify-content: flex-end;
}

#project-slider-dots .slick-dots {
    padding: 0;
    margin: 0;
    display: flex;
}

#project-slider-dots .slick-dots li {
    list-style: none;
    font-size: 0;
    padding: 0;
}
#project-slider-dots .slick-dots li button {
    display: block;
    background: white;
    width: 1rem;
    height: 1rem;
    margin-right: .25rem;
    border: 1px solid var(--accent);
}

#project-slider-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

#project-slider-arrows button {
    width: 3.125rem;
    height: 3.125rem;
    border: 0;
    background: var(--lg);
    margin-left: .5rem;
    transition: all .3s ease;
}

#project-slider-arrows button:hover {
    background: var(--accent);
    color: white;
}

#projects.bg-accent .project-slide-wrap {
    background: white;
    color: var(--dg);
}

/* ::::: Footer ::::: */
.footer-top {
    padding: 3.75rem 0;
    border-top: 1px solid var(--lg);
}

.footer-bottom {
    padding: .5rem 0;
    background: var(--accent);
    color: white;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* ::::: Lawyers ::::: */
section#lawyers {
    background-color: var(--accent);
}

/* ::::: Header ::::: */
#header {
    position: relative;
    padding: 3.75rem 0;
}

.header-title {
    margin-bottom: 1.75rem;
}

.header-title h1 {
    color: var(--accent);
    line-height: 1;
}

.header-title h2 {
    text-transform: capitalize;
    font-weight: 400;
    color: var(--gd);
}

.header-body {
    border-left: 1px solid var(--gd);
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.breadcrumb-item {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--gd);
}

/* ::::: Animations ::::: */
.grid-item-title {
    padding: 1rem;
}

.grid-item-title h4 {
    color: var(--accent);
}

.grid-item-title h5 {
    color: var(--gd);
    text-transform: capitalize;
    font-weight: 400;
}

.grid-item-body {
    padding: 0 1rem 1rem;
}

.grid-item-link {
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: center;
}

/* ::::: Animations ::::: */
@-moz-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-webkit-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-o-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-moz-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-o-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@-webkit-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@-o-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@keyframes cursor {
    to {
        border-color: transparent;
    }
}

[ripple] {
    position: relative;
    overflow: hidden;
}

[ripple] .ripple--container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

[ripple] .ripple--container span {
    transform: scale(0);
    border-radius: 100%;
    position: absolute;
    opacity: 0.75;
    animation: ripple 1000ms;
    background: hsla(330, 2%, 88%, .5);
}

@keyframes c {
    0% {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, .9375rem .125rem 0 .6875rem
    }

    50% {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, 1.25rem .125rem 0 .6875rem
    }

    to {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, 1.25rem -.75rem 0 .6875rem
    }
}

@keyframes d {
    0% {
        opacity: 0
    }

    50% {
        opacity: .2
    }

    to {
        opacity: 0
    }
}

.animate.fade {
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.animate.fade.fade-left {
    transform: translateX(-1.875rem);
}

.animate.fade.fade-right {
    transform: translateX(1.875rem);
}

.animate.fade.in-view {
    opacity: 1;
    transform: translateX(0);
}



/* ::::: Responsive ::::: */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .section-title>* {
        font-size: 1.5rem;
    }

    /* ::::: Nav ::::: */
    .nav-mobile-cta {
        font-size: 1rem;
    }

    .nav-mobile-cta i {
        margin-right: .4375rem;
    }
    
        
    /* ::::: Lawyers ::::: */
    
    .element-item {
        width: calc(50% - 1.5rem);
        margin: 1.5rem .75rem 0;
        overflow: clip;
        background: white;
    }
    
    .grid {
        margin: 0 -.75rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .section-title>* {
        font-size: 1.75rem;
    }
    
    .bg-33,
    .bg-66 {
        position: absolute;
        top: 0;
        bottom: 0
    }

    .bg-33 {
        width: calc(((100% - 720px)/ 2) + (720px * .33333333))
    }

    .bg-66 {
        width: calc(((100% - 720px)/ 2) + (720px * .66666666))
    }
    
    /* ::::: Lawyers ::::: */
    
    .element-item {
        width: calc(33.333333% - 1.5rem);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .section-title {
        margin-bottom: 1.5rem;
    }

    .section-title>* {
        font-size: 2rem;
    }

    .bg-33 {
        width: calc(((100% - 960px)/ 2) + (960px * .33333333))
    }

    .bg-66 {
        width: calc(((100% - 960px)/ 2) + (960px * .66666666))
    }
    
    /* ::::: Lawyers ::::: */
    
    .element-item {
        width: calc(25% - 1.5rem);
        margin: 1.5rem .75rem 0;
        overflow: clip;
        background: white;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    section {
        padding: 7.5rem 0;
    }

    footer {
        margin: 0;
    }

    .section-title {
        margin-bottom: 1.75rem;
    }
    
    .bg-33 {
        width: calc(((100% - 1140px)/ 2) + (1140px * .33333333))
    }

    .bg-66 {
        width: calc(((100% - 1140px)/ 2) + (1140px * .66666666))
    }

    /* ::::: Navigation ::::: */
    #nav-wrapper {
        position: sticky;
        bottom: auto;
        top: 0;
        border: 0;
        border-width: 1px 0;
        transition: background-color .3s ease;
        border: 1px solid var(--lg);
    }

    #nav-wrapper.top.scrolled {
        box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, 0.25);
    }

    #nav {
        height: 6.25rem;
        flex-wrap: nowrap;
        padding: 0 .9375rem;
        margin: 0;
        border-top: 0;
        transition: height .3s ease;
    }

    .nav-logo {
        height: 100%;
        padding: .9375rem 0;
    }
    
    .full-logo {
        display: block;
    }
    
    .icon-logo {
        display: none;
    }
    
    .nav-menu>.nav-item>a,
    .nav-menu>.nav-item>button {
        height: 100%;
    }

    .nav-toggler,
    .nav-mobile-cta,
    .nav-mobile-btn {
        display: none;
    }

    #nav-desktop {
        flex-direction: row;
        position: static;
        overflow: visible;
        background: transparent;
    }

    .nav-menu {
        flex-direction: row;
        width: auto;
    }

    .nav-submenu {
        position: absolute;
        left: 0;
        min-width: 12.5rem;
        top: auto;
        bottom: auto;
        right: auto;
        overflow: visible;
        background: white;
    }

    #nav-desktop,
    .nav-submenu {
        transform: translateX(0);
        align-items: initial;
    }

    #nav>* {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        max-width: none;
    }

    #nav .nav-logo-wrap {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        border: 0;
        max-width: 17rem;
        transition: all .3s ease;
    }

    .nav-submenu .nav-dropdown-item .nav-submenu {
        top: 0;
        left: 100%;
    }

    .nav-dropdown-item>.nav-submenu {
        visibility: hidden;
        opacity: 0;
    }

    .nav-submenu.open {
        visibility: visible;
        opacity: 1;
        z-index: 2;
        background: white;
    }

    .nav-item-contact {
        margin: 0 0 0 1.875rem;
    }

    .nav-item-shop {
        margin: 0 0 0 .9375rem;
    }

    .nav-submenu .nav-link {
        color: var(--dg);
    }

    #nav-desktop .nav-item-contact .nav-link,
    #nav-desktop .nav-item-shop .nav-link {
        padding: 0 .9375rem;
    }

    #nav-desktop .nav-item-contact .nav-link i,
    #nav-desktop .nav-item-shop .nav-link i {
        display: none;
    }

    .nav-menu {
        align-items: center;
    }

    .nav-item.nav-item-pill .nav-dropdown {
        background: var(--g1);
        color: white;
        border-radius: 2rem;
    }

    .nav-item:not(.nav-item-pill) {
        height: 100%;
    }

    .langSwitch {
        margin-left: 1.5rem;
    }

    .langSwitch .nav-submenu {
        right: 0;
        left: auto;
    }

    .nav-dropdown-mega>.nav-submenu {
        transform: translateX(-50%);
        min-width: 1140px;
    }

    .nav-menu-mega {
        display: flex;
        flex-wrap: wrap;
        border: 1px solid var(--mg);
        box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, 0.25);
    }

    .nav-menu-mega>.nav-dropdown-item {
        flex: 0 0 auto;
        width: 20%;
    }

    /*.nav-menu-mega>.nav-dropdown-item+.nav-dropdown-item {
        border-left: 1px solid var(--mg);
    }*/

    .nav-dropdown-mega>.nav-submenu.open>.nav-menu-mega>.nav-dropdown-item>.nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu-mega>.nav-dropdown-item>.nav-dropdown {
        display: none;
    }

    .nav-menu-mega>.nav-item-all {
        flex: 1 0 auto;
        width: 100%;
    }

    .nav-menu-mega .nav-submenu .nav-item:not(:first-of-type) {
        border-top: 0;
    }

    .nav-menu-mega>.nav-item.nav-item-all {
        border-top: 1px solid var(--mg);
    }

    .nav-menu-mega .nav-item-all a {
        color: var(--b1);
        font-weight: 800;
    }

    .nav-menu-mega .nav-link {
        padding: .375rem .9375rem;
    }

    .nav-menu-mega>.nav-item-all>.nav-link {
        padding: .75rem .9375rem;
    }

    .nav-header-img {
        display: block;
    }

    .bg-33 {
        width: calc(((100% - 1320px)/ 2) + (1320px * .33333333))
    }

    .bg-66 {
        width: calc(((100% - 1320px)/ 2) + (1320px * .66666666))
    }
    
    /* ::::: Hero ::::: */
    #hero {
        height: calc(100svh - 6.25rem);
    }
    
    .hero-logo {
        max-width: 300px;
        margin-bottom: 3.125rem;
    }
    
    .hero-title h1 {
        font-size: 3rem;
    }
    
    .hero-title h2 {
        font-size: 1.5rem;
    }
    
    /* ::::: Header ::::: */
    #header {
        padding: 7.5rem 0;
    }
}

@media (min-width: 1400px) {
    .hero-title h1 {
        font-size: 4rem;
    }
    
    .hero-title h2 {
        font-size: 1.75rem;
    }
    /* ::::: Practices ::::: */
    .practice-card {
        height: 100%;
    }
    .practice {
        height: calc(100% - 2rem);
    }
}

/* XXX-Large devices (larger desktops, 1920px and up) */
@media (min-width: 1920px) {
    
}