/* =======================
   HelpDeskPro - Global Styles
   ======================= */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --primary-color: #d3d3d3;
    --secondary-color: #04989d;
    --font-family: "Fira Sans", sans-serif !important;
    --secondary-color-rgb: color-mix(in srgb, var(--secondary-color), transparent 50%);
    --primary-color-rgb: color-mix(in srgb, var(--primary-color), transparent 50%);
    --secondary-color-rgb-2: color-mix(in srgb, var(--secondary-color), transparent 80%);
    --primary-color-rgb-2: color-mix(in srgb, var(--primary-color), transparent 80%);
}

body {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    font-size: 14px;
}

select:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

input:focus {
    outline: none;
}

p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0px;
    padding: 0px;
    font-family: var(--font-family);
}

ul,
ol,
li {
    text-decoration: none !important;
    list-style: none !important;
}

button {
    font-family: var(--font-family) !important;
}

a {
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    color: #000;
    font-family: var(--font-family) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-primary-rgb {
    background-color: var(--primary-color-rgb) !important;
}

.bg-secondary-rgb {
    background-color: var(--secondary-color-rgb) !important;
}

.bg-primary-rgb-2 {
    background-color: var(--primary-color-rgb-2) !important;
}

.bg-secondary-rgb-2 {
    background-color: var(--secondary-color-rgb-2) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* =======================
   Buttons
   ======================= */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    opacity: 0.9;
    color: #fff;
}

.btn-secondary {
    --bs-btn-bg: var(--secondary-color) !important;
    --bs-btn-border-color: var(--secondary-color) !important;
    --bs-btn-hover-bg: var(--secondary-color) !important;
    --bs-btn-hover-border-color: var(--secondary-color) !important;
    --bs-btn-active-bg: var(--secondary-color) !important;
    --bs-btn-active-border-color: var(--secondary-color) !important;
    --bs-btn-disabled-bg: var(--secondary-color) !important;
    --bs-btn-disabled-border-color: var(--secondary-color) !important;
}

.btn-primary {
    --bs-btn-bg: var(--primary-color) !important;
    --bs-btn-border-color: var(--primary-color) !important;
    --bs-btn-hover-bg: var(--primary-color) !important;
    --bs-btn-hover-border-color: var(--primary-color) !important;
    --bs-btn-active-bg: var(--primary-color) !important;
    --bs-btn-active-border-color: var(--primary-color) !important;
    --bs-btn-disabled-bg: var(--primary-color) !important;
    --bs-btn-disabled-border-color: var(--primary-color) !important
}

.btn-outline-secondary {
    --bs-btn-color: var(--secondary-color) !important;
    --bs-btn-border-color: var(--secondary-color) !important;
    --bs-btn-hover-bg: var(--secondary-color) !important;
    --bs-btn-hover-border-color: var(--secondary-color) !important;
    --bs-btn-active-bg: var(--secondary-color) !important;
    --bs-btn-active-border-color: var(--secondary-color) !important;
    --bs-btn-disabled-color: var(--secondary-color) !important;
    --bs-btn-disabled-border-color: var(--secondary-color) !important;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-color) !important;
    --bs-btn-border-color: var(--primary-color) !important;
    --bs-btn-hover-bg: var(--primary-color) !important;
    --bs-btn-hover-border-color: var(--primary-color) !important;
    --bs-btn-active-bg: var(--primary-color) !important;
    --bs-btn-active-border-color: var(--primary-color) !important;
    --bs-btn-disabled-color: var(--primary-color) !important;
    --bs-btn-disabled-border-color: var(--primary-color) !important;
}

/* =======================
   Alerts
   ======================= */
.alert-success {
    background-color: #e6f4ea;
    border-color: #c3e6cb;
    color: #155724;
}

/* =================== Add css ====================== */
.text-muted {
    --bs-text-opacity: 1;
    color: #848c92 !important;
}

.line-2 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-3 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.fs-7 {
    font-size: 14px !important;
}

.fs-8 {
    font-size: 12px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

/* =============== navbar ================  */

.logo_hight {
    height: 40px;
}

.navbar-nav .nav-item a {
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
    width: fit-content;
    transition: all 0.3s ease-out 0s;
    padding: 6px 16px !important;
    z-index: 1;
    border: 1px solid transparent;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
    color: var(--secondary-color);
}

.header_button {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_button {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
}

.h-100vh {
    height: 100vh;
}

.card {
    border: 1px solid var(--primary-color);
    border-radius: var(--bs-border-radius-xl);
}

/* =============== hero-section-1 ================  */
.home_title {
    font-weight: 700;
    font-size: 50px;
    letter-spacing: .7px;
}

.home_subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 50px;
}

.common_title {
    font-size: 40px;
    font-weight: 600;
}

.common_subtitle {
    font-size: 15px;
    font-weight: 400;
}

.banner {
    padding-top: 60px;
}

/* ===================== Core Features section ==================== */
.serviceBox .card:hover {
    background-color: var(--secondary-color-rgb);
    transition: all 0.5s ease-in-out;
}

.serviceBox .card:hover .title,
.serviceBox .card:hover .description {
    color: #FFF;
    transition: all 0.5s ease-in-out;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-img {
    width: 60px;
    height: 60px;
}

.serviceBox .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin: 0 0 15px;
}

.serviceBox .description {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

/* ====================== HelpDeskPro section ================== */
.icon-box {
    width: 90px;
    height: 90px;
    background-color: var(--secondary-color-rgb);
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bg-gradient-color {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.gallery_imges {
    width: 100%;
    height: 100% !important;
    object-position: center;
    object-fit: cover;
}

.gallery_imges img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

/* ============================ Knowledgebase Articles ========================== */

.count_number {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #FFF;
}

.custom_padding {
    padding: 10px 10px;
}

.know_description:hover {
    color: var(--secondary-color) !important;
    transition: all .4s ease-in-out;
}

/* ====================== testimonial section ================== */
.testimonial .pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    border: 5px solid #e0e0e0;
    position: relative;
}

.testimonial .pic:after {
    content: "\f10d";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    background: var(--secondary-color);
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 65px;
    left: 0;
}

.testimonial .pic img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial .description {
    font-size: 15px;
    line-height: 22px;
}

.testimonial .testimonial-title {
    font-size: 18px;
    color: var(--secondary-color);
    text-transform: capitalize;
}

.testimonial .post {
    font-size: 14px;
}

#testimonial-slider .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem !important;
}

#testimonial-slider .owl-nav .owl-prev,
#testimonial-slider .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0px;
    font-size: 20px;
    border-radius: 50%;
    color: #FFF;
    background-color: var(--secondary-color);
}

/* ===================== plan card ==================== */
.heading {
    /* padding: 4px 15px; */
    font-size: 25px;
    font-weight: 500;
}

.price-value {
    font-size: 40px;
    font-weight: 600;
    color: var(--secondary-color);
}

.pricingTable_button {
    padding: 10px 10px !important;
    font-size: 17px;
}

.product-hot-label {
    padding: 6px 12px;
    font-size: 15px;
    color: #FFF;
    font-weight: 600;
    transition: all 0.3s ease-out;
    background-color: var(--primary-color);
}

.pricingTable_card {
    position: relative;
    transition: all .1s ease-out;
    background-color: #e6e5e5;
}

.pricingTable_card:hover {
    box-shadow: var(--bs-box-shadow) !important;
    background-color: var(--secondary-color-rgb-2);
    /* transform: translateY(-15px) scale(1.005) translateZ(0); */
}

.pricingTable_card.active .product-hot-label {
    background-color: var(--secondary-color);
}

.pricingTable_card.active {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0rem 1rem 0rem var(--secondary-color) !important;
    background-color: var(--secondary-color-rgb-2) !important;
    transform: scale(1.1) !important;
}

.pricingTable_card.active .btn-outline-primary {
    background-color: var(--primary-color) !important;
    color: #FFF !important;
}

.radio-button {
    font-size: 0;
    display: inline-block;
    position: relative;
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    padding: 3px;
}

.radio-button input[type=radio] {
    margin: auto;
    visibility: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.radio-button label {
    color: #222;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    width: 100px;
    padding: 5px;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.radio-button label:before {
    content: "";
    background: var(--secondary-color);
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: scaleX(0);
    transform-origin: left center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--bs-border-radius-xxl) !important;
    z-index: -1;
    transition: all 0.3s ease 0s;
}

.radio-button label:nth-child(2):before {
    transform-origin: right center;
}

.radio-button input[type=radio]:checked+label {
    color: #fff;
}

.radio-button input[type=radio]:checked+label:before {
    opacity: 1;
    transform: scaleX(1);
}

/* ================= FAQ'S ================= */
.faqAccordion .panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 15px;
    position: relative;
}

.faqAccordion .panel:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border: 1px dashed var(--secondary-color);
    position: absolute;
    top: 25px;
    left: 18px;
}

.faqAccordion.rtl .panel:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border: 1px dashed var(--secondary-color);
    position: absolute;
    top: 25px;
    left: auto;
    right: 18px;
}

.faqAccordion .panel:last-child:before {
    display: none;
}

.faqAccordion .panel-heading {
    padding: 0;
    border: none;
    border-radius: 0;
    position: relative;
}

.faqAccordion .panel-title a {
    display: block;
    padding: 10px 30px 10px 60px;
    margin: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    border-radius: 0;
    position: relative;
}

.faqAccordion.rtl .panel-title a {
    display: block;
    padding: 10px 60px 10px 30px;
    margin: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    border-radius: 0;
    position: relative;
}

.faqAccordion .panel-title a:before,
.faqAccordion .panel-title a.collapsed:before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    width: 40px;
    height: 40px;
    border-radius: var(--bs-border-radius-xxl);
    line-height: 40px;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    /* border-radius: 3px; */
    font-size: 17px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
}

.faqAccordion.rtl .panel-title a:before,
.faqAccordion.rtl .panel-title a.collapsed:before {
    top: 0;
    left: auto;
    right: 0;
}

.faqAccordion .panel-title a.collapsed:before {
    content: "\f105";
    background: var(--primary-color);
    border: 1px solid var(--secondary-color);
    color: #FFF;
}

.faqAccordion .panel-body {
    padding: 10px 30px 10px 30px;
    margin-left: 40px;
    background: transparent;
    border-top: none;
    font-size: 15px;
    line-height: 28px;
}

.faqAccordion.rtl .panel-body {
    margin-right: 40px;
    margin-left: 0px;
}

.faq-img {
    width: 100%;
    height: 100%;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ================================================== */

.provider-add {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: white;
    font-family: sans-serif;
}

.provider-add .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.54);
    z-index: 1;
}

.provider-add .content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* ===================== footer design ==================== */
footer .logo {
    font-size: 70px;
    line-height: 70px;
}

.footer_icon {
    width: 35px;
    height: 35px;
    font-size: 17px;
    color: #FFF;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_title {
    font-size: 20px;
    font-weight: 600;
}

.footer_title:after {
    content: "";
    background: var(--secondary-color);
    width: 50px;
    height: 4px;
    margin: 12px 0 0;
    display: block;
    clear: both;
}

.recent_posts img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    object-position: center;
}

footer .links li {
    font-size: 16px;
    margin: 0 0 10px;
}

footer .posts li {
    display: block;
}

footer .posts li a img {
    width: 70px;
    float: left;
    margin: 0 8px 0 0;
}

footer .posts li .post-detail {
    padding: 0 0 0 75px;
}

footer .posts li .post-detail span {
    font-size: 13px;
    font-weight: 400;
    display: block;
}

footer .footer-bottom {
    padding: 18px 0;
    border-top: 1px solid var(--border-color);
}

footer .links li a,
footer .posts li a,
footer .contacts a,
footer .footer-bottom a {
    color: var(--color-white);
}

footer .icon li a:hover,
footer .links li a:hover,
footer .posts li a:hover,
footer .contacts a:hover,
footer .footer-bottom a:hover {
    color: var(--color-hover);
}

.our_services li a:hover {
    color: var(--secondary-color) !important;
}

/* /========== features_page ========= / */

.features_img {
    width: 100%;
    height: 100%;
}

.features_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ================= contact_us page ==================== */

.contact_img {
    width: 100%;
    height: 100%;
}

.contact_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.custom-padding {
    padding: 12px 16px;
}

.contact-banner-img {
    height: 280px;
    width: 100%;
}

.contact-banner-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-icon {
    width: 35px;
    height: 35px;
    font-size: 17px;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* ======================== */

#features,
#knowledgebase,
#pricing,
#faqs {
    padding: 90px 0px 85px 0px;
}

.extra-padding {
    padding: 12px 36px 12px 14px !important;
}

.extra-padding-buttton {
    padding: 12px 0px !important;
}

.form-control:focus {
    background-color: var(--bs-body-bg);
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: none !important;
}