@charset "utf-8"; /* CSS Document */ /* Author : Binod Raj Dhami */
:root {
    --theme-black-light: rgba(0, 0, 0, 0.02);
    --theme-primary: #fff;
    --theme-secondary: #000;
    --theme-brown: #a89968;
    --theme-brown-dark: #221f1f;
    --theme-orange: #dda952;
    --theme-grey: #666;
    --theme-grey-light: #66667a;
    --theme-grey-very-light: #eee;
    --theme-grey-medium-light: #ccc;
    --font-DMSans: "DM Sans", sans-serif;
    --font-CrimsonPro: "Crimson Pro", serif;
    --transition: all ease-in-out 0.3s;
} /* ================================================== Reset specific tags further */
html,
body,
p,
ul,
ol,
dl,
li,
figure,
blockquote {
    margin: 0;
    padding: 0;
    font-family: var(--font-DMSans);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-CrimsonPro);
} /* ================================================== Apply the font globally */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #000;
    font-family: var(--font-DMSans);
    background: #fff;
} /* ================================================== Override CSS */

.wrapper {
    position: relative;
    overflow: hidden;
} /* ================================================== Go To Top Section */
#back-top {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 15px;
    text-align: center;
    z-index: 9;
}
#back-top a {
    display: block;
    text-decoration: none;
}
#back-top a .fa {
    width: 40px;
    height: 40px;
    padding-top: 13px;
    font-size: 14px;
    border-radius: 5px;
    opacity: 1;
    color: #fff;
    background: #0e0700;
    border: #fff solid 1px;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
#back-top a .fa:hover {
    background: #fff;
    color: #0e0700;
    border-color: #0e0700;
    transform: scale(1.05, 1.05);
}
#bannerSlider,
#productCategorySlider,
#relatedSlider {
    overflow: hidden;
} /* ================================================== Header Section */
.site-header {
    background: #221f1f;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo {
    padding: 0px 0;
    width: 280px;
}
.site-branding img {
    width: 100%;
    height: auto;
}
.header-contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: rgba(255, 255, 255, 0.05) solid 1px;
}
.header-contact-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    gap: 15px;
}
.header-contact-info li {
    color: rgba(255, 255, 225, 0.5);
    font-size: 14px;
    font-family: var(--font-DMSans);
}
.header-contact-info li .fa-solid {
    color: var(--theme-grey-medium-light);
    font-size: 12px;
    margin-right: 5px;
}
.header-social-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 10px;
}
.header-social-link li a .fa-brands {
    color: rgba(255, 255, 225, 0.5);
    font-size: 14px;
    transition: var(--transition);
}
.header-social-link li a .fa-brands:hover {
    color: var(--theme-grey-medium-light);
}
.site-navigation {
    width: calc(100% - 330px);
}
.main-navigation {
    background: transparent;
}
#mega-menu-wrap-header_menu {
    background: transparent;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item {
    margin: 10px 0;
    margin-right: 20px;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item > a.mega-menu-link {
    height: inherit;
    padding: 0;
    color: var(--theme-primary);
    transition: var(--transition);
    font-size: 16px;
    font-family: var(--font-DMSans);
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item > a.mega-menu-link:hover {
    background: transparent;
    color: var(--theme-orange);
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    color: var(--theme-orange);
    background: transparent;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item:last-child {
    float: right;
    margin: 0;
    margin-top: 10px;
    margin-right: 0;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item:last-child > a.mega-menu-link {
    padding: 5px 20px;
    background: var(--theme-orange);
    color: var(--theme-primary);
    text-transform: uppercase;
    border-radius: 30px;
    font-size: 14px;
    line-height: 30px;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item:last-child > a.mega-menu-link:hover {
    background: var(--theme-primary);
    color: var(--theme-secondary);
} /* ================================================== Banner Section */
.banner {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.banner-slider {
    text-align: center;
}

.banner-slider .banner-sub-title {
    display: inline-block;
    margin-bottom: 15px;
    padding: 5px 30px 5px 20px;
    border-radius: 30px;
    background-image: linear-gradient(to right, var(--theme-orange), var(--theme-secondary));
    color: var(--theme-primary);
    font-family: var(--font-DMSans);
    font-size: 18px;
}
.banner-slider .banner-title {
    color: var(--theme-primary);
    font-family: var(--font-CrimsonPro);
    text-transform: capitalize;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
}
.banner-slider .banner-content {
    margin: 20px 0;
    color: var(--theme-grey);
    font-family: var(--font-DMSans);
    font-size: 20px;
    line-height: 30px;
}
.banner-slider .banner-link {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    color: var(--theme-secondary);
    background: var(--theme-primary);
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}
.banner-slider .banner-link span {
    font-family: var(--font-DMSans);
    margin-right: 10px;
}
.banner-slider .banner-link:hover {
    background: var(--theme-orange);
}
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: calc(50% - 30px);
    right: 50px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    z-index: 999;
    background: var(--theme-orange);
    color: var(--theme-primary);
    font-size: 42px;
    line-height: 0;
    border-radius: 50%;
    opacity: 0.3;
}
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--theme-orange);
    color: var(--theme-primary);
    z-index: 999;
    font-size: 42px;
    line-height: 0;
    border-radius: 50%;
    opacity: 0.3;
} /* ================================================== Common Section */
.section-heading {
    margin-bottom: 40px;
}
.section-heading .section-heading-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 30px 5px 15px;
    border-radius: 30px;
    background-image: linear-gradient(to right, var(--theme-orange), transparent);
    color: var(--theme-secondary);
    font-family: var(--font-DMSans);
    font-size: 16px;
}
.section-heading .section-heading-title {
    color: var(--theme-brown-dark);
    font-family: var(--font-CrimsonPro);
    text-transform: capitalize;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
} /* ================================================== Welcome Section */
.welcome {
    padding: 80px 0;
    background: var(--theme-primary);
}
.welcome .section-heading {
    margin-bottom: 15px;
}
.welcome .section-heading .section-heading-title {
    font-size: 48px;
    line-height: 48px;
}
.welcome-thumbnail {
    position: relative;
    min-height: 300px;
}
.welcome-thumbnail img {
    width: 100%;
    height: auto;
    padding-right: 30px;
}
.experience-content {
    position: absolute;
    bottom: 30px;
    right: 60px;
    width: 280px;
    background: var(--theme-orange);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    gap: 15px;
}
.experience-content .years {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--theme-primary);
    font-family: var(--font-DMSans);
    width: 130px;
    gap: 10px;
    border-right: rgba(255, 255, 255, 0.5) solid 1px;
}
.experience-content .years span:first-child {
    font-size: 48px;
    font-weight: 700;
    line-height: 36px;
}
.experience-content .years span:last-child {
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
}
.experience-content .information {
    color: var(--theme-primary);
    font-family: var(--font-DMSans);
    font-size: 16px;
    line-height: 24px;
}
.welcome-content p {
    color: var(--theme-grey);
    font-family: var(--font-DMSans);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
}
.welcome-content p strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary);
    font-family: var(--font-CrimsonPro);
}
.welcome-content .banner-link {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    color: var(--theme-primary);
    background: var(--theme-brown-dark);
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}
.welcome-content .banner-link span {
    font-family: var(--font-DMSans);
    margin-right: 10px;
}
.welcome-content .banner-link:hover {
    background: var(--theme-orange);
    color: var(--theme-secondary);
} /* ================================================== Achivements Section */
.achivement{
    background: #fff;
    padding-bottom: 80px;
}
.achivement-container {
    position: relative;
    padding: 50px;
    background: var(--theme-orange);
    border-radius: 10px;
    border: var(--theme-grey-medium-light) solid 2px;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
}
.achivement-container::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    border-left: var(--theme-orange) solid 10px;
    border-bottom: var(--theme-grey) solid 10px;
    border-radius: 10px;
}
.achivement-container::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    border-right: var(--theme-orange) solid 10px;
    border-bottom: var(--theme-grey) solid 10px;
    border-radius: 10px;
}

.achivement-card {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
}
.achivement-card .counter-icon {
    padding-right: 20px;
    border-right: rgba(255, 255, 255, 0.5) solid 1px;
}
.achivement-card .counter-icon img {
    width: 50px;
    height: auto;
}
.achivement-card .counter-content {
    display: flex;
    flex-direction: column;
}
.achivement-card .counter-content .counter-value {
    color: var(--theme-primary);
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-DMSans);
    line-height: 36px;
    text-shadow: 1px 1px 1px var(--theme-grey);
}
.achivement-card .counter-content .counter-name {
    color: var(--theme-primary);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-DMSans);
    text-shadow: 1px 1px 1px var(--theme-grey);
} /* ================================================== Welcome Section */
.practice-area {
    padding-bottom: 50px;
    background: var(--theme-primary);
}
.practice-area .section-heading {
    text-align: center;
}
.practice-area-card {
    position: relative;
    padding: 30px;
    margin-bottom: 30px;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
}
.practice-area-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}
.practice-area-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-grey-very-light);
    z-index: -1;
    transition: var(--transition);
    border: var(--theme-grey-medium-light) solid 1px;
}
.practice-area-card-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.practice-area-card-icon img {
    width: 40px;
    height: 40px;
}
.practice-area-card-content h4 a {
    display: inline-block;
    margin: 15px 0 5px;
    color: var(--theme-brown-dark);
    font-size: 24px;
    font-family: var(--font-CrimsonPro);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.practice-area-card-content p {
    color: var(--theme-grey);
    font-size: 18px;
    font-family: var(--font-DMSans);
    font-weight: 400;
    line-height: 24px;
    transition: var(--transition);
}
.practice-area-card-content .btn-read-more {
    display: inline-block;
    margin-top: 5px;
    text-decoration: none;
    color: var(--theme-orange);
    font-size: 16px;
    transition: var(--transition);
    font-weight: 500;
}
.practice-area-card-content .btn-read-more span {
    font-family: var(--font-DMSans);
    margin-right: 5px;
}
.practice-area-card-content .btn-read-more .fa-solid {
    font-size: 14px;
}
.practice-area-card:hover {
    transform: translateY(-5px);
}
.practice-area-card:hover::after {
    opacity: 0;
}
.practice-area-card:hover .practice-area-card-content h4 a,
.practice-area-card:hover .practice-area-card-content p {
    color: var(--theme-primary);
}
.practice-area-card:hover .practice-area-card-content h4 a:hover,
.practice-area-card:hover .practice-area-card-content .btn-read-more:hover {
    color: var(--theme-orange);
} /* ================================================== Team Member Section */
.team-member {
    padding-bottom: 100px;
}
.team-member .section-heading {
    position: relative;
    margin-bottom: 0;
    padding: 100px 0 150px;
    text-align: center;
    z-index: 1;
}
.team-member .section-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/team-member.jpeg") no-repeat fixed center center;
    background-size: cover;
    z-index: -1;
}
.team-member .section-heading .section-heading-title {
    margin: 0 auto;
    width: 500px;
    color: var(--theme-primary);
}
#teamMemberSlider {
    position: relative;
    margin-top: -100px;
    z-index: 999;
}
#teamMemberSlider .slider-item {
    padding-bottom: 20px;
}
.team-member-card {
    position: relative;
    padding: 30px 15px;
    text-align: center;
    background: var(--theme-primary);
    border: var(--theme-grey-medium-light) solid 1px;
    min-height: 290px;
}
.team-member-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--theme-secondary);
}
.team-member-photo {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: var(--theme-brown-dark) solid 2px;
    overflow: hidden;
}
.team-member-photo img {
    width: 100%;
    height: auto;
}
.team-member-card-content h4 a {
    display: inline-block;
    color: var(--theme-secondary);
    font-size: 24px;
    font-family: var(--font-CrimsonPro);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.team-member-card-content h4 a:hover {
    color: var(--theme-orange);
}
.team-member-card-content .position {
    position: relative;
    display: block;
    padding-top: 10px;
    color: var(--theme-orange);
    font-size: 16px;
    font-family: var(--font-DMSans);
}
.team-member-card-content .position::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--theme-orange);
}
.team-social-links {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    background: var(--theme-orange);
    padding: 10px 30px;
}
.team-social-links li:nth-child(2) {
    padding: 0 15px;
    border-left: rgba(255, 255, 255, 0.5) solid 1px;
    border-right: rgba(255, 255, 255, 0.5) solid 1px;
}
.team-social-links li a .fa-brands {
    color: var(--theme-primary);
    font-size: 14px;
    transition: var(--transition);
}
.team-social-links li a .fa-brands:hover {
    color: var(--theme-secondary);
}
#teamMemberSlider .owl-dots {
    margin-top: 30px;
}
#teamMemberSlider .owl-dots .owl-dot span {
    margin: 0 2px;
    background: var(--theme-orange);
    transition: var(--transition);
}
#teamMemberSlider .owl-dots .owl-dot.active span {
    background: var(--theme-brown-dark);
    width: 30px;
} /* ================================================== Team Member Section */
.free-consultation {
    padding: 80px 0;
    background: url("../images/free-consultation.jpg") no-repeat center center;
    background-size: cover;
}
.free-consultation .section-heading .section-heading-title {
    color: var(--theme-primary);
}
.free-consultation-form {
    padding: 30px;
    padding-bottom: 5px;
    border-radius: 5px;
    background: var(--theme-primary);
    border: rgba(255, 255, 255, 0.15) solid 1px;
}
.free-consultation-form br {
    display: none;
}
.free-consultation-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--theme-secondary);
    font-size: 14px;
    font-family: var(--font-DMSans);
    font-weight: 700;
}
.free-consultation-form label span {
    color: var(--theme-orange);
}
.free-consultation-form .form-control {
    margin-bottom: 30px;
    background: var(--theme-brown-dark);
    color: var(--theme-primary);
    font-family: var(--font-DMSans);
    font-size: 14px;
    height: 50px;
    border: none;
    border-radius: 5px;
}
.free-consultation-form textarea.form-control {
    height: 100px;
}
.free-consultation-form .btn-form-control {
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    text-align: center;
    color: var(--theme-primary);
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--font-DMSans);
    background: var(--theme-secondary);
    transition: var(--transition);
}
.free-consultation-form .btn-form-control:hover {
    background: var(--theme-orange);
    color: var(--theme-secondary);
}
.free-consultation-form-map {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: var(--theme-orange) solid 2px;
    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.2);
}
.free-consultation-form-map iframe {
    width: 100%;
    height: 475px;
    margin-bottom: -7px;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 0 25px;
    color: var(--theme-primary);
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
    color: #fff;
} /* ================================================== News & Blog Section */
.publication-news {
    padding-top: 100px;
    background: var(--theme-primary);
}
.publication-news .section-heading {
    text-align: center;
}
.publication-news-card {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
}
.publication-news-card-thumbnail {
    position: relative;
    overflow: hidden;
}
.publication-news-card-thumbnail img {
    width: 100%;
    height: auto;
    transition: all linear 0.5s;
}
.publication-news-card:hover .publication-news-card-thumbnail img {
    transform: scale(1.5);
}
.publication-news-card-content {
    padding: 30px;
}
.publication-news-card-date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.publication-news-card-date span,
.publication-news-card-date span a {
    color: var(--theme-orange);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.publication-news-card-date span a:hover {
    color: var(--theme-secondary);
}
.publication-news-card-heading-title a {
    margin: 10px 0;
    color: var(--theme-brown-dark);
    font-size: 24px;
    font-family: var(--font-CrimsonPro);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    height: 60px;
}
.publication-news-card-heading-title a:hover {
    color: var(--theme-orange);
}
.publication-news-card-content p {
    color: var(--theme-grey);
    font-size: 18px;
    font-family: var(--font-DMSans);
    font-weight: 400;
    line-height: 24px;
    transition: var(--transition);
}
.publication-news-card-content .btn-read-more {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: var(--theme-grey);
    font-size: 16px;
    transition: var(--transition);
    font-weight: 500;
}
.publication-news-card-content .btn-read-more span {
    font-family: var(--font-DMSans);
    margin-right: 5px;
}
.publication-news-card-content .btn-read-more .fa-solid {
    font-size: 14px;
}
.publication-news-card-content .btn-read-more:hover {
    color: var(--theme-orange);
} /* ================================================== Client Section */
.client {
    padding: 80px 0;
    background: var(--theme-primary);
}
.client-slider-item {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--theme-grey-light) solid 1px;
} /* ================================================== Footer Section */
.site-footer {
    background: var(--theme-secondary);
} /* ========== Footer Contact  */
.footer-contact ul,
.footer-contact ul li:nth-child(2) {
    list-style: none;
    border-left: rgba(255, 255, 255, 0.1) solid 1px;
    border-right: rgba(255, 255, 255, 0.1) solid 1px;
}
.footer-contact ul li {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-contact ul li span {
    font-family: var(--font-DMSans);
    color: var(--theme-primary);
}
.footer-contact ul li .footer-contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 50px;
    font-size: 30px;
}
.footer-contact ul li .footer-contact-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}
.footer-contact ul li .footer-contact-content span:first-child {
    color: var(--theme-grey);
} /* ========== Footer Content  */
.footer-content {
    padding: 50px 0;
    border-top: rgba(255, 255, 255, 0.1) solid 1px;
    border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
}
.footer-logo img {
    width: 350px;
    height: auto;
}
.footer-social-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.footer-social-link li a .fa-brands {
    font-size: 24px;
}
.footer-block-heading {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
    color: var(--theme-primary);
    font-family: var(--font-CrimsonPro);
    font-size: 24px;
    font-weight: 600;
}
.footer-block-heading::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 15px;
    background: var(--theme-orange);
}
.footer-block ul li a {
    color: var(--theme-grey);
    font-family: var(--font-DMSans);
    font-size: 16px;
    line-height: 36px;
    text-decoration: none;
    transition: var(--transition);
}
.footer-block ul li a:hover {
    color: var(--theme-orange);
}
.footer-block p {
    margin-top: 30px;
    color: var(--theme-grey);
    font-family: var(--font-DMSans);
    font-size: 16px;
    line-height: 30px;
} /* ========== Footer Subscribe Form  */
.tnp-subscription {
    margin: 0 !important;
}
.tnp-subscription label,
.tnp-profile label {
    display: none;
}
.tnp-subscription input[type="email"] {
    height: 45px !important;
    background: var(--theme-primary);
    border-radius: 5px !important;
    font-size: 14px !important;
    font-family: var(--font-DMSans) !important;
}
.tnp-subscription input.tnp-submit {
    padding: 10px 15px !important;
    border-radius: 3px !important;
    background: var(--theme-orange) !important;
    color: var(--theme-secondary) !important;
    font-size: 16px !important;
    font-family: var(--font-DMSans);
    text-transform: uppercase;
    font-weight: 500;
}
.tnp-subscription input.tnp-submit:hover {
    background: var(--theme-brown) !important;
} /* ========== Footer Copyright  */
.footer-copyright {
    padding: 15px 0;
}
.footer-copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright p {
    color: var(--theme-grey);
    font-size: 16px;
    font-family: var(--font-DMSans);
}
.footer-copyright ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 15px;
}
.footer-copyright ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.footer-copyright ul li .fa-solid {
    color: var(--theme-grey);
    font-size: 5px;
}
.footer-copyright ul li a {
    color: var(--theme-grey);
    font-size: 16px;
    font-family: var(--font-DMSans);
    text-decoration: none;
    transition: var(--transition);
}
.footer-copyright ul li a:hover {
    color: var(--theme-orange);
} /* ================================================== Common Page */
.page-banner {
    position: relative;
    padding: 50px 0;
    background: url("../images/page-banner.jpeg") no-repeat top center;
    background-size: cover;
}
.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}
.page-banner-breadcrumb {
    display: inline-block;
    padding: 10px 20px;
    color: var(--theme-primary);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-DMSans);
    border: #ffffff33 solid 1px;
    background: #ffffff1a;
    border-radius: 30px;
    margin-bottom: 20px;
}
.page-banner-breadcrumb a,
.page-banner-breadcrumb span {
    display: inline-block;
    text-decoration: none;
    color: var(--theme-primary);
}
.page-banner-breadcrumb .fa-solid {
    color: var(--theme-primary);
    border-radius: 50%;
    font-size: 10px;
    margin: 0 5px;
}
.page-bannerheading h1 {
    color: var(--theme-primary);
    font-family: var(--font-CrimsonPro);
    font-size: 48px;
    line-height: 48px;
    font-weight: 600;
}
.page-content {
    padding: 70px 0;
    background: var(--theme-primary);
}
.page-content-description h2 {
    color: var(--theme-brown-dark);
    font-family: var(--font-CrimsonPro);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}
.page-content-description h3 {
    color: var(--theme-brown-dark);
    font-family: var(--font-CrimsonPro);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}
.page-content-description h4 {
    color: var(--theme-brown-dark);
    font-family: var(--font-CrimsonPro);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.page-content-description p {
    color: var(--theme-secondary);
    font-family: var(--font-DMSans);
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}
.page-content-description ul,
.page-content-description ol {
    margin-left: 18px;
    margin-bottom: 30px;
}
.page-content-description ol li,
.page-content-description ul li {
    color: var(--theme-secondary);
    font-family: var(--font-DMSans);
    font-size: 16px;
    line-height: 36px;
} /* ================================================== Practice Areas Page */
.page-content .practice-area-card {
    margin-bottom: 0;
    margin-top: 30px;
} /* ================================================== Practice Areas Single Page */
.related-practice-areas h3 {
    padding-bottom: 10px;
    border-bottom: var(--theme-grey-medium-light) solid 1px;
}
.related-practice-areas .practice-area-card {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.related-practice-areas .practice-area-card-content h4 a {
    margin: 0;
}
.related-practice-areas .practice-area-card-content .btn-read-more {
    margin-top: 5px;
    font-size: 14px;
    color: var(--theme-orange);
}
#accordionExample .accordion-header .accordion-button {
    color: var(--theme-brown-dark);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-CrimsonPro);
    font-weight: 700;
}
#accordionExample .accordion-collapse .accordion-body p {
    margin-bottom: 15px;
    color: var(--theme-grey);
    font-family: var(--font-DMSans);
    font-size: 16px;
    line-height: 30px;
}
#accordionExample .accordion-collapse .accordion-body ul,
#accordionExample .accordion-collapse .accordion-body ol {
    margin-bottom: 15px;
}
#accordionExample .accordion-collapse .accordion-body li {
    margin-left: 18px;
    color: var(--theme-grey);
    font-family: var(--font-DMSans);
    font-size: 16px;
    line-height: 30px;
} /* ================================================== Our Team Page */
.page-content .team-member-card {
    margin-top: 50px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: var(--transition);
}
.page-content .team-member-card:hover {
    transform: translateY(-5px);
} /* ================================================== Our Team Single Page */
.single-our-team-member {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: var(--theme-grey-medium-light) solid 1px;
}
.single-our-team-member .single-our-team-member-profile {
    width: 200px;
}
.single-our-team-member .single-our-team-member-profile img {
    width: 100%;
    height: auto;
}
.single-our-team-member .single-our-team-member-bio {
    width: 100%;
}
.single-our-team-member .single-our-team-member-bio h2 {
    font-size: 36px;
    font-weight: 700;
}
.single-our-team-member .single-our-team-member-bio .position {
    position: relative;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: var(--theme-orange);
    font-size: 18px;
    font-family: var(--font-DMSans);
}
.single-our-team-member .single-our-team-member-bio .position::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--theme-orange);
}
.single-our-team-member .single-our-team-member-bio .expertise {
    position: relative;
    display: block;
    color: var(--theme-grey);
    font-size: 16px;
    font-family: var(--font-DMSans);
}
.single-our-team-member .single-our-team-member-social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    position: relative;
    gap: 5px;
    margin-top: 15px;
}
.single-our-team-member .single-our-team-member-social-links li a {
    text-decoration: none;
}
.single-our-team-member .single-our-team-member-social-links li a .fa-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: var(--theme-orange);
    color: var(--theme-brown-dark);
    border-radius: 3px;
    transition: var(--transition);
}
.single-our-team-member .single-our-team-member-social-links li a .fa-brands:hover {
    background: var(--theme-brown-dark);
    color: var(--theme-primary);
}
.related-team-members h3 {
    padding-bottom: 10px;
    border-bottom: var(--theme-grey-medium-light) solid 1px;
}
.related-team-members .team-member-card {
    padding: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    text-align: left;
    min-height: inherit;
    margin-top: 30px;
}
.related-team-members .team-member-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 50px;
    background: var(--theme-secondary);
}
.related-team-members .team-member-card .team-member-photo {
    width: 70px;
    height: 70px;
    margin: inherit;
    margin-top: 0;
}
.related-team-members .team-member-card .team-member-photo img {
    width: 70px;
    height: 70px;
}
.related-team-members .team-member-card-content .position {
    margin-bottom: 0;
}
.related-team-members .team-member-card-content .position::before {
    left: 0;
    transform: translateX(0);
} /* ================================================== Single News Page */
.page-content .publication-news-card-date {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: var(--theme-grey-medium-light) solid 1px;
}
.page-content .publication-news-card-date span,
.page-content .publication-news-card-date span a {
    font-size: 14px;
}
.page-content-thumbnail img {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}
.related-publication-news h3 {
    padding-bottom: 10px;
    border-bottom: var(--theme-grey-medium-light) solid 1px;
}
.related-publication-news .publication-news-card {
    display: flex;
    margin-top: 30px;
}
.related-publication-news .publication-news-card-thumbnail{
    width: 150px;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.related-publication-news .publication-news-card-thumbnail img{
    width: 100px;
    height: 75px;
}

.related-publication-news .publication-news-card-content {
    width: calc(100% - 150px);
    padding: 15px;
}
.related-publication-news .btn-read-more {
    margin: 0;
    font-size: 14px;
}
.related-publication-news .publication-news-card-heading-title a {
    font-size: 18px;
    margin: 0;
} /* ================================================== Book An Appointment Page */
.page-content .free-consultation-form {
    background: var(--theme-primary);
    border: var(--theme-orange) solid 2px;
    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.2);
}
.free-consultation-advices-block {
    padding: 30px;
    border-radius: 10px;
    background: var(--theme-primary);
    border: var(--theme-orange) solid 2px;
    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.2);
}
.free-consultation-advices-block:first-child {
    margin-bottom: 30px;
}
.free-consultation-advices-block h3 {
    color: var(--theme-secondary);
}
.free-consultation-advices-block ul {
    margin-left: 18px;
}
.free-consultation-advices-block ul li {
    color: var(--theme-grey);
    font-size: 16px;
    font-family: var(--font-DMSans);
    line-height: 30px;
} /* ================================================== Contact Us Page */
.page-content .free-consultation-form-map {
    margin-top: 50px;
} /* ================================================== Responsive */ /* X-Large */
@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
        margin: 0 auto;
        padding-right: 24px;
        padding-left: 24px;
    }
} /* Large */
@media (max-width: 1200px) {
    .container {
        max-width: 1240px;
        margin: 0 auto;
        padding-right: 24px;
        padding-left: 24px;
    }
} /* Small */
@media (max-width: 992px) {
    .container {
        max-width: 1240px;
        margin: 0 auto;
        padding-right: 24px;
        padding-left: 24px;
    }
    .header-container {
        flex-direction: column;
    }
    .site-navigation {
        width: 100%;
    }
    .site-branding {
        padding: 15px 0;
    }
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    .achivement-container ul li {
        justify-content: flex-start;
    }
    .achivement-container ul li:nth-child(3),
    .achivement-container ul li:last-child {
        margin-top: 40px;
    }
    .footer-logo img {
        width: 200px;
    }
} /* Medium */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding-left: 15px;
        padding-right: 15px;
    }
    #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item > a.mega-menu-link {
        padding: 5px 10px;
    }
    #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item:last-child > a.mega-menu-link {
        padding: 5px 20px;
    }
} /* Small */
@media (max-width: 576px) {
    .container {
        max-width: 540px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .site-header {
        padding-top: 15px;
    }
    .header-container {
        display: block;
    }
    .site-logo {
        margin: 0 auto;
        width: 300px;
    }
    .site-branding {
        position: relative;
    }
    .site-navigation {
        width: 100%;
    }
    .main-navigation {
        padding-left: 0;
    }
    .banner-left-side {
        width: 100%;
    }
    .banner-right-side {
        display: none;
    }
} /* X-Small */
@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-contact-info {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .banner-slider .banner-sub-title {
        font-size: 18px;
    }
    .banner-slider .banner-title {
        font-size: 36px;
        line-height: 36px;
    }
    .banner-slider .banner-content {
        font-size: 16px;
    }
    .banner-slider .banner-link {
        padding: 10px 20px;
        font-size: 14px;
    }
    .welcome-thumbnail {
        min-height: inherit;
        margin-bottom: 50px;
    }
    .team-member .section-heading .section-heading-title {
        width: 100%;
    }
    .free-consultation-form-map {
        margin-top: 30px;
    }
    .publication-news-card {
        margin-bottom: 30px;
    }
    .footer-contact ul li {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
} /* Extra Small*/
@media (max-width: 576px) {
    .site-header {
        background: var(--theme-brown-dark);
    }
    .header-contacts {
        display: block;
        padding-left: 0;
    }
    .header-contacts p {
        display: block;
        text-align: center;
    }
    .header-contacts p span,
    .header-contacts p a {
        color: var(--theme-primary);
    }
    .header-social-link {
        margin-top: 15px;
        justify-content: center;
    }
    .header-social-link li a .fa-brands {
        color: var(--theme-primary);
    }
    .main-navigation {
        background: transparent;
        padding-bottom: 15px;
    }
    #mega-menu-wrap-header_menu .mega-menu-toggle {
        background: transparent;
    }
    #mega-menu-wrap-header_menu .mega-menu-toggle .mega-toggle-blocks-left,
    #mega-menu-wrap-header_menu .mega-menu-toggle .mega-toggle-blocks-center {
        display: none;
    }
    .banner {
        padding: 0;
        min-height: inherit;
    }
    #bannerSlider {
        padding: 70px 0;
    }
    .welcome {
        padding: 70px 0;
    }
    .welcome-thumbnail img {
        padding-right: 0;
    }
    .experience-content {
        right: inherit;
        left: 50%;
        transform: translateX(-50%);
    }
    .section-heading {
        margin-bottom: 30px;
    }
    .practice-area .section-heading {
        text-align: left;
    }
    .welcome .section-heading .section-heading-title {
        font-size: 42px;
        line-height: 42px;
    }
    .section-heading .section-heading-subtitle {
        font-size: 14px;
    }
    .section-heading .section-heading-title {
        font-size: 30px;
    }
    .team-member {
        padding-bottom: 70px;
    }
    .team-member-card {
        min-height: inherit;
    }
    .free-consultation {
        padding: 70px 0;
    }
    .free-consultation-form {
        padding: 30px 20px 0;
    }
    .free-consultation-form .form-control {
        height: 45px;
    }
    .publication-news {
        padding-top: 70px;
    }
    .client {
        padding: 30px 0 50px;
    }
    .footer-contact ul li {
        padding: 30px 15px;
    }
    .footer-contact ul li:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: rgba(255, 255, 255, 0.1) solid 1px;
        border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
    }
    .header-contacts p .fa-solid {
        color: var(--theme-orange);
    }
    #mega-menu-wrap-header_menu:has(.mega-menu-open) #mega-menu-header_menu[data-effect-mobile^="slide_right"] + button.mega-close {
        left: 250px;
        right: 20px;
        top: 12px;
    }
    #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item:last-child {
        float: inherit;
    }
    #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item > a.mega-menu-link {
        color: var(--theme-primary);
        padding: 10px 30px;
        border-bottom: rgba(255, 255, 255, 0.05) solid 1px;
    }
    #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item:last-child > a.mega-menu-link {
        background: transparent;
        padding: 10px 30px;
    }
    .owl-carousel .owl-nav button.owl-next {
        top: calc(100% - 70px);
        right: inherit;
        left: calc(50% + 25px);
        transform: translateY(0);
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        top: calc(100% - 70px);
        right: inherit;
        left: calc(50% - 25px);
        transform: translateY(0);
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        z-index: 999;
        font-size: 30px;
    }
    .achivement-container {
        padding: 30px 50px 0;
    }

    .footer-block-heading {
        margin: 30px 0;
    } /*  Pages */
    .page-banner {
        padding: 50px 0;
    }
    .page-bannerheading h1 {
        font-size: 42px;
    }
    .single-our-team-member {
        flex-direction: column;
    }
    .single-our-team-member .single-our-team-member-profile {
        width: 100%;
    }
    .related-practice-areas h3,
    .related-team-members h3 {
        font-weight: 700;
        margin-top: 30px;
        font-size: 24px;
    }
    .publication-news-card-date {
        gap: 10px;
    }
    .page-content .publication-news-card-date span,
    .page-content .publication-news-card-date span a {
        font-size: 14px;
    }
    .page-content .free-consultation-form-map,
    .free-consultation-advices-block:first-child {
        margin-top: 30px;
    }
}
