:root {
    --body-bg: #000000;
    --body-text-color: #acacac;
    --body-white-color: #ffffff;
    --body-font-family: 'Poppins' ,sans-serif;
    --heading-font-family: 'Montserrat';
    --header-bg-color: #353737;
    --heading-text-color: #ffffff;
    --body-default-color: #9cbb33;
    --section-bg-color: #222222;
    --button-bg-color: #9cbb33;
    --button-bg-text-color: #ffffff;
    --form-bg: #000000;
    --border-color: #222222;
    --card-bg-color: linear-gradient(180deg, #161616, #080808);
}
body {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--body-font-family);
    color: var(--body-text-color);
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
a, a:hover {
    text-decoration: none;
    color: var(--body-default-color);
    display: inline-block;
}
*:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family);
    color: var(--heading-text-color);
    font-weight: 700;
    margin: 0 0 15px;
    clear: both;
    line-height: 1.1;
    text-transform: capitalize;
}
h1, .h1 {
    font-size: 48px
}
h2, .h2 {
    font-size: 40px
}
h3, .h3 {
    font-size: 34px;
}
h4, .h4 {
    font-size: 28px
}
h5, .h5 {
    font-size: 24px
}
h6, .h6 {
    font-size: 22px
}
p {
    margin: 0 0 15px
}
p:last-child {
    margin-bottom: 0;
}
img {
    max-width: 100%;
}
::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}
:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
::placeholder {
    color: inherit;
    opacity: 1;
}
input:focus, textarea:focus, select:focus, button:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.form_group {
    position: relative;
    margin-top: 15px;
} 
.form_group label {
    font-size: 0.875rem;
    color: var(--heading-text-color);
    display: block;
    position: relative;
    font-weight: 700;
    margin-bottom: 5px;
}
.form_group input, 
.form_group textarea, 
.form_group select {
    width: 100%;
    border: none !important;
    background-color: var(--form-bg);
    padding: 15px 20px;
    outline: none !important;
    font-size: 14px;
    color: var(--body-text-color);
    display: block;
    font-weight: 400;
    min-height: auto !important;
    border-radius: 0 !important;
} 
.form_group_chechbox, 
.form_group_input, 
.form_group_btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 15px;
}
.form_group_chechbox input {
    width: 30px;
    height: 30px;
}
.form_group_button {
    margin-top: 30px;
}
.form_group_btns input {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    color: var(--body-text-color);
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    text-decoration: none;
}
.button_main {
    font-size: 13px;
    line-height: 20px;
    padding: 10px 30px;
    letter-spacing: 1px;
    background-color: var(--button-bg-color);
    color: var(--button-bg-text-color) !important;
    font-weight: 700;
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all .2s ease-in;
    font-family: var(--body-font-family);
    text-transform: uppercase;
}
section {
    padding: 70px 0;
    position: relative;
}
.main_wrapper {
    position: relative;
    z-index: 9;
}
.card_box {
    background: var(--card-bg-color);
    position: relative;
    z-index: 99;
    padding: 30px;
    width: 100%;
    border-radius: 15px;
    margin: 15px 0;
    transition: all .3s ease-out 0s;
}
.card_box:hover {
    box-shadow: 0 -3px 0 0 rgba(234, 76, 137, .004), 0 40px 40px 0 rgba(14, 17, 51, .1);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.section_bg {
    background: var(--section-bg-color);
}


.header_wrapp {
    background-color: var(--header-bg-color);
    position: relative;
    z-index: 9999;
}
.header_wrapp.sticky {
    position: sticky;
    top: 0;
}
.header_main {
    justify-content: space-between;
    padding: 0;
}
.header_menu .menu_list {
    display: flex;
    align-items: center;
    gap: 0 45px;
    text-transform: uppercase;
}
.header_menu .menu_list li {
    position: relative;
}
.header_menu .menu_list>li>a {
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: var(--heading-font-family);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}
.header_menu .menu_list li:hover a, 
.header_menu .menu_list li.active a {
    color: var(--body-default-color);
}
.header_menu .menu_list li .submenu li a {
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: var(--heading-font-family);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    display: inline-block;
}
.header_menu ul li a span {
    transition: transform 0.3s ease;
}
.header_menu ul li:hover>a span {
    transform: rotate(90deg);
}
.hero_banner {
    padding: 0;
}
.hero_slider_imgs {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero_slider_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%; */
}
.hero_slider_left .slider_left_imgs1 img, 
.hero_slider_left .slider_left_imgs2 img {
    width: auto !important;
}
.hero_slider_left {
    position: relative;
    padding: 50px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-left: 200px;
}
/* .slider_left_imgs1 {
    position: absolute;
    top: -30px;
    left: 200px;
}
.slider_left_imgs2 {
    position: absolute;
    top: 350px;
    right: 150px;
} */

.slider_left_imgs2 {
    position: relative;
    left: -160px;
    bottom: 80px;
}

.hero_slider_right {
    background-color: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 25px 0;
}
.feature_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 15px 50px;
    text-align: center;
    margin-bottom: 50px;
}
.feature_box span {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-color: var(--section-bg-color);
    border-radius: 100%;
    margin-bottom: 30px;
    text-align: center;
    line-height: 100px;
}
.section_imgs {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.section_imgs:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.main_heading {
    position: relative;
    text-align: center;
    z-index: 99;
    margin-bottom: 60px;
}
.numbers_box {
    margin-top: 5px;
    box-sizing: border-box;
    text-align: center;
    color: var(--body-white-color);
    padding: 30px;
    background: rgb(255 255 255 / 20%);
    position: relative;
    z-index: 99;
}
.numbers_box:before {
    content: '';
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-top: 2px solid var(--body-default-color);
    border-left: 2px solid var(--body-default-color);
    position: absolute;
    top: 0;
    left: 0;
}
.numbers_box:after {
    content: '';
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-bottom: 2px solid var(--body-default-color);
    border-right: 2px solid var(--body-default-color);
    position: absolute;
    bottom: 0;
    right: 0;
}
.numbers_box h5 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.numbers_box h5:after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: var(--body-default-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.numbers_box p {
    font-size: 20px;
}

.service_card {
    margin: 0px 15px 40px;
    text-align: center;
    position: relative;
    padding-bottom: 40px;
}
.service_card::before, 
.service_card::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.service_card::before {
    bottom: -6px;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background-color: var(--header-bg-color);
    border: 2px solid var(--body-text-color);
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    z-index: 9;
}
.service_card::after {
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--body-text-color);
}
.service_card:hover::after {
    background-color: var(--body-white-color);
}
.service_imgs {
    width: 150px;
    height: 150px;
    margin: 30px auto;
    overflow: hidden;
    border: 2px solid var(--body-white-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 100%;
}
.service_card:hover .service_imgs { 
    border: 2px solid var(--body-default-color);
    animation: 1500ms linear 0s normal none 1 running bounceIn;
    -moz-animation: 1500ms linear 0s normal none 1 running bounceIn;
    -ms-animation: 1500ms linear 0s normal none 1 running bounceIn;
    -o-animation: 1500ms linear 0s normal none 1 running bounceIn;
    -webkit-animation: 1500ms linear 0s normal none 1 running bounceIn;
}

.service_imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_imgs {
    position: relative;
}
.team_imgs:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}
.team_card:hover .team_imgs:after {
    background: rgba(0, 0, 0, .7) !important;
}
.team_imgs .socail_media {
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 0px;
    z-index: 999;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.team_card:hover .team_imgs .socail_media {
    opacity: 1;
}
.team_imgs .socail_media li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px 20px;
}
.team_imgs .socail_media li a {
    font-size: 20px;
    color: var(--body-white-color);
}
.team_content {
    padding: 25px 15px;
    text-align: center;
}
.team_content h6 a {
    color: var(--body-white-color);
}
.testimonial_content {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px 15px;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 50px;
}
.testimonial_content span {
    font-size: 70px;
    color: var(--body-default-color);
}
.testimonial_content p {
    margin-top: 30px;
}
.testimonial_content:before {
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--body-white-color);
    position: absolute;
    bottom: 0;
}
.testimonial_content::after {
    content: '';
    background-image: url(../imgs/testimonial_shape2.png);
    position: absolute;
    width: 22px;
    height: 23px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--body-bg);
    bottom: -20px;
    left: 50px;
}
.testimonial_imgs {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px 30px;
    align-items: center;
    justify-content: center;
}
.author_imgs {
    overflow: hidden;
    width: 70px;
    height: 70px;
    border-radius: 100%;
}
.author_content h6 {
    font-size: 18px;
    margin-bottom: 5px;
}
.discount_coupon {
    position: relative;
    z-index: 9;
    text-align: center;
    font-size: 58px;
    line-height: 1.4;
    color: var(--body-white-color);
    font-family: var(--heading-font-family);
    font-weight: 700;
}
.discount_coupon span {
    color: var(--body-default-color);
}
.blog_tags {
    margin: 15px 0;
}
.blog_tags ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px 15px;
    flex-wrap: wrap;
}
.blog_tags ul li, 
.blog_date ul li {
    font-size: 15px;
}
.blog_tags ul li span, 
.blog_date ul li span {
    padding-right: 5px;
    color: var(--body-default-color);
}
.blog_contant {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 20px;
}
.blog_date {
    background-color: var(--header-bg-color);
    padding: 10px;
    text-align: center;
}
.blog_title h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}
.blog_title h6 a {
    color: var(--body-white-color);
}

.footer_wrapp {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer_top {
    background-color: rgb(0 0 0 / 90%);
    /* padding-bottom: 150px; */
}
.footer_top .get_from .form_group {
    margin-bottom: 30px;
    margin-top: 0;
}
.footer_top .get_from .form_group input, 
.footer_top .get_from .form_group textarea, 
.footer_top .get_from .form_group select {
    background-color: var(--header-bg-color);
}
.form_group_button .button_main {
    width: 100%;
}
.get_from .form_group_button {
    margin-top: 10px;
}

.footer_main {
    padding: 70px 0 30px;
    background-color: var(--section-bg-color);
    position: relative;
}
.footer_main::after {
    content: '';
    background-image: url(../imgs/footer_shape_imgs.png);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer_info, 
.footer_menu, 
.subscribe_from {
    position: relative;
    z-index: 9;
}
.footer_heading {
    margin-bottom: 35px;
}
.footer_info ul {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.footer_info ul li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px 15px;
    align-items: center;
}
.footer_info ul li span, 
.social_footer li a {
    width: 40px;
    height: 40px;
    font-size: 17px;
    border: 2px solid var(--body-white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--body-white-color);
}
.footer_menu_list {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}
.footer_menu_list li a {
    color: var(--body-text-color);
}
.footer_menu {
    padding-left: 30px;
}
.form_group_input {
    width: 100%;
    border: none !important;
    background-color: var(--form-bg);
    padding: 10px 15px;
    outline: none !important;
    font-size: 14px;
    color: var(--body-text-color);
    font-weight: 400;
    min-height: auto !important;
    border-radius: 0 !important;
    justify-content: space-between;
}
.form_group_input .input {
    background-color: transparent;
    box-shadow: none;
    border: none;
    width: 100%;
    color: var(--body-white-color);
}
.form_group_input .input::placeholder, 
.form_group_input .input:-ms-input-placeholder, 
.form_group_input .input::-moz-placeholder  {
    color: var(--body-white-color);
}
.subscribe_from form {
    margin: 25px 0;
}
.footer_bottom_wrapp {
    margin-top: 70px;
    padding-top: 30px;
    position: relative;
    border-top: 2px solid var(--header-bg-color);
    z-index: 9;
}
.social_footer li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px 20px;
}
.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer_bottom_menu {
    display: flex;
    align-items: center;
    gap: 10px 30px;
}
.footer_bottom_menu li a {
    color: var(--body-text-color);
}
.banner_main ul {
    display: flex;
    align-items: center;
    gap: 15px 25px;
}
.banner_main ul li a {
    color: var(--body-white-color);
}
.main_heading_left {
    text-align: left;
}
.inner_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 15px;
    position: relative;
    margin: 30px 0;
}
.inner_list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
}
.inner_list li span {
    color: var(--body-default-color);
    font-size: 17px;
}
.about_contant_main .main_heading {
    margin-bottom: 30px;
}
.accordion_main .accordion-item {
    background-color: var(--header-bg-color);
    padding: 20px 15px;
    margin-bottom: 20px;
}
.accordion_main .accordion-item .accordion-header {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 30px;
    gap: 15px;
    justify-content: center;
}
.accordion_main .accordion-item .accordion-body {
    margin-top: 25px;
    border-top: 1px solid var(--section-bg-color);
    padding-top: 20px;
}
.accordion_main .accordion-item .accordion-header:after {
    content: '\f102';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: var(--body-default-color);
    text-align: right;
}
.accordion_main .accordion-item .accordion-header.collapsed:after {
    content: '\f103';
}

.team_modal_wrapp .modal-content {
    background-color: var(--body-bg);
    padding: 15px;
}
.team_modal_content {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 0 30px;
}
.team_modal_text .team_social {
    position: relative;
    top: 0;
    left: 0;
    padding: 15px 0 0;
}
.team_modal_text .team_social ul li {
    flex-direction: row;
}
.team_modal_text .team_social ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--body-white-color);
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
    color: var(--body-white-color);
}
.team_header {
    margin-bottom: 25px;
}
.team_header h4 {
    font-size: 24px;
    letter-spacing: 0.5px;
}
.team_header h6 {
    font-size: 18px;
    color: var(--body-text-color);
    font-weight: 400;
    margin: 0;
}
span.btnclose {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
}
span.btnclose span {
    font-size: 28px;
    color: var(--body-white-color);
}
.contact_section {
    padding: 0;
}


.error_wrapper {
    height: 100vh;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}
.error_main h1 {
    font-size: 60px;
    margin: 30px 0;
}

.blog_section .blog_card {
    margin-bottom: 60px;
}
.pagination_list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px 15px;
}
.pagination_list ul li {
    padding: 5px 15px;
    border: 2px solid var(--header-bg-color);
    font-size: 18px;
}
.pagination_list ul li a {
    color: var(--body-white-color);
}
.pagination_list ul .pagi_btns_hidden {
    display: none;
}
.pagination_list ul li.pagination_active, 
.pagination_list ul li:hover {
    background-color: var(--body-bg);
    border-color: var(--body-default-color);
}
.pagination_list ul li.pagination_active a, 
.pagination_list ul li:hover a {
    color: var(--body-default-color);
}
.blog_heading {
    border-bottom: 1px solid var(--header-bg-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.8px;
}
.blog_search, 
.sidebar_listing {
    margin-bottom: 50px;
}
.sidebar_listing .sidebar_list,  
.sidebar_listing .categories_listing {
    display: flex;
    flex-direction: column;
}
.sidebar_listing .sidebar_list>li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 15px;
    align-items: center;
    border-bottom: 1px solid var(--header-bg-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.sidebar_listing .sidebar_list>li:last-child {
    border: none;
    padding: 0;
    margin: 0;
}
.sidebar_contant h6 {
    margin-bottom: 10px;
}
.sidebar_contant h6 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
.sidebar_contant h6 a {
    color: var(--body-white-color);
}
.sidebar_contant .blog_tags {
    margin: 0;
}
.sidebar_imgs {
    width: 80px;
    height: 80px;
}
.sidebar_imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar_listing .categories_listing> li a {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 0 10px;
    align-items: center;
    border-bottom: 1px solid var(--header-bg-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: var(--body-text-color);
}
.sidebar_listing .categories_listing>li:last-child a {
    border: none;
    padding: 0;
    margin: 0;
}
.categories_listing li span {
    display: inline-block;
    color: var(--body-default-color);
}
.portfolio_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.portfolio_list li {
    width: 95px;
    height: 95px;
    overflow: hidden;
    position: relative;
}
.portfolio_list li a:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}
.portfolio_list li:hover a:after {
    background: rgba(0, 0, 0, .5) !important;
}
.portfolio_list li a {
    width: 100%;
    height: 100%;
}
.portfolio_list li a img {
    height: 100%;
    object-fit: cover;
}
.portfolio_list li a span {
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 0px;
    z-index: 999;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.portfolio_list li:hover a span {
    opacity: 1;
}
.tags_list li a {
    background-color: var(--header-bg-color);
    padding: 5px 10px;
    text-align: center;
    color: var(--body-white-color);
    font-size: 14px;
    margin: 5px;
    letter-spacing: 0.6px;
}
.blog_contant_details {
    margin-top: 30px;
}
.blog_contant_details h2 {
    font-size: 34px;
    margin-bottom: 25px;
}
.blog_content_bg {
    background-color: var(--header-bg-color);
    padding: 30px;
    font-size: 24px;
    line-height: 1.3;
    font-style: italic;
    margin: 35px 0;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px 15px
}
.blog_content_bg>span {
    font-size: 60px;
    position: relative;
    top: -20px;
}
.submenu {
    display: none;
    border-top: 1px solid var(--border-color);
    background-color: var(--header-bg-color);
    left: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    width: 200px;
}