@charset "UTF-8";

:root {
    --primary-color: #ed1b24;
    --secondary-color: #01133c;
    --dark-color: #1f1b20;
    --bg-color: #f3f3f3;
    --white-color: #ffffff;
    --black-color: #000000;
    --text-gray-color: #606060;
    --white: white;
    --gray: #999;
    --darkgreen: #2a9d8f;
    --popular: #ffdd40;
    --starter: #f73859;
    --essential: #00aeef;
    --professional: #ff7f45;
    --main-heading: "EB Garamond", serif;
    --body-font: "Montserrat", sans-serif;
    --transition: all 0.3s ease 0s;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body,
html {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    font-style: normal;
    color: var(--black-color);
    font-family: var(--body-font);
}
h1,h2,h3 {
    margin: 0;
    font-weight: 600;
    font-family: var(--main-heading);
    text-transform: capitalize;
}
h4,h5,h6 {
    margin: 0;
    font-weight: 600;
    font-family: var(--main-heading);
    text-transform: capitalize;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--black-color);
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}
a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    text-decoration: none;
    outline: 0
}
a:hover {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto
}
ul {
    margin: 0;
    padding: 0
}
li {
    list-style: none;
    transition: var(--transition);
}
.bg-color {
    background: var(--bg-color);
}
.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}
.form-group {
    margin-block: 5px;
}
.form-control {
    border-radius: 10px;
    padding: 5px 15px 5px 15px;
    height: 40px;
    border: 1px solid #c7c6c6;
    color: #444444;
    font-size: 14px;
    width: 100%;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #e40613;
    outline: 0;
    box-shadow: 0 0 0 .0rem rgba(13, 110, 253, .25);
}
.container-fluid {
    padding-right: 80px;
    padding-left: 80px;
}
.section-padding {
    padding: 60px 0 60px 0;
}
.inner-top-pad {
    padding-top: 120px;
}
.pad-top {
    padding-top: 60px;
}
.pad-bottom {
    padding-bottom: 60px;
}
.pad-top-half {
    padding-top: 30px;
}
.pad-bottom-half {
    padding-bottom: 30px;
}
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    flex-direction: column;
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.section-heading {
    margin-bottom: 25px;
}
b, strong {
    font-weight: 600;
}
.main-head {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    font-family: var(--main-heading);
    color: var(--secondary-color);
}
.sub-head {
    background: var(--primary-color);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgb(237 27 36 / 19%) 50%, rgba(255, 255, 255, 0.00) 95.35%);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: #ed1b24;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 10px 50px 7px 50px;
    border-radius: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.sub-head.white-sub-head {
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgb(255 255 255) 50%, rgba(255, 255, 255, 0.00) 95.35%);
}
.section-heading-center .main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.main-btn {
    font-size: 14px;
    min-width: auto;
    font-weight: 600;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    border-radius: 6px;
    border: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-transform: uppercase;
}
.main-btn i {
    padding-right: 8px;
}
.right-menu .main-btn i {
    top: -2px;
    position: relative;
}
.btn-1 {
    background: var(--primary-color);
    color: var(--white-color);
}
.btn-1:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}
.btn-2 {
    background: var(--secondary-color);
    color: var(--white-color);
}
.btn-2:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.btn-white {
    background: var(--white-color);
    color: var(--primary-color);
}
.btn-white:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.primary-bg {
    background: var(--primary-color);
}

/*--------------------------------------------
           header section start
--------------------------------------------*/
.inline-menu .container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.menu-section {
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}
.logo img {
    width: auto;
    height: 40px;
}
.main-header {
    background: #fff;
}
.inline-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0
}
.logo-text {
    width: 40%;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary-color);
}
.logo-text span {
    font-size: 16px;
    font-weight: 500;
    color: #17629c;
    text-transform: capitalize;
    font-style: italic;
    display: block;
}
.all-search input {
    height: 45px;
    padding-right: 45px;
}
.all-search button   {
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}
.right-header {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
}
.all-search {
    width: 60%;
}
.header-my-inquiry {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-my-inquiry a {
    width: 45px;
    height: 45px;
    display: flex;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: relative;
}
.header-my-inquiry span {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 3px #00000024;
}
.header-my-inquiry p {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-left: 15px;
    line-height: 20px;
}

/*--------------------------------------------
           header section end
--------------------------------------------*/

.primary-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.primary-ads {
    display: block;
    position: relative;
    overflow: hidden;
}
.primary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f9fc;
    padding: 10px;
}
.primary-text h4 {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 5px;
}
.primary-text .location--link {
    font-size: 14px;
    line-height: 16px;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.primary-text .location--link:hover {
    color: var(--primary-color);
}
.primary-text {
    width: 70%;
}
.view-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #00000045;
    width: 35px;
    height: 35px;
    color: #fff;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-1.inquiry-btn {
    background: #13bf54;
    color: var(--white-color);
}
.main-btn.inquiry-btn i {
    padding-right: 6px;
    font-size: 16px;
}
.main-btn.inquiry-btn {
    font-size: 14px;
    padding: 0 15px;
}
.btn-1.inquiry-btn:hover {
    background: #0aab47;
}
.gallery-img-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .primary-text h4 {
        font-size: 18px;
        line-height: 20px;
    }
    .gallery-img-img {
        height: 200px;
    }
    .primary-text p {
        font-size: 10px;
        line-height: 12px;
    }
    .main-btn.inquiry-btn {
        font-size: 10px;
        line-height: 30px;
        height: 30px;
        padding: 0 12px;
    }
    .view-icon {
        right: 5px;
        bottom: 5px;
        width: 25px;
        height: 25px;
        font-size: 22px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .primary-text h4 {
        font-size: 14px;
        line-height: 16px;
    }
    .gallery-img-img {
        height: 200px;
    }
    .primary-text p {
        font-size: 8px;
        line-height: 10px;
    }
    .main-btn.inquiry-btn {
        font-size: 8px;
        line-height: 10px;
        height: 25px;
        padding: 0 10px;
    }
    .main-btn.inquiry-btn i {
        font-size: 10px;
    }
    .view-icon {
        right: 5px;
        bottom: 5px;
        width: 25px;
        height: 25px;
        font-size: 22px;
    }

}



.secondary-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: repeat(6, minmax(0px, 1fr));
}
.secondary-ads {
    display: block;
    position: relative;
    overflow: hidden;
}
.secondary-item .btn-1.inquiry-btn {
    background: #13bf54;
    color: var(--white-color);
}
.secondary-item .main-btn.inquiry-btn i {
    padding-right: 4px;
    font-size: 14px;
}
.secondary-item .main-btn.inquiry-btn {
    font-size: 14px;
    padding: 0 15px;
    width: 100%;
    border-radius: 0;
}
.secondary-item .btn-1.inquiry-btn:hover {
    background: #0aab47;
}
.secondary-item .gallery-img-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .secondary-item .main-btn.inquiry-btn {
        font-size: 10px;
        line-height: 30px;
        height: 30px;
        padding: 0 12px;
    }
    .secondary-item .secondary-ads .gallery-img-img {
        height: 250px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .secondary-item .main-btn.inquiry-btn {
        font-size: 8px;
        line-height: 10px;
        height: 25px;
        padding: 0 10px;
    }
    .secondary-item .secondary-ads .gallery-img-img {
        height: 250px;
    }
}
.account-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 5px #9b9b9b40;
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.account-menu a {
    display: block;
    margin-bottom: 10px;
}
.account-menu a:hover {
    color: var(--primary-color);
}
.account-menu a:last-child {
    margin-bottom: 0;
}
.account-btn:hover .account-menu {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------------
        footer section start
--------------------------------------------*/

#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
#scroll__top:hover {
    color: var(--primary-color);
    background: var(--white-color)
}
#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
#scroll__top svg {
    width: 20px;
    line-height: 1;
}
footer {
    background: #001a3a;
    padding: 20px 15px;
    text-align: center;
}
.item-link a {
    font-size: 14px;
    color: #fff;
    margin-right: 5px;
    padding-right: 10px;
    border-right: 1px solid #ffffff;
}
footer .header-social-list-icon:hover {
    color: #e40613;
    background: #fff;
}
.item-link a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0 solid #ffffff;
}
.copy-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}
.copy-right p, .copy-right a {
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
}
footer .header-social-inline {
    justify-content: center;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
footer .header-social-list-icon {
    width: 28px;
    height: 28px;
    background: #e40613;
    color: #ffffff;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 13px;
    display: inline-block;
}
/*--------------------------------------------
        footer section end
--------------------------------------------*/

/*------ user sidebar start ------*/
.user-sidebar {
    background: #fff;
    border-radius: 14px 14px 0 0;
}
.user-sidebar ul li a {
    padding: 10px 15px;
    display: flex;
    border-bottom: 1px solid #ededed;
    align-items: center;
    column-gap: 10px;
}
.user-sidebar ul li a:hover {
    color: var(--primary-color);
}
.user-sidebar ul li:last-child a {
    border-bottom: 0 solid #efefef;
}
.user-sidebar-heading h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}
.user-sidebar-heading img {
    width: 94px;
    height: 94px;
    object-fit: cover;
    border: 5px solid #e3e3e3;
    border-radius: 50%;
}
.user-sidebar-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    padding: 20px 15px;
    border-radius: 14px 14px 0 0;
    position: relative;
}
.user-sidebar-heading .badge-free {
    position: absolute;
    left: 15px;
    top: 15px;
}
/*------ user sidebar end ------*/

/*------ user body start ------*/
.inner-body-bg {
    background: #f5f9fc;
}
.common-section {
    background: #ffffff;
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 15px;
}
.dashboard-top-section h2{
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}
/*------ user body end ------*/

/*------- pricing start -------*/

/* SWITCH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.switch-wrapper {
    position: relative;
    display: inline-flex;
    padding: 4px;
    border: 1px solid #a3a3a3;
    margin-top: 0px;
    margin-bottom: 25px;
    border-radius: 30px;
    background: var(--white);
}

.switch-wrapper [type="radio"] {
    position: absolute;
    left: -9999px;
}

.switch-wrapper [type="radio"]:checked#monthly ~ label[for="monthly"],
.switch-wrapper [type="radio"]:checked#yearly ~ label[for="yearly"] {
    color: var(--white);
}

.switch-wrapper [type="radio"]:checked#monthly ~ label[for="monthly"]:hover,
.switch-wrapper [type="radio"]:checked#yearly ~ label[for="yearly"]:hover {
    background: transparent;
}

.switch-wrapper
[type="radio"]:checked#monthly
+ label[for="yearly"]
~ .highlighter {
    transform: none;
}

.switch-wrapper
[type="radio"]:checked#yearly
+ label[for="monthly"]
~ .highlighter {
    transform: translateX(100%);
}

.switch-wrapper label {
    font-size: 16px;
    z-index: 1;
    min-width: 100px;
    line-height: 32px;
    cursor: pointer;
    padding: 5px;
    border-radius: 30px;
    text-align: center;
    transition: color 0.25s ease-in-out;
}

.switch-wrapper label:hover {
    background: var(--lightgray);
}

.switch-wrapper .highlighter {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 30px;
    background: var(--primary-color);
    transition: transform 0.25s ease-in-out;
}

/* TABLE STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pricing-table-section .table-wrapper {
    background: var(--white);
    overflow-x: auto;
}

.pricing-table-section table {
    width: 100%;
    background: #212529;
}

.pricing-table-section table tr {
    display: flex;
    border-bottom: 1px solid #343434;
}

.pricing-table-section table th,
.pricing-table-section table td {
    width: 25%;
    min-width: 150px;
    padding: 20px;
}

.pricing-table-section table th:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    padding: 20px;
    color: var(--white);
}

.pricing-table-section table th:nth-child(1) i {
    color: var(--white);
    font-size: 24px;
}
.pricing-table-section table th .heading {
    font-size: 34px;
    font-family: var(--main-heading);
    font-weight: 600;
}

.pricing-table-section table th .info {
    position: relative;
    margin-top: 15px;
}

.pricing-table-section table th .popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--popular);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-table-section table th .amount {
    font-size: 22px;
}

.pricing-table-section table th .amount span {
    display: block;
}

.pricing-table-section table th .billing-msg,
.pricing-table-section table th .amount span {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 2px;
}

.pricing-table-section table th button {
    border-radius: 20px;
    padding: 6px 20px 8px 20px;
    margin-top: 10px;
    transition: all 0.2s;
    background: #fff;
    color: #000000;
    border: 1px solid #000;
    font-weight: 600;
    text-transform: uppercase;
}
.pricing-table-section table th button:hover {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.pricing-table-section table td {
    padding: 20px;
    color: #fff;
}

.pricing-table-section table td:not(:first-child) {
    border-left: 1px solid var(--lightgray);
}

.pricing-table-section table td:first-child {
    font-size: 14px;
    text-align: left;
    color: #fff;
}

.pricing-table-section table svg {
    width: 18px;
    height: 18px;
}

.pricing-table-section table i {
    color: #ffffff;
    font-size: 16px;
}
.pricing-table-section table .not-included {
    color: var(--gray);
}
.pricing-table-section table .hide {
    display: none;
}


/*------- pricing end -------*/


/*------- responsive table start -------*/
.subscription-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
/* Zebra striping */
.subscription-table tr {
    background: #ffffff;
}
.subscription-table th {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
}
.subscription-table td, th {
    padding: 10px;
    border: 1px solid #e1e1e1;
    text-align: left;
    font-size: 16px;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px)  {
    .subscription-table table {
        width: 100%;
    }
    /* Force table to not be like tables anymore */
    .subscription-table table, .subscription-table thead, .subscription-table tbody, .subscription-table th, .subscription-table td, .subscription-table tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    .subscription-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .subscription-table tr { border: 1px solid #ccc; }
    .subscription-table td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    .subscription-table td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        /* Label the data */
        content: attr(data-column);
        color: #000;
        font-weight: bold;
    }
}

/*------- responsive table end -------*/

.user-plan h4 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}
.user-plan {
    padding: 20px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.user-plan img {
    height: 30px;
}
.user-plan:before {
    content: "";
    background-image: url(../images/plan-bg.png);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: contain;
    opacity: 0.1;
}
.gold-plan {
    background-image: radial-gradient(circle, #FFE878, #BF9B30);
}
.user-ads-section table {
    width: 100%;
}
.user-ads-section tr th {
    padding: 10px;
    border: 1px solid #e1e1e1;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    background: var(--secondary-color);
    color: #fff;
}
.user-ads-section td {
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
    text-align: left;
    font-size: 12px;
    background: #ffffff;
    color: #000000;
    height: 40px;
}
.user-business-section .form-control {
    margin-bottom: 10px;
}
.bg-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
}
.onoffswitch {
    position: relative;
    width: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
    border-color: #7bb13c;
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #7bb13c;
}
.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 10px;
    padding: 0;
    line-height: 10px;
    border: 0 solid #ffffff;
    border-radius: 30px;
    background-color: #9E9E9E;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0;
    background-color: #517b27;
    box-shadow: 3px 6px 18px 0px rgba(0, 0, 0, 0.2);
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
    border-color: #7bb13c;
}
.onoffswitch-label:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: -4px;
    background: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    border-radius: 50%;
    box-shadow: 0 6px 12px 0px #757575;
}
.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.action {
    display: flex;
    align-items: center;
    gap: 5px;
}
.action .btn {
    color: #ffffff;
}
.action .btn:hover {
    color: #ffffff;
}
.bg-success, .badge-success {
    background-color: #7bb13c !important;
}
.bg-danger, .badge-danger {
    background-color: #e84646 !important;
}
label {
    font-weight: 600;
}
.bronze-bg {
    background: url(../images/bronze-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.silver-bg {
    background: url(../images/silver-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.gold-bg {
    background: url(../images/gold-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.registration-bg::before {
    content: "";
    background: url(../images/registration-img.jpg) no-repeat center;
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    z-index: 1;
}
.registration-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 700px;
    position: relative;
}
.registration {
    position: relative;
    z-index: 11;
    background: #ffffffeb;
    padding: 30px;
    border-radius: 10px;
}
.pricing-table-section .fa-circle-xmark {
    color: #ffe307;
}
.pricing-table-section .fa-circle-check {
    color: #00ff89;
}
/*----------------- hero section start ------------------*/
.hero-section {
    width: 100%;
    height: 500px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
}
.hero-section:before {
    content: '';
    width: 100%;
    height: 500px;
    position: absolute;
    background: #000000;
    opacity: 0.8;
}
.hero-section .banner-content{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 50%;
    height: 100%;
}
.hero-section .banner-content h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.hero-section .banner-content p {
    font-size: 16px;
    color: #fff;
}
.banner-btn {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.banner-btn h3 {
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}
/*----------------- hero section end ------------------*/


/*--------------------------------------------
         working process start
--------------------------------------------*/

.working-process-one__single {
    position: relative;
    display: block;
    padding: 0px 30px 0px;
}
.working-process-one__single .icon-box {
    position: relative;
    display: block;
    max-width: 75px;
    margin: 0 auto;
}
.working-process-one__single .icon-box i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 30px;
}
.working-process-one__single .icon-box .overlay-list {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -5px;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}
.working-process-one__single .icon-box .overlay-list span {
    position: relative;
    display: inline-block;
    color: var(--white-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}
.working-process-one__single .content-box {
    position: relative;
    display: block;
    padding-top: 15px;
}
.working-process-one__single .content-box .title-box {
    position: relative;
    display: block;
}
.working-process-one__single .content-box .title-box h5 {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.working-process-one__single .content-box .title-box h3 a {
    color: var(--secondary-color);
    transition: var(--transition);
    transition-delay: 0.1s;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}
.working-process-one__single .content-box .text-box {
    position: relative;
    display: block;
    padding-top: 15px;
}
.working-process-one__single .content-box .text-box p {
    color: var(--black-color);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
.working-process-one__shape3 {
    position: absolute;
    top: 20px;
    left: -120px;
    opacity: 1;
}
.working-process-one__shape4 {
    position: absolute;
    top: 5px;
    left: -120px;
    opacity: 1;
}
.working-process-one__shape5 {
    position: absolute;
    top: 20px;
    left: -120px;
    opacity: 1;
}

/*--------------------------------------------
         working process end
--------------------------------------------*/

/*--------------------------------------------
         why choose start
--------------------------------------------*/
.why-choose-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.why-choose-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
    background: #ffffff1a;
    border-radius: 10px;
}
.why-choose-item img {
    height: 70px;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    width: 70px;
    object-fit: cover;
}
.why-choose-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0 5px 0;
    color: #fff;
    text-transform: none;
}
.why-choose-item p {
    color: #fff;
}
.why-choose-section:before {
    content: "";
    background: url(../images/solutions-bg-dots.png);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
/*--------------------------------------------
         why choose end
--------------------------------------------*/

/*--------------------------------------------
         category start
--------------------------------------------*/
.category-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.category-item {
    display: flex;
    align-items: center;
    border-radius: 35px 35px;
    gap: 10px;
    background: #f5f5f5;
    box-shadow: 0px 3px 0px 0px #0000001f;
}
.category-item:hover {
    box-shadow: 0px 3px 0px 0px #ed1b24;
    background: #fff4f5;
}
.category-item:hover h4 {
    color: var(--primary-color);
}
.category-item img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}
.category-item h4 {
    font-size: 20px;
    color: var(--secondary-color);
}

/*--------------------------------------------
         category end
--------------------------------------------*/

.choose-map {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 500;
}
.choose-map img {
    height: 26px
}
.account-btn {
    border-left: 1px solid #c9c9c9;
    padding-left: 10px;
    margin-left: 0px;
}
.multi-img-text-section {
    display: grid;
    width: 100%;
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.multi-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    object-position: center;
}
.multi-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background: #fff;
    border-radius: 0 20px 20px 0;
}
.multi-content .main-btn {
    width: max-content;
    margin-top: 15px;
}
.benefits-list li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 5px;
}
.benefits-list li span {
    font-weight: 600;
}
.benefits-list .main-head {
    font-size: 26px;
    line-height: 26px;
    margin-top: 10px;
}
.inquiry-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.inquiry-section {
    background: var(--secondary-color);
}
.wp-btn {
    background: #26d367;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    min-width: auto;
    font-weight: 600;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    text-transform: uppercase;
    border-radius: 6px;
}
.wp-btn i {
    font-size: 20px;
}
.wp-btn:hover {
    color: #fff;
    background: #15ab4e;
}
textarea.form-control {
    min-height: 80px;
}
.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}
.form-control {
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    height: 40px;
    border: 1px solid #c7c6c6;
    color: #444444;
    font-size: 14px;
    width: 100%;
}
.testimonial-bg .container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 150px;
    height: 100%;
    pointer-events: none;
    background-image: linear-gradient(to right, #ffffff, transparent);
}
.testimonial-bg .container:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 150px;
    height: 100%;
    pointer-events: none;
    background-image: linear-gradient(to left, #ffffff, transparent);
}
.testimonial-bg.bg-light .container:before {
    content: "";
    display: none;
}
.testimonial-bg.bg-light .container:after {
    content: "";
    display: none;
}
.testimonial-bg.bg-light .testimonial-item {
    margin: 0;
}
.testimonial-grid-section {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.testimonial-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    position: relative;
    direction: ltr;
    box-shadow: 0 0 4px 0px #dbdbdb;
    margin: 10px;
}

.testimonial-star img {
    height: 12px;
}
.testimonial-google img {
    height: 20px;
    margin-top: 8px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.testimonial-item p {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.testimonial-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.center-month {
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb-area {
    width: 100%;
    height: 100px;
    position: relative;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 65px;
}
.breadcrumb-area .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.breadcrumb-area h1, .breadcrumb-area h2, .breadcrumb-area h3, .breadcrumb-area h4 {
    color: var(--black-color);
    position: relative;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 26px;
}
.breadcrumb-list ul {
    display: flex;
    width: fit-content;
}
.breadcrumb-list a, .breadcrumb-list li {
    color: var(--black-color);
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 10px;
}
.breadcrumb-list li:last-child {
    margin-right: 0
}
.breadcrumb-list li:last-child:after,.extra-link a:last-child:after {
    display: none;
    opacity: 0
}
.breadcrumb-list li:after {
    content: "\f178";
    font-family: "Font Awesome 6 Pro";
    color: var(--black-color);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.about-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    padding: 0;
    align-items: center;
    width: 100%;
    gap: 0;
}
.about-short-text {
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: #fff;
}
.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/*testimonial start*/

.testimonial-bg .slider{
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(to right,transparent,#000 10% 90%,transparent);
}
.testimonial-bg .slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.testimonial-bg .slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    margin: 0 10px 0 10px;
    transition: filter 0.5s;
    animation-delay: calc( (10s / var(--quantity)) * (var(--position) - 1) )!important;
}
.testimonial-bg .slider .list .item img{
    width: 100%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.testimonial-bg .slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.testimonial-bg .slider .item:hover{
    filter: grayscale(0);
}
.testimonial-bg .slider[reverse="true"] .item{
    animation: reversePlay 10s linear infinite;
}
@keyframes reversePlay{
    from{
        left: calc(var(--width) * -1);
    }to{
        left: 100%;
    }
}
/*testimonial end*/


/* The slides */
.testimonial-bg .slick-slide {
  margin: 0 10px; /* Adjust 10px to half of your desired total space */
}

/* The parent container of the slides */
.testimonial-bg .slick-list {
  margin: 0 -10px; /* Use the negative value of the slide margin */
}

/* Optional: Hide potential horizontal overflow if needed */
.testimonial-bg .slick-slider {
  overflow: hidden; 
}
.inquiry-section .section-heading .main-head {
    color: #fff;
}
.inquiry-section .section-heading p {
    width: 70%;
    color: #fff;
}
.section-heading p {
    width: 50%;
}
.search-pad-top {
    padding-top: 120px;
}