/* Root Css */
:root {
    --dark-bg: #0f172a;
    --light-bg: #fff;
    --black-bg: #000;
    --heading-font: "rosart_regularregular";
    --body-font: "unica_regular";
}

@font-face {
    font-family: 'rosart_regularregular';
    src: url('../fonts/rosart-regular-webfont.woff2') format('woff2'),
        url('../fonts/rosart-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "pitchsans_regular";
    src: url('../fonts/PitchSansApp-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "unica_regular";
    src: url('../fonts/Unica77LLWeb-Regularc.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/************ Global Css ************/
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

* {
    outline: none !important;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

p {
    font-weight: 200;
    font-size: 18px;
}

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

body {
    font-family: var(--body-font);
    background: #fff;
    color: #111;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #000;
}

.common-btn {
    background: var(--dark-bg);
    border-width: 2px;
    font-weight: 700;
    border-radius: 55px;
    padding: 0.75rem 2.5rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--dark-bg);
    color: var(--light-bg);
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.common-btn:hover {
    color: var(--dark-bg);
    background: transparent;
    transform: translateY(-10px);
}

.btn-outline {
    border-width: 2px;
    font-weight: 700;
    border-radius: 55px;
    padding: 0.75rem 2.5rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--light-bg);
    color: var(--light-bg);
    transition: all 0.3s ease-in-out;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-10px);
}

.heading {
    font-size: 52px;
    line-height: 1.3;
    font-weight: 600;
    display: inline-block;
}

/* Navbar */
header.site-header {
    background: #fff;
    box-shadow: 0 5px 18px rgb(0 0 0 / 0.1);
    border-bottom: 2px solid var(--dark-bg);
    padding-bottom: 15px;
    padding-top: 15px;
    position: sticky;
    top: 0;
    display: block;
    z-index: 1030;
}

header .site-branding {
    width: 160px;
}

.main-menu .menu-item>a {
    color: #000;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    position: relative;
}

.main-menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--dark-bg);
    transition: 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-menu .menu-item a:hover,
.main-menu .menu-item.current-menu-item a {
    color: var(--dark-bg);
}

.main-menu .menu-item:hover a::after,
.main-menu .menu-item.current-menu-item a::after {
    width: 50%;
}

/* Main Footer */
.footer-logo {
    width: 60%;
}

footer .main-footer {
    padding-top: 80px;
    background-color: var(--black-bg);
}

.footer-logo img {
    filter: brightness(0.5) invert(1);
    width: 70%;
}

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

/* Copy Right Footer */
.footer-copyright {
    background: #222;
    padding: 15px 0;
    margin-top: 50px;
}

.footer-copyright p {
    color: #969696;
    font-size: 14px;
    margin: 2px 0 0;
}

/*==================== 
	Widgets 
====================== */
.widget.widget-last {
    margin-bottom: 0px;
}

.widget.subscribe p {
    margin-bottom: 18px;
    color: var(--light-bg);
}

.widget li a {
    color: var(--light-bg);
}

.widget li a:hover {
    color: #aaa;
    text-decoration: none;
}

footer .widget-title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: var(--light-bg);
}

.widget-title span {
    background: var(--light-bg) none repeat scroll 0 0;
    display: block;
    height: 1px;
    margin-top: 16px;
    position: relative;
    width: 20%;
}

.widget-title span::after {
    background: var(--light-bg);
    content: "";
    height: inherit;
    position: absolute;
    top: 6px;
    width: 50%;
}

.widget-title.text-center span,
.widget-title.text-center span::after {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

footer .social-links i {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--dark-bg);
    padding: 9px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
}

footer .social-links a {
    margin: 0 5px;
    min-width: 34px;
    display: inline-flex;
    transition: all 0.3s ease-in-out;
}

footer .social-links a:hover {
    transform: translateY(-10px);
}

.footer_inner_info {
    margin-bottom: 15px;
}

.footer_inner_info span:first-child {
    margin-right: 10px;
    display: inline-block;
}

.footer_inner_info span:last-child {
    font-size: 18px;
}

.footer_inner_info a:hover {
    color: #aaa;
}

.footer-menu li {
    padding: 5px 0px;
}

.footer-menu li>a {
    font-size: 18px;
}

/* Hero Banner */
.hero-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content h1 {
    font-weight: 400;
    color: var(--light-bg);
    letter-spacing: 0.1em;
    font-size: 52px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); */
}

.hero-content p {
    font-weight: 300;
    color: var(--light-bg);
    font-size: 20px;
    margin-bottom: 30px;
    /* text-shadow: 0 0 8px rgba(0, 0, 0, 0.6); */
}

.hero-section .btn-outline {
    display: inline-block;
}

/* About Us */
.about-us-section {
    padding: 80px 0px;
}

.about-us-section .row {
    align-items: center;
}

.about-us-img {
    position: relative;
}

.about-us-img img {
    border-radius: 100px 0px;
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.about-us-img::before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: -13px;
    right: -13px;
    border-radius: inherit;
    background-color: #deeefe;
    position: absolute;
    z-index: -1;
    border-radius: 100px 0px;
    /* opacity: 0.1; */
}

.about-us-content {
    padding-right: 70px;
}

.about-us-content p {
    /* font-size: 20px; */
    line-height: 1.4;
    margin-bottom: 30px;
}

/* cta-section-v1 */
.cta-section-v1 {
    margin-bottom: 70px;
}

.cta-section-v1 .row {
    justify-content: center;
}

.cta-v1-content {
    box-shadow: 0 5px 18px rgb(0 0 0 / 0.1);
    padding: 80px 100px;
    text-align: center;
    background: #ddedfd;
}

.cta-v1-content h2 {
    text-transform: capitalize;
    margin-bottom: 20px;
}

.cta-v1-content p {
    margin-bottom: 0px;
    /* font-size: 20px; */
    line-height: 1.4;
}

/* Business Sldier */
.business-sldier {
    padding: 70px 0px;
    background-color: #f7f7f7;
}

.business-sldier .item {
    box-shadow: 0 5px 18px rgb(0 0 0 / 0.1);
    padding: 10px;
    border-radius: 10px;
    margin: 20px 0px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    background-color: #fff;
    min-height: 140px;
    display: flex;
    align-items: center;
}

.business-sldier .item img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.business-sldier-v2 .item {
    background-color: #fff;
}

.business-sldier p {
    font-size: 18px;
}

/* People Cards */

.our-team-section {
    position: relative;
    padding: 70px 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.speaker-block-three {
    position: relative;
    margin-bottom: 50px;
}

.speaker-block-three .inner-box {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    padding-bottom: 10px;
    max-width: 95%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.speaker-block-three .inner-box:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.speaker-block-three .image-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 50px 0;
}

.speaker-block-three .image-box:before {
    position: absolute;
    left: -10px;
    right: -10px;
    top: -4px;
    height: 100%;
    background-image: url(../images/shape-v1.png);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    transform: scale(-1);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    content: "";
}

.speaker-block-three .image-box .image {
    position: relative;
    display: inline-block;
    height: 180px;
    width: 180px;
    overflow: hidden;
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    z-index: 9;
    margin-bottom: 0;
    transition: all 600ms ease;
}

.speaker-block-three .inner-box:hover .image-box .image {
    border-radius: 0;
}

.speaker-block-three .image-box .image img {
    display: block;
    width: 100%;
    transition: all 300ms ease;
}

.speaker-block-three .inner-box:hover .image img {
    transform: scale(1.1);
}

.speaker-block-three .info-box {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    padding-right: 10px;
    background-color: var(--black-bg);
}

.speaker-block-three .info-box:before {
    position: absolute;
    left: 0;
    right: -30px;
    background-color: var(--black-bg);
    content: "";
    top: 0;
    height: 102%;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    transform: skew(-30deg);
    border-radius: 0 14px 14px 0;
}

.speaker-block-three .info-box .name {
    position: relative;
    font-size: 26px;
    line-height: 1.2em;
    color: var(--light-bg);
    font-weight: 500;
}

.speaker-block-three .info-box .name a {
    color: var(--light-bg);
    transition: all 300ms ease;
}

.speaker-block-three .info-box .name a:hover {
    color: var(--light-bg);
}

.speaker-block-three .info-box .designation {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 20px;
    color: var(--light-bg);
    font-weight: 400;
}

.speaker-block-three .social-box {
    position: absolute;
    top: 75px;
    transition: all 600ms ease;
}

.speaker-block-three .social-box .social-links-cards {
    list-style: none;
    padding-left: 0px;
    margin-left: 0px;
}

.social-box .social-links-cards li {
    margin-bottom: 8px;
}

.speaker-block-two .social-links-cards li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.social-links-cards li a i {
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 2px solid var(--black-bg);
    font-size: 16px;
    line-height: 30px;
    background-color: var(--light-bg);
    text-align: center;
    transition: all 300ms ease;
}

.speaker-block-three .social-links-cards li a:hover i {
    color: var(--light-bg);
    background: var(--black-bg);
}

.our-team-content {
    padding: 15px;
}

.our-team-content p {
    margin-bottom: 0px;
    font-size: 18px;
}

/* Contact Us page */
.inner-hero-banner {
    padding: 120px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner-heading {
    color: var(--light-bg);
    font-size: 64px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
}

.inner-banner-content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    background-color: rgb(0 0 0 / 20%);
    width: max-content;
    min-width: 400px;
}

.breadcrumb-item.active {
    color: var(--dark-bg);
    font-weight: 600;
}

.info-card-section {
    padding-top: 70px;
}

.info-cards {
    background-color: var(--light-bg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-height: 100%;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background: var(--black-bg);
    color: var(--light-bg);
    border-radius: 5px;
}

.info-cards .fa-arrow-right {
    font-size: 24px;
}

.contact-form-section {
    padding-top: 70px;
    padding-bottom: 80px;
}

/* About Us */
.about_section_v1 {
    padding: 100px 0px;
    background-color: #EDF3F6;
}

.about_section_v1 h2 {
    margin-bottom: 25px;
}

.about_section_content_v1 {
    padding-right: 70px;
}


.image_thumb img {
    width: 450px;
    height: 400px;
    object-fit: cover;
    background-clip: padding-box;
    border: 16px solid var(--light-bg);
    border-radius: 50%;
    margin: 0px auto;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.1);
}

.fluid-section-one {
    position: relative;
}

.fluid-section-one .outer-container {
    position: relative;
    min-height: 250px;
    background-color: #fff;
}

.fluid-section-one .image-column {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fluid-section-one .content-column {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.fluid-section-one .content-column .inner-column {
    width: 50%;
    position: relative;
    padding: 70px 50px;
}

/*  */
.about_cta_v1 {
    margin: 60px 0px;
}

.about_content_v1 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 80px;
    text-align: center;
    border-bottom: 6px solid var(--black-bg);
    border-top: 6px solid var(--black-bg);
}

.cta-v1 {
    background-color: #deeefe;
    border-radius: 55px 0px;
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgb(0 0 0 / 0.1);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cta-v1>* {
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-v1 h2,
.cta-v1 p {
    color: #fff;
}

.cta-v1 p {
    font-size: 20px;
}

.cta-v1::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
}

.card-content-section {
    padding: 70px 0px;
}

.card-content-section .card {
    border: 0px;
    box-shadow: 0 8px 25rem rgb(0 0 0 / 0.1);
}
.card-content-section .card img{
    height: 240px;
    object-fit: cover;
}

.card-content-section .card-body {
    padding: 30px;
}

.card-content-section .common-btn {
    width: max-content;
}

.form-floating .form-control {
    width: 100%;
    max-width: 100%;
    border: 1px solid #69727d;
    background-color: transparent;
    color: #1f2124;
    vertical-align: middle;
    flex-grow: 1;
    color: #666;
    background-color: #f8f8f8;
    border-style: solid;
    border-width: 0px;
    border-radius: 0px;
    padding: 12px 15px !important;
}

.form-floating .form-control:hover,
.form-floating .form-control:focus {
    box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
}

textarea.wpcf7-form-control {
    height: 110px;
}

input.wpcf7-form-control.wpcf7-submit {
    background: var(--black-bg);
    color: var(--light-bg);
    border-radius: 34px;
    padding: 15px 55px;
    font-size: 16px;
}

.company-info-section {
    padding: 80px 0px;
}

.company-info-card {
    box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
    padding: 1.25rem;
    height: 500px;
    width: 100%;
    position: relative;
}

.company-info-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 0%;
}

.company-info-content {
    padding-left: 40px;
}

.company-info-content img {
    margin-bottom: 20px;
}

.company-info-content p {
    /* font-size: 20px; */
}

.company-info-milstone {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--dark-bg);
}

.inner-milstone-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 15px;
}

.info-milstone-n:not(:last-child) {
    border-right: 2px solid var(--dark-bg);
    padding-right: 20px;
}

.inner-milstone-grid strong {
    font-size: 20px;
    color: var(--dark-bg);
}

.inner-milstone-grid span {
    font-size: 20px;
}


.company-info-address .container {
    box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
    padding: 1.25rem;
    background-color: #ffff;
}

.company-map-info iframe {
    width: 100%;
}

.company-map-contact {
    border-left: 2px solid var(--dark-bg);
    padding-left: 30px;
    height: 100%;
}

.company-map-contact ul {
    list-style: none;
    padding-left: 0px;
    margin: 0px;
    margin-top: 10px;
}

.company-map-contact li {
    padding-bottom: 10px;
    font-size: 20px;
}

.company-map-contact .fas {
    margin-right: 10px;
}

.company-map-contact p {
    /* font-size: 20px; */
}

.social-icon {
    margin-top: 40px;
}

.social-icon ul {
    list-style: none;
    padding-left: 0px;
    margin: 0px;
    display: flex;
    gap: 20px;
    padding: 5px;
    list-style: none;
}

.social-icon ul li>a {
    display: inline-block;
}

.social-icon ul li>a i {
    font-size: 30px;
    color: var(--dark-bg);
}

section.company-info-address {
    background: #f7f7f7;
    padding: 70px 0px;
}

/* ======================== */
.business-list-section {
    padding: 70px 0px;
    background-color: #f7f7f7;
}

.business-table table {
    box-shadow: 0 8px 31px rgb(0 0 0 / 10%);
}

.business-table thead th {
    padding: 14px 20px;
    color: var(--light-bg);
    background-color: var(--dark-bg);
}

.business-table tbody td {
    padding: 10px 20px;
}

.business-table tbody tr {
    vertical-align: middle;
}

.business-table tbody tr:nth-child(even) td {
    background: #f7f7f7;
}

.business-table tbody td:first-child {
    font-size: 22px;
}

.business-table tbody td:not(:first-child) {
    font-size: 14px;
}

.business-table tbody td:nth-child(2) {
    width: 400px;
}

/* =================================================== */
.user-profiles-info {
    padding: 70px 0px;
    background: #f7f7f7;
}

.owner-main-card p {
    /* font-size: 22px; */
}

.user-profiles-info .container {
    box-shadow: 0 8px 31px rgb(0 0 0 / 10%);
    /* border: 2px solid #000; */
    padding: 2rem;
    background-color: var(--light-bg);
}

.owner-main-card .fas {
    opacity: 0.3;
    font-size: 24px;
    margin: 0 5px;
    color: var(--dark-bg);
}

.user-profiles-image {
    border-bottom: 2px solid #000;
    min-height: 100%;
    padding: 20px;
}

.owner-main-card {
    padding: 60px 40px;
    border-left: 2px solid #000;
    min-height: 100%;
    border-bottom: 2px solid #000;
}

.owner-bottom-card {
    min-height: 100%;
    padding: 60px 40px;
    border-left: 2px solid #000;
}

.owner-soical-cards {
    border: 2px solid #e3e3e3;
    padding: 16px;
    margin-bottom: 20px;
}

.owner-soical-cards h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* =========================================== */
.socails-links-section {
    padding: 70px 0px;
}

/* ============= Responsive Css ================ */
@media (max-width:991px) {
    header .site-branding {
        width: 120px;
    }

    header.site-header {
        padding-bottom: 5px;
        padding-top: 5px;
    }

    button.navbar-toggler {
        padding: 0px;
        border: 0;
        box-shadow: none !important;
    }

    button.navbar-toggler .fas {
        font-size: 28px;
    }

    .menu-header-menu-container {
        position: fixed;
        width: 100%;
        background: #ffff;
        right: -100%;
        transition: all 0.3s ease-in-out;
        padding-bottom: 50px;
    }

    .main-menu .menu-item>a {
        width: 100%;
    }

    .navbar-collapse.show .menu-header-menu-container {
        right: 0px;
    }

    header .menu-item {
        width: 100%;
        padding: 10px 0px;
    }

    .business-sldier p>br {
        display: none;
    }
}

@media (max-width:767px) {
    .heading {
        font-size: 34px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .about-us-section {
        padding: 40px 0px;
    }

    .about-us-content {
        padding-right: 0px;
        margin-bottom: 30px;
    }

    .cta-v1 p {
        font-size: 18px;
    }

    .about-us-content p {
        font-size: 18px;
    }

    .about-us-img img {
        border-radius: 100px 0px;
        height: auto;
    }

    .cta-v1-content {
        padding: 40px 10px;
    }

    .cta-v1-content p {
        font-size: 18px;
        text-align: justify;
    }

    .business-sldier {
        padding: 40px 0px;
    }

    .our-team-section {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    ul#menu-header-menu {
        margin-left: 0;
        margin-top: 30px;
    }

    .inner-banner-content {
        min-width: 300px;
        padding: 25px;
    }

    .banner-heading {
        font-size: 38px;
    }

    .inner-hero-banner {
        padding: 60px 0px;
        background-position: center center;
    }

    .about_content_v1 {
        padding: 20px;
    }

    .about_content_v1 p {
        text-align: justify;
    }

    .about_section_content_v1 {
        padding-right: 0px;
        padding-bottom: 40px;
    }

    .image_thumb img {
        width: 100%;
        height: 340px;
        object-fit: contain;
        background: rgb(255 255 255);
    }

    .fluid-section-one .content-column .inner-column {
        width: 100%;
        padding: 10px;
    }

    .fluid-section-one .image-column {
        width: 100%;
        position: relative;
        /* height: 300px; */
    }

    .about_section_v1 {
        padding: 40px 0px;
    }

    .company-info-content {
        padding-left: 0px;
        padding-top: 30px;
    }

    .company-map-contact {
        border-top: 2px solid var(--dark-bg);
        padding-top: 30px;
        margin-top: 30px;
        border-left: 0px;
        padding-left: 0px;
    }

    .business-table {
        overflow: auto;
    }

    .business-list-section {
        padding: 40px 0px;
    }

    .user-profiles-info .container {
        padding: 15px;
    }

    .owner-main-card {
        border: 2px solid #000;
    }

    .user-profiles-image {
        border-bottom: 0px;
    }

    .owner-bottom-card {
        min-height: 100%;
        padding: 30px 20px;
        border-left: 2px solid #000;
    }

    .owner-bottom-card {
        border: 2px solid #000;
    }

    .company-map-contact p,
    .company-map-contact li {
        font-size: 16px;
    }

    .owner-soical-cards {
        margin-bottom: 30px;
    }
}