/*
Theme Name: HireHop
Theme URI: https://dev.wordpress-developer.us/
Author: HireHop
Author URI: https://dev.wordpress-developer.us/
Description: A custom WordPress theme for hirehop.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hirehop
*/

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");


body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    color: var(--black-color);
}

:root {
    scroll-behavior: inherit;
    --blue-color: #53A9DC;
    --white-color: #fff;
    --black-color: #111111;
    --font-family: 'Outfit', sans-serif;
    --primary-gradient: linear-gradient(90deg, #1E4D92 0%, #53A9DC 100%);
    --navy-blue: #0E376B;
    --para-color: #464646;
}

.container {
    max-width: 1490px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.container_lrg {
    max-width: 1900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.cmn_gap {
    padding: 100px 0;
}

.bld_font {
    font-weight: 500;
    color: var(--para-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.big_para {
    font-size: 20px;
    text-transform: uppercase;
}

b,
strong {
    font-weight: 600;
}

p {
    margin: 0 0 22px 0;
    color: var(--para-color);
}

p:last-child {
    margin-bottom: 0;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
}



h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1,
.h1-title {
    font-size: 55px;
    line-height: 1.2;
    color: var(--white-color);
    text-transform: capitalize;
}

h2,
.h2-title {
    font-size: 42px;
    line-height: 1.2;
    text-transform: capitalize;
}

h3,
.h3-title {
    font-size: 24px;
    line-height: 1.2;
}

h4,
.h4-title {
    font-size: 20px;
    line-height: 1.2;

}

h5,
.h5-title {
    font-size: 18px;
    line-height: 1.2;

}


a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--black-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: var(--para-color);
    border: 1px solid rgba(255, 255, 255, 0.7);
    height: 58px;
    padding: 0 16px;
    outline: none !important;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 158px;
    outline: none !important;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(assets/images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 58px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;

    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cmn_btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 40px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    line-height: 1;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--white-color);
    font-weight: 500;
}

.cmn_btn.btn_gradient:hover,
.cmn_btn:hover {
    background: #011C3E;
    color: #fff;
}

/* .cmn_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.cmn_btn:hover::before {
    width: 100%;
} */

.cmn_btn.btn_outline {
    border-color: var(--navy-blue);
    color: var(--navy-blue);
}

.cmn_btn.btn_outline:hover {
    color: #fff !important;
}

.cmn_btn.btn_outline::before {
    background: var(--navy-blue);
    background: var(--primary-gradient);
}

.cmn_btn.btn_gradient {
    background: var(--primary-gradient);
    color: #fff !important;
    border: none;
}

.cmn_btn.btn_gradient:hover {
    box-shadow: 0 10px 30px rgba(45, 110, 165, 0.3);
}

/* .cmn_btn.btn_gradient::before {
    background: #011C3E;
} */


.btn_arw img {
    transition: 0.3s ease-in-out;
}

.cmn_btn:hover .btn_arw img {
    transform: rotate(45deg);
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}







/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(assets/images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: #bdd653;
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 68px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#scroll:hover {
    background: #88a725;
}

#scroll i {
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}




/* navbar*/
.main-head {
    padding: 22px 0;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.3s ease-in-out;
}

.main-head.fixed {
    position: sticky;
    padding: 12px 0;
}

.main-head.fixed .navbar-brand {
    max-width: 186px;
}

.main-head.fixed .nav_right .cmn_btn {
    padding: 15px 36px;
}

.main-head .nav_right .cmn_btn {
    transition: 0.3s ease-in-out;
}

.main-head.fixed .lang_dropdown .dropdown-toggle,
.main-head.fixed .lang_dropdown .gt_selector {
    padding: 11px 26px;
}

.main-head.fixed .lang_dropdown .gt_selector {
    padding-right: 38px;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 216px;
    display: inline-block;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 23px;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    line-height: 1.2;
    position: relative;
    font-weight: normal;
    text-transform: uppercase;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: var(--blue-color);
}

.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--blue-color);
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}


.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: #eab71e;
    color: #fff;
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/

.nav_right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav_right {
    margin-left: 37px;
}

.nav_right .cmn_btn {
    margin-left: 12px;
}

.lang_dropdown {
    position: relative;
    margin-left: 12px;
}

.lang_dropdown .dropdown-toggle,
.lang_dropdown .gt_selector {
    background: transparent;
    border: 1px solid var(--navy-blue);
    border-radius: 30px;
    padding: 14px 26px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--black-color);
    min-height: 48px;
    line-height: 1;
}

.lang_dropdown .gt_selector {
    display: block;
    width: auto;
    min-width: 86px;
    max-width: 150px;
    padding-right: 38px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.gtranslate_lang_dropdown .dropdown-item {
    color: var(--black-color);
    font-weight: 500;
}

.gtranslate_lang_dropdown .dropdown-item:hover,
.gtranslate_lang_dropdown .dropdown-item:focus,
.gtranslate_lang_dropdown .gt-current-lang {
    background: #edf8ff;
    color: var(--blue-color);
}

.lang_dropdown .dropdown-toggle::after {
    display: none;
}

.lang_dropdown i {
    font-size: 10px;
    margin-left: 8px;
}

.lang_dropdown .dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    left: -50px !important;
}

.login-signup-wrp a:first-child {
    margin-left: 0;
}


.banner-sec {
    position: relative;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 100px 0;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.banner-content h1 {
    color: var(--white-color);
    margin-bottom: 10px;
}

.banner-content .big_para {
    margin-bottom: 22px;
    color: var(--white-color);
}

.btn_banner {
    padding: 7px 12px 9px 40px;
    letter-spacing: 0.5px;
}

.btn_arw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    margin-left: 10px;
}

.btn_arw img {
    max-width: 12px;
    width: 100%;
}

/* Feature Section */
.feature_head,
.why_head,
.industries_head,
.partner_head,
.pricing_head,
.cmn_sec_head {
    margin-bottom: 50px;
}

.feature_sec.cmn_gap {
    padding-bottom: 0;
}

.cmn_head_row {
    align-items: center;
}

.cmn_head_rgt p {
    max-width: 332px;
    margin-left: auto;
}
.customer-meta-wrap{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.cards_row {
    margin: 0 -15px;
}

.ft_col {
    padding: 0 15px;
}

.feature_card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: 0.3s ease-in-out;
    border: 1px solid #D9D9D9;
}

.feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.feature_img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    margin-right: 28px;
}

.feature_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature_txt h3 {
    margin-bottom: 8px;
    word-break: break-word;
}

.learn_btn {
    font-weight: 500;
    color: var(--blue-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.learn_btn img {
    width: 100%;
    max-width: 9px;
    transition: transform 0.3s ease-in-out;
    margin-left: 8px;
}

.learn_btn:hover img {
    transform: rotate(45deg);
}

.line_sep {
    height: 1px;
    width: 100%;
    background-color: #ECECEC;
    margin-top: 100px;
    position: relative;
}

.line_sep::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #ECECEC;
}

.line_sep::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #ECECEC;
}



.why_sec .resp-tabs-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 0 0 45px 0;
    padding: 0;
    list-style: none;
    border-bottom: none !important;
}

.why_sec .resp-tab-item {
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    padding: 0 0 10px 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s ease;
    color: var(--black-color) !important;
    background: transparent !important;
    margin: 0 !important;
    float: none !important;
    list-style: none !important;
    font-family: 'Outfit', sans-serif;
}

.why_sec .resp-tab-active {
    border-bottom-color: var(--blue-color) !important;
    text-shadow: none !important;
}

.why_sec .resp-tabs-container {
    background: #EDF8FF;
    border-radius: 20px;
    padding: 80px 70px !important;
    border: none !important;
}

.resp-tab-content {
    display: none;
}

.resp-content-active,
.resp-accordion-active,
.resp-tab-content-active {
    display: block;
}

h2.resp-accordion {
    display: none;
}

.why_cnt_inner {
    display: flex;
    align-items: center;
    margin: 0 -20px;
}

.why_cnt_left {
    width: 45%;
    padding: 0 20px;
}

.why_cnt_left h3 {
    margin-bottom: 20px;
}

.why_para {
    margin-bottom: 40px;
}

.why_para p {
    font-size: 16px;
    line-height: 1.6;
    color: #464646;
    margin-bottom: 15px;
}

.why_para .bld_font {
    font-weight: 600;
    font-size: 20px;
    color: #464646;
}

.why_cnt_right {
    width: 55%;
    padding: 0 20px;
}

.why_cnt_left_inner {
    max-width: 511px;
}

.why_cnt_right_wrapper {
    display: flex;
    align-items: stretch;
    margin: 0 -10px;
}

.why_rgt_image_one,
.why_rgt_image_two {
    padding: 0 10px;
}

.why_rgt_image_one {
    /* flex: 0 0 calc(45% - 10px); */
    width: 45%;
}

.why_rgt_image_two {
    /* flex: 0 0 calc(55% - 10px); */
    width: 55%;
}

.why_cnt_right_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.why_sec .cmn_btn.btn_gradient {
    background: linear-gradient(to right, #2D6EA5 0%, #64A1D8 100%);
    border-radius: 50px;
    padding: 10px 10px 10px 30px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(45, 110, 165, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

/* .why_sec .cmn_btn.btn_gradient:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #64A1D8 0%, #2D6EA5 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.why_sec .cmn_btn.btn_gradient:hover:before {
    width: 100%;
} */

.why_sec .cmn_btn.btn_gradient .btn_arw {
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* .why_sec .cmn_btn.btn_gradient .btn_arw img {
    filter: invert(34%) sepia(43%) saturate(1004%) hue-rotate(174deg) brightness(91%) contrast(89%);
} */




/* Customers Section */
.customer_sec {
    overflow: hidden;
}



#customerTabs.resp-vtabs .resp-tabs-list {
    width: 25%;
    border-right: none;
    padding-right: 30px;
    margin-top: 50px !important;
}

#customerTabs.resp-vtabs .resp-tab-item {
    border: none !important;
    background: transparent !important;
    padding: 25px !important;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    transition: all 0.3s ease;
    margin-bottom: 10px !important;
    border-radius: 0 12px 12px 0;
    position: relative;
    /* border-left: 10px solid transparent !important; */
}

#customerTabs.resp-vtabs .resp-tab-active {
    background: #E0F3FF !important;
    color: var(--black-color) !important;
    /* border-left-color: var(--blue-color) !important; */
    position: relative;
}

#customerTabs.resp-vtabs .resp-tab-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 100%;
    background-color: var(--blue-color);
    border-radius: 30px;
}

#customerTabs.resp-vtabs .resp-tabs-container {
    width: 75%;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.customer_pane {
    padding: 0;
}

.meta_wrap {
    max-width: 247px;
    margin: 0 auto;
}

.customer_img {
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.customer_img img {
    width: 100%;
    height: auto;
    display: block;
}

.customer_meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: none;
    width: 70%;
}

.meta_item {
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.meta_item:first-child {
    padding-left: 0;
}

.meta_item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: var(--blue-color);
}

.meta_lbl {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
}

.meta_val {
    display: block;
    font-size: 16px;
    color: var(--black-color);
    font-weight: 500;
}

.customer_meta .meta_item:nth-child(2).meta_wrap {
    max-width: fit-content;
    margin: 0 auto;
}

.customer_meta .meta_item:last-child .meta_wrap {
    max-width: fit-content;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.customer_meta .meta_item:last-child {
    padding-right: 0;
}

.customer_meta .meta_item:first-child .meta_wrap {
    padding-left: 0;
    max-width: fit-content;
    margin-right: auto;
    margin-left: 0;
}

/* Trusted Section */
.trusted_sec {
    background-color: #EDF8FF;
    padding: 0 0 100px 0;
    overflow: hidden;
}

.trusted_head {
    margin-bottom: 50px;
}

.trusted_head h2 {
    letter-spacing: 1px;
}

#logoSlider {
    position: relative;
    padding: 0 10px;
}

#logoSlider:before,
#logoSlider:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    pointer-events: none;
    z-index: 10;
}

#logoSlider:before {
    left: 0;
    background: linear-gradient(to right, #F2F9FF 20%, rgba(242, 249, 255, 0) 100%);
}

#logoSlider:after {
    right: 0;
    background: linear-gradient(to left, #F2F9FF 20%, rgba(242, 249, 255, 0) 100%);
}

.splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.splide__slide img {
    max-height: 84px;
    width: auto;
    transition: all 0.3s ease;
}

.splide__slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* ----testimonial ----------- */
.hm_testimonial_sec {
    text-align: center;
    background-color: #EDF8FF;
    overflow: hidden;
    position: relative;
}

.hm_testimonial_sec .container {
    position: relative;
}

.test_cntnt {
    position: relative;
    z-index: 2;
}

.map_image {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    max-width: 1026px;
    max-height: 406px;
    z-index: 1;
    opacity: 0.2;
}

.heading_wrap {
    margin-bottom: 50px;
}

.quote-nav {
    max-width: 580px;
    margin: 0 auto;
}

.quote-nav .slick-slide {
    text-align: center;
}

.quote-nav .sl_next .quoter_img_wrap .quoter_img,
.quote-nav .sl_prev .quoter_img_wrap .quoter_img {
    transform: scale(.77);
    opacity: 1;
    transition: all .4s ease-in-out;
}

.quote-nav .slick-center .quoter_img_wrap .quoter_img {
    transform: scale(1);
    opacity: 1;
    filter: grayscale(0%);
    transition: all .4s ease-in-out;
}

.quote-nav .slick-center .quoter_img_wrap .quote_icon {
    opacity: 1;
}

.hm_testimonial_sec .quoter_img_wrap {
    position: relative;
    /* background: #fff; */
    padding: 10px;
    display: flex;
    align-items: center;
}

.hm_testimonial_sec .quoter_img_wrap .quoter_img {
    width: 131px;
    object-fit: cover;
    border-radius: 100%;
    margin: 0 auto;
    transform: scale(.55);
    transition: all .4s ease-in-out;
}

.hm_testimonial_sec .slick-track {
    display: flex;
    align-items: center;
}

.hm_testimonial_sec .quoter_img_wrap .quote_icon {
    background-color: var(--theme-color);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.hm_testimonial_sec .quote_text_wrap {
    max-width: 966px;
    margin: 30px auto 0px;
}

.hm_testimonial_sec .quote_text_wrap>p {
    margin-bottom: 0px;
    font-weight: 500;
}

.quoter_info {
    margin-bottom: 15px;
}

.quoter_info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.quoter_info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.hm_testimonial_sec .slick-arrow {
    width: 70px;
    height: 70px;
    top: -15%;
    background: transparent;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    border: 1px solid #121212;
    font-size: 0;
    z-index: 1;
}

.hm_testimonial_sec .slick-arrow:before {
    opacity: 1;
}

.hm_testimonial_sec .slick-arrow:hover:before {
    color: var(--theme-color);
}

.hm_testimonial_sec .slick-arrow:before {
    content: "";
    background: url(assets/images/test_right_arrow.svg) no-repeat;
    height: 20px;
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: 26px;
}

.hm_testimonial_sec .slick-prev:before {
    content: "";
    background: url(assets/images/test_left_arrow.svg) no-repeat;
    height: 20px;
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: 26px;
    transition: 0.3s ease-in-out;
}

.hm_testimonial_sec .slick-prev {
    position: absolute;
    left: 5%;
    top: 20px;
    transition: 0.3s ease-in-out;
}

.hm_testimonial_sec .slick-prev:hover {
    background: var(--primary-gradient);
    border-color: #dcdcdcfc;
}

.hm_testimonial_sec .slick-next:hover {
    background: var(--primary-gradient);
    border-color: #dcdcdcfc;
}

.hm_testimonial_sec .slick-next:hover:before {
    filter: brightness(0) invert(1);
}

.hm_testimonial_sec .slick-prev:hover:before {
    filter: brightness(0) invert(1);
}

.hm_testimonial_sec .slick-next {
    position: absolute;
    right: 5%;
    top: 20px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    border: 1px solid #121212;
}






.industry_card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    padding: 25px 19px;
    display: flex;
    flex-direction: column;
}

.industry_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry_img {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    padding-top: 65%;
}

.industry_cnt h3 a {
    font-size: 24px;
    color: var(--black-color);
    transition: 0.3s ease-in-out;
}

.industry_cnt h3 a:hover {
    color: var(--blue-color);
}

.industry_img img:not(.industry_badge img) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.industry_badge {
    position: absolute;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
    width: 113px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff2b;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 18px;
    transition: all 0.3s ease-in-out;
}

.indus_bud_innr {
    height: 80px;
    width: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry_card:hover .indus_bud_innr {
    background: var(--primary-gradient);
}

.industry_card:hover .indus_bud_innr img {
    filter: brightness(0) invert(1);
}

.indus_bud_innr img {
    max-width: 34px;
    width: 100%;
    height: auto;
}

.industry_cnt {
    padding: 76px 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.industry_cnt h3 {
    margin-bottom: 12px;
}

.industry_cnt p {
    margin-bottom: 20px;
}

.industry_cnt .learn_btn {
    margin-top: auto;
    justify-content: center;
}


/* Partner Section */
.partner_sec {
    background-color: #EDF8FF;
}

.partner_image_row {
    margin: -15px;
    align-items: center;
}

.partner_image_col {
    padding: 15px;
}



.partner_card {
    background: #fff;
    border-radius: 10px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.partner_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.partner_card img {
    max-width: 175px;
    max-height: 85px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner_card:hover img {
    transform: scale(1.05);
}



/* Pricing Section */
.pricing_sec {
    background: var(--white-color);
    padding: 100px 0 190px 0;
}



.pricing_card {
    background: #fff;
    border: 1px solid #EFEFEF;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wrap-pad {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* .pricing_card:hover .free-wrap {
    background-color: #fff;
} */

.pricing_card h3 {
    /* margin-bottom: 25px; */
    font-size: 30px;
}

.price_features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.price_features p {
    margin-bottom: 5px;
    font-size: 20px;
}

/* Footer Section */
.footer_sec {
    background: #011C3E;
    color: #fff;
    padding-top: 100px;
    position: relative;
}

.footer_top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.foot_top_wrapper {
    background: var(--primary-gradient);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.foot_top_row {
    align-items: center;
}

.cta_title {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--white-color);
    font-weight: 500;
}

.cta_cnt {
    max-width: 923px;
}

.cta_cnt p {
    color: var(--white-color);
    font-weight: 300;
}

.foot_top_btn {
    display: flex;
    justify-content: flex-end;
}

/* .btn_book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: -1; 
    background: var(--navy-blue);
    font-weight: 500;
}

.btn_book:hover::before {
    width: 100%;
} */


.btn_book {
    background: #fff;
    color: #2D6EA5;
    padding: 7px 10px 7px 29px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
}

.cmn_btn.btn_gradient:hover {
    background: linear-gradient(90deg, #011C3E 0%, #011C3E 100%);
}

.btn_book:hover {
    background: #011C3E;
    color: #fff;
}

.price_amount h4 .currency {
    font-size: 24px;
    font-weight: 300;
}

.btn_book:hover {
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.btn_book .btn_book_circle img {
    max-width: 10px;
    width: 100%;
    transition: 0.3s ease-in-out;
}

/* .btn_book:hover .btn_book_circle {
    background: var(--white);
} */

.btn_book:hover .btn_book_circle img {
    transform: rotate(45deg);
    transition: 0.3s ease-in-out;
}

.btn_book_circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin-left: 16px;
    flex-shrink: 0;
}

.footer_mid {
    padding: 100px 0 70px;
}

.foot_logo {
    display: inline-block;
    max-width: 199px;
    margin-bottom: 25px;
}

.foot_mid_one .foot_mid_cntnt {
    max-width: 392px;
}

.foot_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--white-color);
}

.footer_mid p {
    font-size: 16px;
    color: var(--white-color);
    font-weight: 300;
}

.foot_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foot_links li {
    margin-bottom: 13px;
}

.foot_links li a {
    color: var(--white-color);
    display: inline-block;
    font-weight: 300;
}

.foot_links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.foot_newsletter .form_group {
    position: relative;
    margin-bottom: 22px;
}

.foot_newsletter .form_group img {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 18px;
}

.foot_newsletter input {
    width: 100%;
    border: 1px solid #03306D;
    border-radius: 50px;
    padding: 15px 20px 15px 56px;
    color: #fff;
    outline: none;
    font-weight: 300;
}

.foot_newsletter input::placeholder {
    color: var(--white-color);
}

.foot_newsletter .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 14px;
}

.foot_newsletter .gform_wrapper.gravity-theme .ginput_container_email {
    position: relative;
}

.foot_newsletter .gform_wrapper.gravity-theme .ginput_container_email::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url("assets/images/message_icon.svg") center/contain no-repeat;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.foot_newsletter .gform_wrapper.gravity-theme input[type="email"],
.foot_newsletter .gform_wrapper.gravity-theme input[type="text"] {
    width: 100%;
    border: 1px solid #03306D;
    border-radius: 50px;
    padding: 15px 20px 15px 56px;
    color: #fff;
    outline: none;
    font-weight: 300;
    background: transparent;
    min-height: 52px;
}

.foot_newsletter .gform_wrapper.gravity-theme input::placeholder {
    color: var(--white-color);
    opacity: 1;
}

.foot_newsletter .gform_wrapper.gravity-theme .gform_footer {
    margin: 22px 0 0;
    padding: 0;
}

.foot_newsletter .gform_wrapper.gravity-theme .gform_button {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 0 40px !important;
    border-radius: 50px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 180px;
    height: 52px !important;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.foot_newsletter .gform_wrapper.gravity-theme .gform_button:hover {
    background: var(--navy-blue);
    color: #fff;
}

.foot_newsletter .gform_wrapper.gravity-theme .gfield_label,
.foot_newsletter .gform_wrapper.gravity-theme .gfield_description,
.foot_newsletter .gform_confirmation_message {
    color: var(--white-color);
}

.foot_newsletter .gform_wrapper.gravity-theme .gfield_label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.foot_newsletter .gform_validation_errors {
    display: none;
}

.foot_newsletter .validation_message {
    background: transparent !important;
    color: #fff !important;
    border: 0 !important;
    padding: 0 !important;
}

.btn_submit {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 0 40px !important;
    border-radius: 50px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 180px;
    height: 52px !important;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer_sec .btn_submit:hover {
    background: var(--navy-blue);
    color: #fff;
}

.foot_contact {
    list-style: none;
    padding: 0;
}

.foot_contact li {
    margin-bottom: 10px;
}

.foot_contact li a {
    color: var(--white-color);
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
}

.foot_social {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.foot_social li {
    margin-right: 8px;
}

.foot_social li:last-child {
    margin-right: 0;
}

.foot_social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.foot_social li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.foot_social img {
    width: 100%;
    max-width: 18px;
    max-height: 17px;
}


.foot_btm_wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.foot_btm_row {
    align-items: center;
}

.footer_btm p {
    color: var(--white-color);
    margin: 0;
    font-weight: 300;
}

.footer_btm a {
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.foot_btm_links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.foot_btm_lft a {
    color: var(--white-color);
}

.foot_btm_lft a:hover {
    color: var(--blue-color);
}

.foot_btm_rgt_cnt {
    display: flex;
    justify-content: flex-end;
}

.foot_btm_rgt_cnt a {
    color: var(--white-color);
    transition: 0.3s ease-in-out;
    font-weight: 300;
}

.foot_btm_rgt_cnt a:hover {
    color: var(--blue-color);
    padding-left: 5px;
}

.why_sec.cmn_gap {
    padding-bottom: 0;
}

.login-signup-wrp {
    display: flex;
}

.hm_testimonial_sec .line_sep {
    background-color: #BFE5FD;
}

.hm_testimonial_sec .line_sep::before {
    background-color: #BFE5FD;
}

.hm_testimonial_sec .line_sep::after {
    background-color: #BFE5FD;
}

#customerTabs.resp-vtabs .resp-tab-item:after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #EFEFEF;
    position: absolute;
    left: 0;
    bottom: 0;
}

#customerTabs.resp-vtabs .resp-tab-active:after {
    content: none;
}

.resp-tab-item:has(+ .resp-tab-item.resp-tab-active):after {
    opacity: 0;
}

.industries_sec .cmn_head_rgt p {
    max-width: 457px;
    margin-left: auto;
}

.price_features a {
    font-size: 20px;
    color: #007AB9;
    text-decoration: underline !important;
}

.price_amount {
    margin-bottom: 40px;
}

.price_amount h4 {
    font-size: 30px;
    color: var(--black-color);
}

.price_amount h4 span {
    font-size: 30px;
}

.price_foot {
    margin-top: auto;
}

.price_foot .cmn_btn {
    width: 100%;
    text-align: center;
}


.pricing_card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}





/* --- About Page Styles --- */
.inner_banner {
    padding: 130px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white-color);
}

.inner_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.inner_banner .container {
    position: relative;
    z-index: 1;
}

.inner_banner h1 {
    margin-bottom: 0;
    color: #fff;
}

.abt_intro_row {
    align-items: center;
}

.about_intro_lft {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.about_img_one,
.about_img_two {
    flex: 1;
    padding: 0 15px;
}



.about_img_one img,
.about_img_two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about_intro_rgt {
    padding-left: 44px;
}

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

.about_intro_rgt p {
    margin-bottom: 14px;
}

.blue_sec {
    background-color: #EDF8FF;
    height: 579px;
    width: 100%;
}

.future_vid_sec {
    position: relative;
}

.future_vid_sec.cmn_gap {
    padding: 80px 0 0;
}

.future_innr {
    position: relative;
    z-index: 1;
}

.future_vid_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #EDF8FF;
}

.future_vid_wrap {
    text-align: center;
    margin-top: 50px;
}

.future_hdr {
    max-width: 1169px;
    margin: 0 auto;
}

.vid_placeholder {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.video_ratio {
    padding-top: 62.10%;
}

.vid_placeholder img {
    max-width: 100%;
    height: auto;
}

.video_ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play_btn {
    width: 100px;
    height: 100px;
    background: url(assets/images/youtube_icon_fancy.svg) no-repeat center center;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-decoration: none !important;
    z-index: 2;
}

.play_wrap {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease-in-out;
}

.play_wrap::before,
.play_wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 50%;
    z-index: -1;
    animation: ripple 2s infinite;
}

.play_btn::after {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }
}

.play_wrap:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play_btn img {
    max-width: 40px;
}

.bill_row {
    margin: 0 -15px;
}

.bill_card {
    padding: 0 15px;
}

.bill_one {
    background: #fff;
    padding: 40px 24px;
    border-radius: 20px;
    border: 1px solid #EFEFEF;
    height: 100%;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.bill_one:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.bill_num {
    font-size: 60px;
    font-weight: 700;
    color: #53A9DC;
    line-height: 1;
    /* min-width: 40px; */
    flex-shrink: 0;
    margin-right: 17px;
}

.bill_row {
    --bs-gutter-y: 30px;
}

.bill_card p {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--black-color);
}


.global_team_sec {
    background-color: #EDF8FF;
}

.global_hd {
    max-width: 1169px;
    margin: 0 auto 32px auto;
}

.team_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.team_item {
    padding: 0 15px;
}

.team_image {
    position: relative;
    padding-top: 73%;
    overflow: hidden;
    border-radius: 20px;
}

.team_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team_item:hover .team_image img {
    transform: scale(1.1);
}

.join_sec.cmn_gap {
    padding: 100px 0 200px 0;
}

.join_row {
    align-items: center;
}

.join_lft {
    max-width: 588px;
    /* padding-right: 80px; */
}

.join_rgt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


/* ------how it works --------- */
.how_intro_wrapper .about_img_one {
    flex: 0 0 38%;
}

.how_intro_wrapper .about_img_two {
    flex: 0 0 62%;
}

.innovation_sec {
    background-color: #EDF8FF;
}

.innovation_sec #customerTabs.resp-vtabs .resp-tab-item:after {
    content: '';
    background-color: #BFE5FD;
}

.innovation_sec #customerTabs.resp-vtabs .resp-tab-item:last-child::after {
    content: none;
}

.innovation_sec .resp-tab-item:has(+ .resp-tab-item.resp-tab-active):before {
    opacity: 0;
}

.innovation_sec #customerTabs.resp-vtabs .resp-tab-active:after {
    content: none;
}


.making_head {
    max-width: 1169px;
    margin: 0 auto 34px auto;
}

.making_row {
    margin: 0 -15px;
}

.making_col {
    padding: 0 15px;
}

.making_card {
    background-color: transparent;
    border: 1px solid #EFEFEF;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    /* width: 100%; */
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.making_card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.making_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    height: 54px;
}

.making_icon img {
    max-width: 64px;
    max-height: 64px;
    width: 100%;
}

.making_card h3 {
    font-weight: 500;
    margin-bottom: 15px;
}

.making_card p {
    margin-bottom: 0;
}

.partner_sec_new.cmn_gap {
    padding: 100px 0 200px 0;
}

/*   service ------- */
.service_crd_inner .ind_crd_row {
    --bs-gutter-y: 30px;
}

.service_crd_sec.cmn_gap {
    padding: 100px 0 200px 0;
}

/* Blog Listing Section */
.blog_list_sec.cmn_gap {
    padding: 100px 0 200px 0;
}

.blog_sidebar {
    padding-right: 6px;
}

.sidebar_widget .bld_font {
    color: var(--black-color);
    margin-bottom: 28px;
}

.blog_search .search_input_wrap {
    position: relative;
    margin-bottom: 50px;
}

.blog_search .search_input_wrap img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    opacity: 0.5;
}

.blog_search .search_input_wrap input {
    height: 55px;
    border: 1px solid #EFEFEF;
    border-radius: 30px;
    padding: 0 20px 0 50px;
    background-color: transparent;
    color: #B6B6B6;
    width: 100%;
    outline: none !important;
}

.blog_cat_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog_cat_dropdown {
    display: none;
}

.blog_cat_dropdown select {
    width: 100%;
    height: 55px;
    border: 1px solid #EFEFEF;
    border-radius: 30px;
    padding: 0 48px 0 22px;
    background-color: #fff;
    color: var(--black-color);
    font-size: 17px;
    font-weight: 500;
    outline: none !important;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
    background-position: calc(100% - 24px) 50%, calc(100% - 18px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.blog_cat_list li {
    margin-bottom: 0;
}

.blog_cat_list li a {
    display: block;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    border-bottom: 1px solid #EFEFEF;
    transition: all 0.3s ease-in-out;
}

.blog_cat_list li:first-child a {
    padding-top: 0;
}

.blog_cat_list li a:hover {
    color: var(--blue-color);
    padding-left: 10px;
}

.blog_cat_list li.active a {
    color: var(--blue-color);
}

.blog_right_row {
    --bs-gutter-y: 30px;
}

.blog_right_col {
    transition: opacity 0.25s ease-in-out;
}

.blog_list_sec.is-loading .blog_right_col {
    opacity: 0.45;
    pointer-events: none;
}

.blog_img {
    margin-bottom: 30px;
}

.blog_card {
    background: var(--white-color);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #F6F6F6;
    transition: all 0.3s ease-in-out;
    padding: 25px;
    cursor: pointer;
}

.blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.blog_cnt {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog_cnt h3 {
    margin-bottom: 15px;
    font-weight: 500;
}

.blog_card:hover .blog_cnt h3 a {
    color: var(--blue-color);
}

.blog_cnt p {
    flex: 1;
    color: #363636;
}

.blog_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.author_info {
    display: flex;
    align-items: center;
}

.author_avatar {
    width: 49px;
    height: 49px;
    background: #F2F9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
    margin-right: 12px;
    color: var(--black-color);
    transition: 0.3s ease-in-out;
}

.blog_card:hover .author_avatar {
    background: var(--blue-color);
    color: var(--white-color);
}

.author_details span {
    display: block;
    line-height: 1.2;
}

.author_name {
    font-weight: 500;
    margin-bottom: 6px;
}

.blog_date {
    color: #B6B6B6;
}

.blog_arw img {
    max-width: 26px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.blog_card:hover .blog_arw img {
    transform: translateX(5px);
    filter: brightness(0) saturate(100%) invert(65%) sepia(23%) saturate(1104%) hue-rotate(161deg) brightness(92%) contrast(87%);
}

.blog_card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.pagination_image {
    margin-left: 215px;
    margin-top: 58px;
}

.blog_pagination {
    margin-top: 58px;
}

.blog_pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog_pagination a,
.blog_pagination span {
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #EFEFEF;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    font-weight: 400;
    transition: 0.3s ease-in-out;
}

.blog_pagination a:hover,
.blog_pagination .current {
    background: #53A9DC;
    border-color: #53A9DC;
    color: #fff;
}

.blog_pagination .prev svg {
    transform: rotate(180deg);
}

.blog_pagination a svg path,
.blog_pagination span svg path {
    transition: 0.3s ease-in-out;
}

.blog_pagination a:hover svg path,
.blog_pagination .current svg path {
    fill: #fff;
}

.blog_no_results {
    padding: 45px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.search_input_wrap input::placeholder {
    color: #B6B6B6;
}

/* Blog Details Page */
.blog_details_banner.inner_banner {
    padding: 105px 0;
    text-align: left;
}

.blog_details_banner::before {
    background: linear-gradient(90deg, rgba(14, 55, 107, 0.78) 0%, rgba(14, 55, 107, 0.42) 55%, rgba(14, 55, 107, 0.35) 100%);
}

.blog_details_banner_inner {
    max-width: 1050px;
}

.blog_details_banner h1 {
    margin-bottom: 24px;
}

.blog_details_cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.blog_details_cats span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.blog_details_meta .author_avatar {
    background: #fff;
    color: var(--blue-color);
}

.blog_details_meta .author_name,
.blog_details_meta .blog_date {
    color: #fff;
}

.blog_details_sec.cmn_gap {
    padding: 100px 0 200px 0;
    background: #f7fbfe;
}

.blog_details_article {
    max-width: 1320px;
    margin: 0 auto;
}

.blog_details_featured {
    margin: 0 0 38px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.blog_details_featured img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.blog_details_grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}

.blog_details_side {
    position: sticky;
    top: 120px;
}

.blog_details_side_card,
.blog_details_content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.blog_details_side_card {
    padding: 34px 30px;
}

.blog_details_side_card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog_details_side_card li {
    padding: 20px 0;
    border-bottom: 1px solid #eef4f8;
}

.blog_details_side_card li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.blog_details_side_card span,
.blog_details_nav a span,
.blog_details_tags span {
    display: block;
    margin-bottom: 6px;
    color: var(--blue-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.blog_details_nav a span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.blog_details_nav a span::before,
.blog_details_nav a span::after {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    flex: 0 0 auto;
}

.blog_details_nav_prev a span::before {
    transform: rotate(-135deg);
}

.blog_details_nav_next a span::before {
    display: none;
}

.blog_details_nav_next a span::after {
    transform: rotate(45deg);
}

.blog_details_nav_prev a span::after {
    display: none;
}

.blog_details_side_card strong {
    display: block;
    color: var(--black-color);
    font-weight: 500;
}

.blog_details_content {
    padding: 50px 55px;
}

.blog_details_content h1,
.blog_details_content h2,
.blog_details_content h3,
.blog_details_content h4,
.blog_details_content h5,
.blog_details_content h6 {
    color: var(--black-color);
    margin-top: 34px;
    margin-bottom: 15px;
}

.blog_details_content h1:first-child,
.blog_details_content h2:first-child,
.blog_details_content h3:first-child {
    margin-top: 0;
}

.blog_details_content h2 {
    font-size: 34px;
}

.blog_details_content h3 {
    font-size: 26px;
}

.blog_details_content p,
.blog_details_content li {
    color: var(--para-color);
    font-size: 18px;
    line-height: 1.75;
}

.blog_details_content ul,
.blog_details_content ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

.blog_details_content li {
    margin-bottom: 10px;
}

.blog_details_content a {
    color: var(--blue-color);
    font-weight: 600;
}

.blog_details_content blockquote {
    margin: 30px 0;
    padding: 26px 30px;
    border-left: 4px solid var(--blue-color);
    border-radius: 8px;
    background: #edf8ff;
}

.blog_details_content img {
    border-radius: 14px;
}

.blog_details_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.blog_details_tags span {
    margin: 0 8px 0 0;
}

.blog_details_tags a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 30px;
    background: #fff;
    color: var(--para-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease-in-out;
}

.blog_details_tags a:hover {
    background: var(--blue-color);
    color: #fff;
}

.blog_details_nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.blog_details_nav_item a {
    display: block;
    min-height: 120px;
    padding: 26px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease-in-out;
}

.blog_details_nav_item a:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(83, 169, 220, 0.14);
}

.blog_details_nav_item strong {
    display: block;
    color: var(--black-color);
    font-weight: 500;
}

.blog_details_nav_next {
    text-align: right;
}

.blog_details_related {
    max-width: 1320px;
    margin: 80px auto 0;
}

.blog_details_related .cmn_head {
    margin-bottom: 35px;
}

.blog_details_related .cmn_head h2 {
    color: var(--black-color);
}

/* Industry Details Page */
.industry_details_banner.inner_banner {
    padding: 115px 0;
    text-align: left;
}

.industry_details_banner::before {
    background: linear-gradient(90deg, rgba(14, 55, 107, 0.86) 0%, rgba(30, 77, 146, 0.64) 52%, rgba(83, 169, 220, 0.36) 100%);
}

.industry_details_banner_inner {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.industry_details_icon {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.industry_details_icon img {
    max-width: 42px;
    width: 100%;
    height: auto;
}

.industry_details_label {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.industry_details_banner h1 {
    margin-bottom: 18px;
}

.industry_details_banner p {
    max-width: 690px;
    color: #fff;
    font-size: 20px;
    line-height: 1.7;
}

.industry_details_sec.cmn_gap {
    padding: 100px 0 200px 0;
    background: #f7fbfe;
}

.industry_details_article {
    margin: 0 auto;
}

.industry_details_grid {
    display: block;
}

.industry_details_content_wrap {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.industry_details_intro {
    padding: 42px 48px 32px;
    background: linear-gradient(90deg, rgba(30, 77, 146, 0.08) 0%, rgba(83, 169, 220, 0.14) 100%);
    border-bottom: 1px solid #dceff9;
}

.industry_details_intro span,
.industry_details_cta > div > span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.industry_details_intro h2 {
    color: var(--black-color);
    margin-bottom: 0;
}

.industry_details_content {
    padding: 42px 48px 48px;
}

.industry_details_content h1,
.industry_details_content h2,
.industry_details_content h3,
.industry_details_content h4,
.industry_details_content h5,
.industry_details_content h6 {
    color: var(--black-color);
    margin-top: 34px;
    margin-bottom: 15px;
}

.industry_details_content h1:first-child,
.industry_details_content h2:first-child,
.industry_details_content h3:first-child {
    margin-top: 0;
}

.industry_details_content h2 {
    font-size: 34px;
}

.industry_details_content h3 {
    font-size: 26px;
}

.industry_details_content p,
.industry_details_content li {
    color: var(--para-color);
    font-size: 18px;
    line-height: 1.75;
}

.industry_details_content ul,
.industry_details_content ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

.industry_details_content li {
    margin-bottom: 10px;
}

.industry_details_content a {
    color: var(--blue-color);
    font-weight: 600;
}

.industry_details_content blockquote {
    margin: 30px 0;
    padding: 24px 30px;
    border-left: 4px solid var(--blue-color);
    border-radius: 8px;
    background: #edf8ff;
}

.industry_details_content img {
    border-radius: 14px;
}

.industry_details_cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 48px 48px;
    padding: 30px;
    border-radius: 16px;
    background: var(--navy-blue);
}

.industry_details_cta h3 {
    margin-bottom: 0;
    color: #fff;
}

.industry_details_cta .cmn_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.industry_details_related {
    margin: 80px auto 0;
}

.industry_details_related .cmn_head {
    margin-bottom: 35px;
}

.industry_details_related .cmn_head h2 {
    color: var(--black-color);
}

.price_sec_new {
    background-color: #fff;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.price_sec_new .pricing_card {
    background: transparent;
}

.price_sec_new .pricing_card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    background: var(--white-color);
}

.price_sec_new .cmn_btn {
    /* background-color: transparent; */
}

.price_sec_new .cmn_btn.btn_outline::before {
    /* background: var(--primary-gradient); */
}

.price_sec_new .pricing_card {
    border: 1px solid #BFE5FD;
}

.trusted_sec_new {
    background-color: var(--white-color);
    padding: 100px 0 200px 0;
}

.why_sec_new .resp-tab-item {
    flex-grow: 1;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    max-width: 33.33%;
    display: flex;
    justify-content: center;
    background: #eee;
    align-items: center;
    font-weight: 500;
    padding: 0 0 10px 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 2px solid #D9D9D9 !important;
    transition: all 0.3s ease;
    color: var(--black-color) !important;
    background: transparent !important;
    margin: 0 !important;
    float: none !important;
    list-style: none !important;
    font-family: 'Outfit', sans-serif;
}

.why_sec_new .resp-tabs-list {
    gap: 0;
}

.why_sec_new .resp-tab-active {
    border-bottom-color: var(--blue-color) !important;
    text-shadow: none !important;
}


.key_sec {
    background-color: #EDF8FF;
}

.key_hdr {
    max-width: 1047px;
    margin: 0 auto 32px auto;
}

.key_hdr h2 {
    margin-bottom: 20px;
}

.key_row {
    align-items: center;
}

.key_faq {
    max-width: 100%;
}

.key_faq_item {
    background: transparent;
    border: 1px solid #B5DFF9;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.key_faq_item.active {
    box-shadow: 0px 10px 40px rgba(83, 169, 220, 0.1);
    border-color: transparent;
    background-color: var(--white-color);
}

.key_faq_header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.key_faq_header h3 {
    margin: 0;
    color: var(--black-color);
    padding-right: 10px;
}


.key_faq_icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Plus sign */
.key_faq_icon::before,
.key_faq_icon::after {
    content: '';
    position: absolute;
    background-color: #111111;
    transition: all 0.3s ease;
}

/* Horizontal line */
.key_faq_icon::before {
    width: 16px;
    height: 2px;
}

/* Vertical line */
.key_faq_icon::after {
    width: 2px;
    height: 16px;
}

/* Active State Icon */
.key_faq_item.active .key_faq_icon {
    background-color: #53A9DC;
    border-color: #53A9DC;
}

.key_faq_item.active .key_faq_icon::before {
    background-color: #FFFFFF;
}

.key_faq_item.active .key_faq_icon::after {
    background-color: #FFFFFF;
    transform: rotate(90deg);
    opacity: 0;
}

.key_faq_content {
    display: none;
    overflow: hidden;
}

.key_faq_item.active .key_faq_content {
    display: block;
}

.key_faq_inner {
    min-height: 0;
}

.key_faq_inner p {
    padding: 0 37px 36px 16px;
    margin: 0;
    color: var(--para-color);
}

.rental_new_sec .join_lft {
    max-width: 100%;
    padding-left: 30px;
}

.rental_new_sec .join_row {
    flex-direction: row-reverse;
}

.tut_video_sec {
    /* background color is now controlled by utility classes */
}

.bg_light_blue {
    background-color: #EDF8FF;
}

.bg_white {
    background-color: #ffffff;
}

.tut_video_innr .play_btn {
    width: 70px;
    height: 70px;
    background-size: 35px;
}

.tut_video_innr .play_wrap::before {
    width: 30%;
    height: 30%;
}

.tut_video_innr .play_wrap::after {
    width: 100%;
    height: 100%;
}

.tut_video_innr .future_vid_wrap {
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

/* .tut_video_hdr {
    margin-bottom: 30px;
} */

.video_row {
    margin: 0 -15px;
}

.video_col {
    padding: 0 15px;
}

.tut_video_innr .video_row {
    --bs-gutter-y: 30px;
}

.load_more_wrap {
    margin-top: 50px;
}

.video_col.hirehop-video-hidden {
    display: none;
}

.tutorial_load_more_wrap .cmn_btn {
    border: 0;
}

.tail_sec.cmn_gap {
    padding: 100px 0 200px 0;
}

.tail_sec .abt_intro_row {
    flex-direction: row-reverse;
}

.tail_intro_right {
    max-width: 588px;
}

/* Contact Section New Styles */
.contact_sec_new.cmn_gap {
    background-color: #f7fbfe;
    padding: 100px 0 200px 0;
}

.contact_flex_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -19px;
}

.contact_lft_info {
    padding: 0 19px;
    width: 32%;
}

.contact_rgt_form {
    padding: 0 19px;
    width: 68%;
}

.contact_info_card {
    background: #fff;
    padding: 47px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 33px;
}

.contact_info_card:last-child {
    margin-bottom: 0;
}

.contact_info_card:hover {
    box-shadow: 0 20px 60px rgba(83, 169, 220, 0.15);
}

.contact_info_icon {
    width: 87px;
    height: 87px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact_info_icon img {
    max-width: 40px;
    width: 100%;
    filter: brightness(0) invert(1);
}

.contact_info_head {
    font-size: 25px;
    margin-bottom: 6px;
    font-weight: 500;
    color: #021C10;
}

.contact_info_card p,
.contact_info_card p a {
    margin: 0;
    color: #464646;
    font-size: 18px;
    text-decoration: none !important;
    transition: 0.3s ease-in-out;
}

.contact_info_card p a:hover {
    color: var(--blue-color);
}


.contact_form_box {
    background: #fff;
    padding: 37px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact_form_box h2 {
    margin-bottom: 35px;
}

/* Privacy Policy Page */
.privacy_policy_banner.inner_banner {
    background-position: center;
}

.privacy_policy_sec.cmn_gap {
    background: #f7fbfe;
    padding: 100px 0 200px 0;
}

.privacy_policy_wrap {
    max-width: 1180px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.privacy_policy_intro {
    padding: 45px 55px 35px;
    background: linear-gradient(90deg, rgba(30, 77, 146, 0.08) 0%, rgba(83, 169, 220, 0.12) 100%);
    border-bottom: 1px solid #e6f3fb;
}

.privacy_policy_intro span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.privacy_policy_intro h2 {
    color: var(--black-color);
    margin-bottom: 0;
}

.privacy_policy_content {
    padding: 45px 55px 55px;
}

.privacy_policy_content h1,
.privacy_policy_content h2,
.privacy_policy_content h3,
.privacy_policy_content h4,
.privacy_policy_content h5,
.privacy_policy_content h6 {
    color: var(--black-color);
    margin-top: 34px;
    margin-bottom: 14px;
}

.privacy_policy_content h1:first-child,
.privacy_policy_content h2:first-child,
.privacy_policy_content h3:first-child,
.privacy_policy_content h4:first-child {
    margin-top: 0;
}

.privacy_policy_content h2 {
    font-size: 34px;
}

.privacy_policy_content h3 {
    font-size: 26px;
}

.privacy_policy_content p,
.privacy_policy_content li {
    color: var(--para-color);
    font-size: 18px;
    line-height: 1.75;
}

.privacy_policy_content a {
    color: var(--blue-color);
    font-weight: 600;
    text-decoration: none;
}

.privacy_policy_content a:hover {
    color: var(--navy-blue);
}

.privacy_policy_content ul,
.privacy_policy_content ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

.privacy_policy_content li {
    margin-bottom: 10px;
}

.privacy_policy_content blockquote {
    margin: 30px 0;
    padding: 24px 30px;
    background: #edf8ff;
    border-left: 4px solid var(--blue-color);
    border-radius: 8px;
}

.privacy_policy_content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 8px;
}

.privacy_policy_content th,
.privacy_policy_content td {
    border: 1px solid #dceff9;
    padding: 15px 18px;
    text-align: left;
    color: var(--para-color);
}

.privacy_policy_content th {
    background: #edf8ff;
    color: var(--black-color);
    font-weight: 600;
}

.form_group_wrp {
    display: flex;
    flex-direction: column;
}

.form_item {
    margin-bottom: 25px;
}

.form_item label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--black-color);
}

.form_input_p input,
.form_input_p textarea {
    border: 1px solid #EFEFEF;
    border-radius: 8px;
    padding: 0 20px;
    transition: all 0.3s ease;
    height: 60px;
    color: #464646;
}

.form_input_p textarea {
    height: 120px;
    padding: 20px;
    resize: none;
}

.form_input_p input:focus,
.form_input_p textarea:focus {
    border-color: var(--blue-color);
    background: #fff;
    box-shadow: 0 0 15px rgba(83, 169, 220, 0.1);
}

.captcha_flex_wrap {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.captcha_text {
    font-size: 18px;
    color: #111111;
    max-width: 270px;
    font-weight: 400;
}

.check_container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.check_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 26px;
    width: 26px;
    background-color: #fff;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
}

.check_container:hover input~.checkmark {
    border-color: #b1b1b1;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check_container input:checked~.checkmark:after {
    display: block;
}

.check_container .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: url(assets/images/tick.svg) no-repeat center center;
    background-size: contain;
}

.form_submit_wrp {
    margin-top: 25px;
}

.form_submit_wrp .cmn_btn {
    border: none;
    cursor: pointer;
}

.contact_form_box .gform_wrapper.gravity-theme,
.contact_form_box .gform_wrapper.gravity-theme form {
    margin: 0;
}

.contact_form_box .gform_heading,
.contact_form_box .gform_required_legend {
    display: none;
}

.contact_form_box .gform_wrapper.gravity-theme .gform_fields {
    display: flex;
    flex-direction: column;
    grid-row-gap: 0;
    row-gap: 0;
}

.contact_form_box .gform_wrapper.gravity-theme .gfield {
    margin-bottom: 25px;
}

.contact_form_box .gform_wrapper.gravity-theme .gfield_label {
    display: block;
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--black-color);
}

.contact_form_box .gform_wrapper.gravity-theme .gfield_required {
    display: none;
}

.contact_form_box .gform_wrapper.gravity-theme input[type="text"],
.contact_form_box .gform_wrapper.gravity-theme input[type="email"],
.contact_form_box .gform_wrapper.gravity-theme input[type="tel"],
.contact_form_box .gform_wrapper.gravity-theme textarea {
    width: 100%;
    border: 1px solid #EFEFEF;
    border-radius: 8px;
    padding: 0 20px;
    transition: all 0.3s ease;
    height: 60px;
    color: #464646;
    font-size: 16px;
    box-shadow: none;
    outline: none;
    background: #fff;
}

.contact_form_box .gform_wrapper.gravity-theme textarea {
    height: 120px !important;
    min-height: 120px !important;
    padding: 20px;
    resize: none;
}

.contact_form_box .gform_wrapper.gravity-theme input[type="text"]:focus,
.contact_form_box .gform_wrapper.gravity-theme input[type="email"]:focus,
.contact_form_box .gform_wrapper.gravity-theme input[type="tel"]:focus,
.contact_form_box .gform_wrapper.gravity-theme textarea:focus {
    border-color: var(--blue-color);
    background: #fff;
    box-shadow: 0 0 15px rgba(83, 169, 220, 0.1);
}

.contact_form_box .gform_wrapper.gravity-theme .gfield--type-captcha {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
}

.contact_form_box .gform_wrapper.gravity-theme .gfield--type-captcha .gfield_label {
    max-width: 270px;
    margin-bottom: 0;
    font-size: 18px;
    color: #111111;
}

.contact_form_box .gform_wrapper.gravity-theme .ginput_recaptcha {
    max-width: 100%;
}

.contact_form_box .gform_wrapper.gravity-theme .gform_footer {
    margin: 25px 0 0;
    padding: 0;
}

.contact_form_box .gform_wrapper.gravity-theme .gform_footer input[type="submit"],
.contact_form_box .gform_wrapper.gravity-theme .gform_footer .gform_button {
    min-width: 152px;
    min-height: 52px;
    border: none;
    border-radius: 100px;
    padding: 13px 32px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact_form_box .gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover,
.contact_form_box .gform_wrapper.gravity-theme .gform_footer .gform_button:hover {
    background: linear-gradient(90deg, #011C3E 0%, #011C3E 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(45, 110, 165, 0.3);
}

.contact_form_box .gform_wrapper.gravity-theme .gfield_validation_message,
.contact_form_box .gform_wrapper.gravity-theme .validation_message {
    margin-top: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ff4d4d;
    font-size: 14px;
    line-height: 1.4;
}

.contact_form_box .gform_wrapper.gravity-theme .gfield_error input,
.contact_form_box .gform_wrapper.gravity-theme .gfield_error textarea {
    border-color: #ff4d4d;
    background-color: #fff9f9;
}

.thank_you_sec {
    background: #f7fbfe;
    padding-bottom: 200px;
}

.thank_you_card {
    max-width: 820px;
    margin: 0 auto;
    padding: 58px 54px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.thank_you_icon {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--primary-gradient);
    box-shadow: 0 18px 45px rgba(83, 169, 220, 0.25);
}

.thank_you_icon::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 33px;
    width: 27px;
    height: 15px;
    border-left: 5px solid #fff;
    border-bottom: 5px solid #fff;
    transform: rotate(-45deg);
}

.thank_you_eyebrow {
    margin-bottom: 12px;
    color: var(--blue-color);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.thank_you_card h2 {
    color: var(--black-color);
    margin-bottom: 18px;
}

.thank_you_content {
    max-width: 650px;
    margin: 0 auto;
}

.thank_you_content p {
    font-size: 20px;
}

.thank_you_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}

/* 404 Page */
.error_404_banner::before {
    background: linear-gradient(90deg, rgba(14, 55, 107, 0.82) 0%, rgba(30, 77, 146, 0.58) 55%, rgba(83, 169, 220, 0.36) 100%);
}

.error_404_sec {
    background: #f7fbfe;
    padding-bottom: 200px;
}

.error_404_card {
    max-width: 900px;
    margin: 0 auto;
    padding: 58px 54px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.error_404_code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 92px;
    margin-bottom: 24px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(83, 169, 220, 0.25);
}

.error_404_eyebrow {
    margin-bottom: 12px;
    color: var(--blue-color);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.error_404_card h2 {
    color: var(--black-color);
    margin-bottom: 18px;
}

.error_404_card p {
    max-width: 660px;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    line-height: 1.7;
}

.error_404_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}

.error_404_actions .btn_banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Form Validation Styles */
.form_input_p.field_error input,
.form_input_p.field_error textarea {
    border-color: #ff4d4d;
    background-color: #fff9f9;
}

.error_msg {
    display: none;
    color: #ff4d4d;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 400;
}

.field_error+.error_msg,
.captcha_flex_wrap .error_msg {
    display: block;
}

.captcha_flex_wrap.field_error .checkmark {
    border-color: #ff4d4d;
}

.join_lft p a {
    font-weight: 600;
    color: var(--para-color);
    transition: 0.3s ease-in-out;
}

.join_lft p a:hover {
    color: var(--blue-color);
}

.feature_new_sec .join_lft {
    max-width: 626px;
}

.trusted_sec_new #logoSlider:before {
    left: 0;
    background: linear-gradient(to right, #ffffff 20%, rgba(255, 255, 255, 0) 100%);
}

.trusted_sec_new #logoSlider:after {
    right: 0;
    background: linear-gradient(to left, #ffffff 20%, rgba(255, 255, 255, 0) 100%);
}


/* Feature Comparison Section (Div-based) */
.feature_content {
    background-color: #EDF8FF;
}

.feature_content.cmn_gap {
    padding: 70px 0 200px 0;
}

.feature_comparison_new {
    width: 100%;
    margin-bottom: 20px;
}

.comparison_header {
    display: flex;
    align-items: center;
    padding: 20px 0 30px;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #EDF8FF;
}

.comp_col_name {
    flex: 1;
    font-size: 30px;
    font-weight: 500;
    color: var(--black-color);
}

.comp_col_plan {
    flex: 0 0 33.33%;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: var(--black-color);
}

.feature_item {
    transition: margin 0.4s ease, background 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    border-bottom: 1px solid #DAF1FF;
    background: transparent;
    overflow: hidden;
}

.feature_item.active {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    border-bottom: 0;
    margin: 15px 0;
}

.feature_item_header {
    display: flex;
    align-items: center;
    padding: 19px 30px;
    cursor: pointer;
}

.feature_name_wrap {
    flex: 1;
    display: flex;
    align-items: center;
}

.feature_name_wrap span {
    font-weight: 600;
    font-size: 20px;
    color: var(--para-color);
}

.feature_arw {
    margin-right: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.feature_arw img {
    max-width: 8px;
    width: 100%;
}

.feature_item.active .feature_arw {
    transform: rotate(90deg);
}

.feature_plan_val {
    flex: 0 0 33.33%;
    text-align: center;
    font-size: 16px;
    color: var(--para-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature_plan_val img {
    max-width: 20px;
}

.feature_item_body {
    display: none;
    overflow: hidden;
}

.feature_item.active .feature_item_body {
    display: block;
}

.feature_item_body_inner {
    padding: 0 30px 30px;
}

.feature_item_body p {
    margin: 0;
    font-size: 16px;
    color: var(--para-color);
    margin-bottom: 6px;
}

.feature_item_body p:last-child {
    margin-bottom: 0;
}

.feature_new_head {
    display: none !important;
}

.com_col_name_new_one {
    display: none;
}

.com_new_hdr {
    padding: 0 !important;
}

.feature_new_sec .join_lft h2 {
    margin-bottom: 10px;
}

/* Feature Table Section Styles */

/* Ensure all crosses / X are red */
img[src*="grn_cross.png"] {
    filter: invert(16%) sepia(99%) saturate(7404%) hue-rotate(355deg) brightness(95%) contrast(116%);
}

@media (max-width: 767px) {
    .feature_new_head {
        display: flex !important;
    }

    .feature_new_head .feature_arw {
        display: none;
    }

    .feature_new_head .feature_name_wrap span {
        display: none !important;
    }

    .feature_item_header .feature_plan_val {
        display: none;
    }

    .feature_new_head .feature_plan_val {
        display: block !important;
    }

    .feature_plan_val {
        flex: 0 0 50% !important;
    }

    .comp_col_plan {
        flex: 0 0 50% !important;
    }

    /* .comp_col_name {
        display: none;
    } */

    .com_col_name_new {
        display: none !important;
    }

    .com_new_hdr .comp_col_name {
        display: block !important;
    }
    .thank_you_card {
        padding: 30px;
    }

    .error_404_card {
        padding: 30px;
    }
}

.btn_book:hover .btn_book_circle {
    background: #fff;
}


.btn_book:hover .btn_book_circle img {
    filter: brightness(0) saturate(100%) invert(66%) sepia(13%) saturate(1969%) hue-rotate(163deg) brightness(93%) contrast(85%);
}

.lang_dropdown .dropdown-toggle.show i {
    transform: rotate(180deg);
}

.btn_book:after,
.cmn_btn:after,
.btn_gradient::after,
.btn_submit::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 75%);

    transition: none;
    pointer-events: none;
}

.btn_book:hover:after,
.cmn_btn:hover:after,
.btn_gradient:hover::after,
.btn_submit:hover::after {
    left: 100%;
    transition: left 0.5s ease-in-out;
}

.free-wrap {
    padding: 30px;
    background-color: #EDF8FF;
    transition: 0.3s ease-in-out;
}

.free-wrap h3 {
    margin-bottom: 0;
}

/* 23.4.26 */
.cmn_btn.btn_outline::before {
    background: #011C3E;
}

.wrap-gel {
    padding: 20px 10px 0;
}

.pric-sec .free-wrap {
    text-align: center;
}

.logo-ftr {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0px -8px -12px;
}

.logo-ftr li a {
    height: 50px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ftr li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-ftr li {
    padding: 0px 8px;
    margin-bottom: 12px;
}

/* Hover styles removed here */

.pricing_card .free-wrap h3,
.pricing_card .price_features p,
.pricing_card .price_features a,
.pricing_card .price_amount h4,
.pricing_card {
    transition: 0.3s ease-in-out;
}

/* 4/5/26 */
.cmn_head_lft p {
    max-width: 360px;
}

.cmn_head_rgt {
    text-align: right;
}

.cmn_head_lft h2 {
    margin-bottom: 5px;
}

/* 4/5/26 */

/* ========== responsive css =========== */



@media(min-width:1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}

@media(max-width:1680px) {
    .navbar-nav>li {
        margin: 0 15px;
    }
    .navbar-nav>li>a {
        font-size: 14px;
    }
}
@media(max-width:1499px) {
    .navbar-nav>li {
        margin: 0 10px;
    }
    .navbar-nav>li>a {
        font-size: 13px;
    }
    .main-head .nav_right .cmn_btn {
        padding-left: 25px;
        padding-right: 25px;
    }
    .main-head.fixed .nav_right .cmn_btn {
        padding-left: 20px;
        padding-right: 20px;
    }
    .container {
        max-width: 1320px;
    }

    .main-head {
        padding: 22px 20px;
    }

    .navbar-nav>li {
        /* margin: 0px 18px; */
        position: relative;
    }

    h2,
    .h2-title {
        font-size: 38px;
    }

    h3 {
        font-size: 20px;
    }

    .feature_card {
        padding: 15px 12px;
    }

    .feature_img {
        margin-right: 21px;
    }

    .why_sec .resp-tabs-container {
        padding: 50px 42px !important;
    }

    #customerTabs.resp-vtabs .resp-tab-item {
        padding: 18px !important;
    }

    .industry_card {
        padding: 25px 13px;
    }

    .industry_cnt h3 a {
        font-size: 21px;
    }

    .industry_badge {
        width: 100px;
        height: 100px;
    }

    .indus_bud_innr {
        height: 70px;
        width: 70px;
    }

    .price_features p {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .navbar-brand {
        max-width: 200px;
    }

    #customerTabs.resp-vtabs .resp-tabs-list {
        padding-right: 20px;
    }

    #customerTabs.resp-vtabs .resp-tab-active::before {
        width: 8px;
    }
}


@media(max-width:1399px) {

    .nav_right {
        margin-left: 20px;
    }

    .industry_cnt h3 a {
        font-size: 19px;
    }

    .blog_col {
        width: 50%;
    }

    .contact_info_icon {
        width: 76px;
        height: 76px;
    }

    .contact_info_icon img {
        max-width: 32px;
    }

}

@media(max-width:1365px) {
    .container {
        max-width: 1200px;
    }

    .ft_col {
        padding: 0 10px;
    }

    .cards_row {
        margin: 0 -10px;
    }

    #customerTabs.resp-vtabs .resp-tab-item {
        padding: 16px !important;
        font-size: 18px;
    }

    .hm_testimonial_sec .slick-arrow {
        width: 60px;
        height: 60px;
    }

    .ind_crd_row {
        margin: 0 -10px;
    }

    .ind_crd_col {
        padding: 0 10px;
    }

    .partner_image_col {
        padding: 10px;
    }

    .partner_image_row {
        margin: -15px;
    }

    .navbar-nav>li {
        margin: 0 10px;
    }
    .lang_dropdown .dropdown-toggle, .lang_dropdown .gt_selector {
        min-height: 44px;
    }

    .meta_val {
        display: block;
        font-size: 18px;
    }

    .cmn_btn {
        padding: 14px 25px;
    }

    .main-head.fixed .nav_right .cmn_btn {
        padding: 13px 25px;
    }

    .lang_dropdown .dropdown-toggle,
    .lang_dropdown .gt_selector {
        padding: 8px 15px;
    }

    .main-head.fixed .lang_dropdown .dropdown-toggle,
    .main-head.fixed .lang_dropdown .gt_selector {
        padding: 8px 15px;
    }

    .lang_dropdown .gt_selector,
    .main-head.fixed .lang_dropdown .gt_selector {
        padding-right: 34px;
    }

    .btn_banner {
        padding: 7px 12px 9px 20px;
    }

    .feature_card {
        padding: 18px 15px;
    }

    h3 {
        font-size: 19px;
    }

    h2,
    .h2-title {
        font-size: 35px;
    }


    #customerTabs.resp-vtabs .resp-tab-item {
        padding: 15px !important;
    }

    .hm_testimonial_sec .slick-arrow {
        width: 60px;
        height: 60px;
    }

    .industry_badge {
        width: 100px;
        height: 100px;
    }

    .indus_bud_innr {
        height: 70px;
        width: 70px;
    }

    .indus_bud_innr img {
        max-width: 30px;
    }

    .nav_right {
        margin-left: 11px;
    }

    .pricing_card {
        /* padding: 20px; */
    }


}

@media(max-width:1299px) {
    .bill_card p {
        font-size: 22px;
    }

    .making_card {
        padding: 40px 18px;
    }

    .contact_flex_wrap {
        display: flex;
        margin: 0 -10px;
        /* flex-direction: column-reverse; */
    }

    .contact_lft_info {
        padding: 0 10px;
        /* width: 32%; */
    }

    .contact_rgt_form {
        padding: 0 10px;
        /* width: 68%; */
    }
    .main-head .nav_right .cmn_btn {
        padding-left: 20px;
        padding-right: 20px;
    }
    .main-head.fixed .nav_right .cmn_btn {
        padding-left: 15px;
        padding-right: 15px;
    }
    .main-head {
        padding-left: 0;
        padding-right: 0;
    }
    .navbar-nav>li>a {
        font-size: 12px;
    }
}

@media(max-width:1199px) {

    .navbar-nav>li>a {
        font-size: 10px;
    }

    .navbar-nav>li {
        margin: 0 12px;
    }

    .nav_right {
        margin-left: 8px;
    }

    .banner-sec {
        min-height: 600px;
    }

    .ft_col {
        width: 50%;
    }

    .map_image {
        max-width: 800px;
        max-height: 406px;
    }

    .navbar-brand {
        max-width: 160px;
    }

    .lang_dropdown .dropdown-toggle,
    .lang_dropdown .gt_selector {
        padding: 9px 12px;
    }

    .lang_dropdown .gt_selector {
        padding-right: 32px;
    }

    .lang_dropdown {
        margin-left: 7px;
    }

    .navbar-nav>li {
        margin: 0 6px;
    }
    .nav_right .cmn_btn {
        margin-left: 5px;
    }

    h1 {
        font-size: 50px;
    }

    .cards_row {
        --bs-gutter-y: 20px;
    }

    .cmn_gap {
        padding: 60px 0;
    }

    .thank_you_sec.cmn_gap {
        padding-bottom: 200px;
    }

    .error_404_sec.cmn_gap {
        padding-bottom: 200px;
    }

    .why_sec.cmn_gap {
        padding: 100px 0 0;
    }

    .why_sec .resp-tabs-list {
        gap: 27px;
    }

    .why_sec .resp-tab-item {
        font-size: 17px;
    }

    .why_cnt_left h3 {
        /* font-size: 35px; */
    }

    .why_cnt_inner {
        margin: 0 -10px;
    }

    .why_cnt_left {
        padding: 0 10px;
    }

    .why_cnt_right {
        padding: 0 10px;
    }

    #customerTabs.resp-vtabs .resp-tabs-list {
        width: 35%;
    }

    #customerTabs.resp-vtabs .resp-tabs-container {
        width: 65%;
    }

    #customerTabs.resp-vtabs .resp-tab-item {
        margin-bottom: 0px !important;
        font-size: 17px;
    }

    .meta_val {
        font-size: 15px;
    }

    .meta_lbl {
        font-size: 13px;
    }

    .hm_testimonial_sec .quote_text_wrap {
        max-width: 714px;
    }

    .hm_testimonial_sec {
        padding: 60px 0 0;
    }

    .ind_crd_col {
        width: 50%;
    }

    .ind_crd_row {
        --bs-gutter-y: 20px;
    }

    .partner_image_col {
        width: 25%;
    }

    .partner_image_row {
        margin: -10px;
    }

    .partner_image_col {
        padding: 10px;
    }

    .price_col {
        width: 50%;
    }

    .price_row {
        --bs-gutter-y: 20px;
    }

    .foot_top_lft {
        width: 70%;
    }

    .foot_top_rgt {
        width: 30%;
    }

    .foot_social li {
        margin-right: 4px;
    }

    .why_sec.cmn_gap {
        padding: 60px 0 0;
    }

    .line_sep {
        margin-top: 72px;
    }

    .hm_testimonial_sec {
        overflow: visible;
    }

    .bill_card p {
        font-size: 20px;
    }

    .making_row {
        margin: 0 -6px;
    }

    .making_col {
        padding: 0 6px;
    }

    .blog_cat_list li a {
        display: block;
        padding: 23px 0;
    }

    .partner_sec_new.cmn_gap {
        padding: 60px 0 200px 0;
    }

    .tail_sec.cmn_gap {
        padding: 60px 0 200px 0;
    }

    .contact_info_card {
        background: #fff;
        padding: 18px 26px;
    }

    .contact_info_icon {
        width: 66px;
        height: 66px;
    }

    .contact_info_icon img {
        max-width: 28px;
    }

    .contact_info_head {
        font-size: 25px;
        margin-bottom: 2px;
    }

    .contact_form_box {
        background: #fff;
        padding: 34px 29px;
    }

    .contact_form_box h2 {
        margin-bottom: 23px;
    }

    .trusted_sec_new.cmn_gap {
        padding: 60px 0 200px 0;
    }

    .feature_content.cmn_gap {
        padding: 40px 0 200px 0;
    }

    .comparison_header {
        padding: 20px 0 15px;
    }

    .service_crd_sec.cmn_gap {
        padding: 40px 0 200px 0;
    }

    .main-head.fixed .navbar-brand {
        max-width: 146px;
    }
}

@media(max-width:1024px) {

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(assets/images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
    }

    .sub-menu>li.menu-item-has-children>a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav>li {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:after,
    .navbar-nav>li.menu-item-has-children>a:after {
        width: 100%;
        opacity: 0;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:hover:after,
    .navbar-nav>li.menu-item-has-children:hover>a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/
    .cmn_btn {
        padding: 14px 18px;
        font-size: 14px;
    }

    .why_sec.cmn_gap {
        padding: 60px 0 0;
    }

    .about_intro_rgt {
        padding-left: 0px;
    }

    .about_intro_rgt h2 {
        margin-bottom: 10px;
    }

    .about_intro_rgt p {
        margin-bottom: 9px;
    }

    .bill_card p {
        font-size: 16px;
    }

    .bill_one {
        background: #fff;
        padding: 20px 24px;
    }

    .bill_num {
        font-size: 45px;
    }

    /* .sidebar_col {
        width: 35%;
    }

    .blog_right_col {
        width: 65%;
    } */

    .blog_cat_list li a {
        padding: 18px 0;
    }

    .blog_card {
        padding: 18px;
    }

    .blog_cat_list li a {
        font-size: 17px;
    }

    .rental_new_sec .join_lft h2 {
        margin-bottom: 12px;

    }

    .rental_new_sec .join_lft {
        padding-left: 0;
    }

    .trusted_sec_new.cmn_gap {
        background-color: var(--white-color);
        padding: 60px 0 200px 0;
    }

    .feature_plan_val {
        flex: 0 0 28%;
    }

    .comp_col_plan {
        flex: 0 0 28%;
    }

    .comp_col_name {
        flex: 1;
        font-size: 20px;
    }

    .comp_col_plan {
        font-size: 20px;
    }

    .comparison_header {
        display: flex;
        align-items: center;
        padding: 20px 0 19px;
    }

    .feature_name_wrap span {
        font-weight: 600;
        font-size: 17px;
    }

    .feature_plan_val img {
        max-width: 16px;
    }

    .feature_item_header {
        padding: 15px 30px;
    }

    .feature_arw img {
        max-width: 6px;
    }

    .feature_content.cmn_gap {
        padding: 30px 0 200px 0;
    }

    .blog_details_grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog_details_content {
        padding: 30px;
    }

    .blog_details_side {
        position: static;
    }

    .blog_details_side_card ul {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .blog_details_side_card li {
        padding: 0;
        border-bottom: 0;
        border-right: 1px solid #eef4f8;
    }

    .blog_details_side_card li:last-child {
        border-right: 0;
        padding-bottom: 0;
    }

    .industry_details_intro,
    .industry_details_content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .industry_details_cta {
        margin-left: 30px;
        margin-right: 30px;
    }







}


@media (max-width: 991px) {

    .blog_cat_dropdown {
        display: block;
        margin-bottom: 32px;
    }

    .blog_cat_list {
        display: none;
    }

    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: 10px;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
        order: 3;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }

    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }


    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav>li>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
        font-size: 16px;
    }
     

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px;
    }

    .sub-menu>li>a {
        padding-left: 40px;
    }

    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }

    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }

    .navbar-nav>li>a:after {
        bottom: 0;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        z-index: 100;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0;
        padding: 0 0 40px 0;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay.open {

        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden;
    }

    /* Why Choose Section Hybrid Responsive */
    .why_head {
        margin-bottom: 30px;
    }

    .why_tab_content {
        background: transparent;
        padding: 0;
    }

    .tab_mob_head {
        display: block;
    }

    .testimonial_slider .slick-list {
        overflow: hidden;
    }

    .test_info {
        padding: 0 20px;
    }

    .test_quote p {
        font-size: 16px;
    }

    .slider_nav {
        top: 20px;
    }

    .slider_nav button {
        width: 45px;
        height: 45px;
    }

    .tab_item_wrapper:not(.active) .tab_mob_head {
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .why_cnt_inner {
        flex-direction: column;
        background: #F2F9FF;
        border-radius: 0 0 12px 12px;
        padding: 30px 20px;
        margin: 0 0 20px 0;
    }

    .why_cnt_left,
    .why_cnt_right {
        width: 100%;
        padding: 0;
    }

    .why_cnt_right {
        margin-top: 30px;
    }

    .why_rgt_image_one,
    .why_rgt_image_two {
        /* width: 100%; */
        margin-bottom: 15px;
    }

    .why_rgt_image_two {
        margin-bottom: 0;
    }

    /* push nav end */


    /* ---easy --- */
    .why_sec .resp-tabs-list {
        display: none !important;
    }

    .why_sec .resp-accordion {
        display: block !important;
        background: #fff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin-bottom: 15px !important;
        font-size: 20px !important;
        font-weight: 600 !important;
        color: var(--black-color) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    }

    .why_sec .resp-tab-active.resp-accordion {
        background: var(--blue-color) !important;
        color: #fff !important;
        border-radius: 12px 12px 0 0 !important;
        border-color: var(--blue-color) !important;
        margin-bottom: 0 !important;
    }

    .why_sec .resp-tabs-container {
        background: transparent !important;
        padding: 0 !important;
    }

    .why_cnt_inner {
        flex-direction: column;
        background: #F2F9FF;
        border-radius: 0 0 12px 12px;
        padding: 40px 30px;
        margin: 0 0 20px 0;
    }

    .why_cnt_left,
    .why_cnt_right {
        width: 100%;
        padding: 0;
    }

    .why_cnt_right {
        margin-top: 40px;
    }

    .why_cnt_right_wrapper {
        flex-direction: column;
    }

    .why_rgt_image_one,
    .why_rgt_image_two {
        /* width: 100%; */
        /* flex: 0 0 auto; */
    }

    #customerTabs.resp-vtabs .resp-tabs-list {
        display: none !important;
    }

    #customerTabs.resp-vtabs .resp-tabs-container {
        width: 100%;
    }

    .meta_item {
        padding: 0 17px;
        width: 100%;
    }

    /* .meta_item:not(:last-child):after {
        display: none;
    } */

    .customer_sec .resp-accordion {
        display: block !important;
        background: #fff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin-bottom: 15px !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        color: var(--black-color) !important;
    }

    .customer_sec .resp-tab-active.resp-accordion {
        background: var(--blue-color) !important;
        color: #fff !important;
    }

    #logoSlider {
        padding: 0 50px;
    }

    #logoSlider:before,
    #logoSlider:after {
        width: 100px;
    }

    .nav_right {
        margin-left: auto;
    }

    .feature_lft {
        width: 50%;
    }

    .feature_rgt {
        width: 50%;
    }

    .why_rgt_image_one,
    .why_rgt_image_two {
        /* width: 50%; */
        margin-bottom: 0;
    }

    .why_cnt_right_wrapper {
        flex-direction: inherit;
    }

    .customer_pane {
        padding: 0 0 30px 0;
    }

    h1 {
        font-size: 40px;
    }

    h2,
    .h2-title {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    .banner-sec {
        min-height: 500px;
    }

    .btn_arw {
        width: 35px;
        height: 35px;
    }

    .cards_row {
        margin: 0 -10px;
    }

    .ft_col {
        padding: 0 10px;
    }

    .resp-vtabs .resp-tab-content {
        border: none;
    }

    .industry_hd_lft {
        width: 60%;
    }

    .industry_hd_rgt {
        width: 40%;
    }

    .industry_badge {
        width: 85px;
        height: 85px;
    }

    .indus_bud_innr {
        height: 60px;
        width: 60px;
        flex-shrink: 0;
    }

    .indus_bud_innr img {
        max-width: 25px;
    }

    .partner_hd_lft {
        width: 60%;
    }

    .partner_hd_rgt {
        width: 40%;
    }

    .partner_card img {
        max-width: 130px;
        max-height: 70px;
    }

    .foot_top_wrapper {
        border-radius: 20px;
        padding: 50px 25px;
    }

    .cta_title {
        font-size: 30px;
    }

    .btn_book {
        font-size: 14px;
    }

    .foot_col {
        width: 50%;
    }

    .map_image {
        max-width: 550px;
        max-height: 306px;
    }

    .foot_mid_row {
        --bs-gutter-y: 35px;
    }

    .foot_links li {
        margin-bottom: 10px;
    }

    .customer_lft_col {
        width: 50%;
    }

    .customer_rgt_col {
        width: 50%;
    }

    .hm_testimonial_sec .slick-arrow {
        width: 45px;
        height: 45px;
    }

    .pricing_card h3 {
        /* margin-bottom: 15px; */
        font-size: 25px;
    }

    .price_amount h4 {
        font-size: 25px;
    }

    .price_features {
        margin-bottom: 18px;
    }

    .price_amount {
        margin-bottom: 25px;
    }

    .customer_meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .meta_val {
        font-size: 14px;
    }

    .meta_item {
        padding: 0 13px;
    }


    .map_image {
        max-width: 550px;
        max-height: 306px;
    }

    .hm_testimonial_sec .quoter_img_wrap .quoter_img {
        width: 100px;
    }

    .cmn_gap {
        padding: 50px 0;
    }

    .thank_you_sec.cmn_gap {
        padding-bottom: 200px;
    }

    .error_404_sec.cmn_gap {
        padding-bottom: 200px;
    }

    .error_404_code {
        min-width: 128px;
        min-height: 74px;
        font-size: 40px;
    }

    .error_404_card p {
        font-size: 17px;
    }

    .error_404_actions {
        flex-direction: column;
        align-items: center;
    }

    .why_sec.cmn_gap {
        padding: 50px 0 0;
    }

    .trusted_sec {
        padding: 0 0 50px 0;
    }

    p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .industry_card {
        padding: 25px 13px;
    }

    .learn_btn {
        font-size: 14px;
    }

    .learn_btn img {
        width: 100%;
        max-width: 8px;
    }

    .partner_image_col {
        width: 33.33%;
    }

    .pricing_head {
        margin-bottom: 30px;
    }

    .foot_top_lft {
        width: 100%;
    }

    .pricing_card {
        /* padding: 33px 19px; */
    }

    .pricing_card h3 {
        /* margin-bottom: 15px; */
        font-size: 20px;
    }

    .price_amount h4 {
        font-size: 25px;
    }

    .foot_top_rgt {
        width: 41%;
    }

    .foot_top_btn {
        display: flex;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .pricing_sec {
        padding: 60px 0 190px 0;
    }

    .foot_logo {
        display: inline-block;
        max-width: 170px;
    }

    .hm_testimonial_sec .slick-prev:before {
        background-size: 20px;
    }

    .hm_testimonial_sec .slick-next:before {
        background-size: 20px;
    }

    .feature_head,
    .industries_head,
    .partner_head,
    .cmn_sec_head {
        margin-bottom: 20px;
    }

    #customerTabs.resp-vtabs .resp-tab-active {
        background: var(--blue-color) !important;
        color: var(--white-color) !important;
        border-left-color: var(--blue-color) !important;
    }

    #customerTabs.resp-vtabs .resp-tab-active::before {
        content: none;
    }

    .cmn_head_rgt p {
        max-width: 100%;
        margin-left: 0;
    }

    .cmn_head_lft h2 {
        margin-bottom: 15px;
    }

    .industries_sec .cmn_head_rgt p {
        max-width: 100%;
        margin-left: 0;
    }

    .abt_intro_row {
        flex-direction: column-reverse;
        --bs-gutter-y: 20px;
    }

    /* .future_vid_sec {
        margin-top: -343px;
    } */

    .future_vid_wrap {
        margin-top: 23px;
    }

    .bill_card {
        width: 50%;
    }

    .bill_row {
        --bs-gutter-y: 20px;
    }

    .team_item {
        width: 50%;
    }

    .team_row {
        --bs-gutter-y: 20px;
    }

    .join_sec.cmn_gap {
        padding: 40px 0 200px 0;
    }

    .join_row {
        --bs-gutter-y: 20px;
    }

    .blue_sec {
        height: 400px;
    }

    .making_col {
        margin-bottom: 20px;
        width: 50%;
    }

    .service_crd_sec.cmn_gap {
        padding: 50px 0 200px 0;
    }

    .blog_col {
        width: 50%;
    }

    .pagination_image {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blog_list_sec.cmn_gap {
        padding: 50px 0 200px 0;
    }

    /* .how_intro_wrapper {
        max-width: 800px;
        margin: 0 auto;
    } */

    .industry_badge {
        bottom: -42px;
    }

    .future_vid_sec.cmn_gap {
        padding: 50px 0 0;
    }

    .about_intro_lft {
        /* max-width: 100%; */
        /* margin: 0 auto; */
    }

    .blog_sidebar {
        margin-bottom: 30px;
    }

    .partner_sec_new.cmn_gap {
        padding: 50px 0 200px 0;
    }

    .key_right h3 {
        margin-bottom: 20px;
    }

    .key_faq {
        margin-bottom: 30px;
    }

    h4,
    .h4-title {
        font-size: 18px;
    }

    .tail_sec.cmn_gap {
        padding: 50px 0 200px 0;
    }

    .tail_sec .abt_intro_row {
        flex-direction: column-reverse;
    }

    .tail_intro_right {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .tail_intro_right h2 {
        margin-bottom: 15px;
    }

    .video_row {
        margin: 0 -10px;
    }

    .video_col {
        padding: 0 10px;
    }

    .contact_lft_info {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .form_submit_wrp {
        margin-top: 53px;
    }

    .contact_info_card {
        margin-bottom: 15px;
    }

    .contact_rgt_form {
        width: 100%;
        margin-top: 30px;
        max-width: 700px;
        margin: 0 auto 30px auto;
    }

    .contact_sec_new.cmn_gap {
        background-color: #f7fbfe;
        padding: 50px 0 200px 0;
    }

    .contact_info_card {
        padding: 37px 26px;
    }

    .form_submit_wrp .cmn_btn {
        padding: 17px 31px;
        font-size: 16px;
    }

    .feature_new_sec .join_lft {
        max-width: 100%;
    }

    .trusted_sec_new.cmn_gap {
        background-color: var(--white-color);
        padding: 50px 0 200px 0;
    }

    .tut_video_innr .play_btn {
        width: 50px;
        height: 50px;
        background-size: 25px;
    }

    .contact_flex_wrap {
        flex-direction: column-reverse;
    }

    .feature_name_wrap span {
        font-size: 15px;
    }

    .feature_plan_val {
        font-size: 15px;
    }

    .feature_plan_val img {
        max-width: 12px;
    }

    .feature_item_body p {
        font-size: 14px;
    }

    .play_btn {
        height: 65px;
        width: 65px;
        background-size: 30px;
    }

    /* 4/5/26 */
    .cmn_head_rgt {
        line-height: normal;
        text-align: center;
        margin-top: 20px;
    }

    .cmn_head_lft {
        text-align: center;
    }

    .cmn_head_lft p {
        max-width: 100%;
    }

    /* 4/5/26 */
    .tutorial_load_more_wrap .cmn_btn {
        padding: 10px 10px 10px 20px;
    }

}


@media (max-width: 767px) {

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    h1 {
        font-size: 35px;
    }

    h2,
    .h2-title {
        font-size: 25px;
    }

    h3 {
        font-size: 17px;
    }

    .big_para {
        font-size: 16px;
    }

    .cmn_btn {
        padding: 9px 16px;
        font-size: 13px;
    }

    .main-head.fixed .nav_right .cmn_btn {
        padding: 9px 16px;
        font-size: 13px;
    }

    .lang_dropdown .dropdown-toggle,
    .lang_dropdown .gt_selector {
        padding: 3px 12px;
        min-height: 33px;
    }
    .main-head .nav_right .cmn_btn {
        padding-left: 16px;
        padding-right: 16px;
    }
    .lang_dropdown .gt_selector {
        padding-right: 30px;
    }

    .why_cnt_left h3 {
        /* font-size: 28px; */
        margin-bottom: 15px;
    }

    .foot_btm_lft {
        width: 60%;
    }

    .foot_btm_rgt {
        width: 40%;
    }

    .map_image {
        max-width: 400px;
        max-height: 206px;
    }

    .btn_arw {
        width: 30px;
        height: 30px;
    }

    .btn_arw img {
        max-width: 9px;
    }

    .foot_top_rgt {
        width: 50%;
    }

    .main-head {
        padding: 22px 0;
    }

    .industry_cnt h3 a {
        font-size: 18px;
    }

    .inner_banner {
        padding: 110px 0;
    }

    .sidebar_col {
        width: 100%;
    }

    .blog_right_col {
        width: 100%;
    }

    .blog_sidebar {
        margin-bottom: 20px;
    }

    .industry_badge {
        width: 71px;
        height: 71px;
    }

    .indus_bud_innr {
        height: 52px;
        width: 52px;
    }

    .industry_cnt {
        padding: 50px 0 0;
    }

    .industry_badge {
        bottom: -33px;
    }

    .key_faq_icon {
        width: 33px;
        height: 33px;
    }

    .bld_font {
        font-size: 18px;
    }

    .video_col {
        width: 50%;
    }

    .load_more_wrap .cmn_btn {
        padding: 10px 10px 10px 20px;
    }

    .captcha_text {
        font-size: 17px;
        color: var(--para-color);
        max-width: 100%;
        margin-bottom: 15px;
    }

    .com_new_hdr {
        padding: 20px 0 10px !important;
    }

    .comparison_header {
        padding: 10px 0;
    }

    .comp_col_name {
        font-size: 20px;
    }

    .feature_comparison_new {
        margin-bottom: 10px;
    }

    #logoSlider {
        padding: 0 10px;
    }

    .com_new_hdr.comparison_header {
        top: 40px;
    }

    .main-head.fixed .lang_dropdown .dropdown-toggle,
    .main-head.fixed .lang_dropdown .gt_selector {
        padding: 3px 12px;
    }

    .main-head.fixed .lang_dropdown .gt_selector {
        padding-right: 30px;
    }

    .hm_testimonial_sec .quoter_img_wrap .quoter_img {
        transform: scale(1);
    }

    .hm_testimonial_sec .quoter_img_wrap .quoter_img {
        transform: scale(1) !important;
    }
    .customer_meta {
        flex-direction: column;
        width: 100%
    }
    .customer-meta-wrap {
        flex-direction: column;
    }
    .meta_item {
        margin-bottom: 15px;
        padding: 0;
    }
    .meta_wrap {
        max-width: 100%;
        margin: 0 auto;
    }
     .meta_item:not(:last-child):after {
        content: none;
    }

}

@media (max-width: 575px) {
    .navbar-brand {
        max-width: 130px;
    }

    .cmn_btn {
        padding: 10px 14px;
        font-size: 12px;
		line-height: 1.5;
    }

    .lang_dropdown .dropdown-toggle,
    .lang_dropdown .gt_selector {
        padding: 4px 12px;
    }

    .lang_dropdown .gt_selector {
        padding-right: 30px;
    }

    .nav_right .cmn_btn {
        margin-left: 6px;
    }

    .navbar-toggler {
        position: relative;
        /* width: 24px; */
    }

    h1 {
        font-size: 30px;
    }

    .banner-sec {
        min-height: 400px;
    }

    .feature_lft {
        width: 100%;
    }

    .feature_rgt {
        width: 100%;
    }

    .cmn_head_rgt p {
        max-width: 100%;
        margin-left: 0;
    }

    .ft_col {
        width: 100%;
    }

    .feature_head {
        margin-bottom: 10px;
    }

    h2,
    .h2-title {
        font-size: 24px;
    }

    .feature_sec {
        padding: 40px 0 0;
    }

    .why_para .bld_font {
        font-weight: 600;
        font-size: 16px;
    }

    .why_para {
        margin-bottom: 21px;
    }

    .why_sec .cmn_btn.btn_gradient {
        padding: 6px 7px 6px 15px;
    }

    .why_sec .resp-accordion {
        font-size: 16px !important;
    }

    .why_sec {
        padding: 40px 0;
    }

    .making_col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .customer_lft_col {
        width: 100%;
    }

    .customer_rgt_col {
        width: 100%;
    }

    .why_cnt_inner {
        padding: 40px 15px;
    }

    .why_rgt_image_one,
    .why_rgt_image_two {
        padding: 0 4px;
    }

    .why_cnt_right_wrapper {
        margin: 0 -4px;
    }

    .customer_rgt_col p {
        max-width: 100%;
        margin-left: auto;
        margin-top: 20px;
    }

    .quoter_info h3 {
        font-size: 16px;
    }

    .why_cnt_left h3 {
        /* font-size: 20px; */
        margin-bottom: 10px;
    }

    .why_para p {
        margin-bottom: 10px;
    }

    .industry_hd_lft {
        width: 100%;
    }

    .industry_hd_rgt {
        width: 100%;
    }

    .industry_hd_rgt p {
        max-width: 100%;
        margin-left: auto;
        margin-top: 20px;
    }

    .industries_head {
        margin-bottom: 27px;
    }

    .ind_crd_col {
        width: 100%;
    }

    .partner_hd_lft {
        width: 100%;
    }

    .partner_hd_rgt {
        width: 100%;
    }

    .partner_hd_rgt p {
        max-width: 100%;
        margin-left: auto;
        margin-top: 20px;
    }

    .partner_image_col {
        width: 50%;
    }

    .price_features a {
        font-size: 18px;
        color: #007AB9;
        text-decoration: underline !important;
    }

    .price_features p {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .foot_top_rgt {
        width: 50%;
    }

    .foot_links li a {
        color: var(--white-color);
        display: inline-block;
        font-size: 14px;
    }

    .btn_submit {
        padding: 0 40px;
        max-width: 147px;
    }

    .customer_sec .resp-accordion {
        font-size: 15px !important;
    }

    .foot_social li a {
        width: 37px;
        height: 37px;
    }

    .foot_logo {
        display: inline-block;
        max-width: 153px;
        margin-bottom: 18px;
    }

    .foot_top_wrapper {
        border-radius: 20px;
        padding: 30px 12px;
    }

    .map_image {
        max-width: 300px;
        max-height: 206px;
    }

    .price_amount h4 span {
        font-size: 20px;
    }

    .price_amount h4 {
        font-size: 20px;
    }

    .price_amount h4 .currency {
        font-size: 17px;
    }

    .price_row {
        margin: 0 -8px;
    }

    .price_col {
        padding: 0 8px;
    }

    .foot_btm_lft {
        width: 100%;
    }

    .foot_btm_rgt {
        width: 100%;
    }

    .foot_btm_rgt_cnt {
        display: flex;
        justify-content: center;
        margin-top: 13px;
    }

    .footer_btm p {
        text-align: center;
    }

    .bill_row {
        margin: 0 -8px;
    }

    .bill_card {
        padding: 0 8px;
    }

    .bill_one {
        background: #fff;
        padding: 20px 14px;
    }

    .bill_card p {
        font-size: 14px;
    }

    .play_btn {
        width: 50px !important;
        height: 50px !important;
    }

    .play_btn img {
        max-width: 24px;
    }

    .about_intro_lft {
        margin: 0 -10px;
    }

    .about_img_one,
    .about_img_two {
        flex: 1;
        padding: 0 10px;
    }

    .inner_banner {
        padding: 96px 0;
    }

    .blog_cat_list li a {
        font-size: 18px;
    }

    .blog_search .search_input_wrap {
        position: relative;
        margin-bottom: 32px;
    }

    .blog_col {
        width: 100%;
    }

    .bld_font {
        font-size: 17px;
    }

    .video_col {
        width: 100%;
    }

    .load_more_wrap {
        margin-top: 33px;
    }

    .form_input_p input {
        height: 52px;
    }

    .form_item {
        margin-bottom: 18px;
    }

    .form_submit_wrp {
        margin-top: 44px;
    }

    .feature_content.cmn_gap {
        padding: 30px 0 165px 0;
    }

    .future_vid_sec::before {
        height: 83%;
    }

    .main-head.fixed .navbar-brand {
        max-width: 106px;
    }

    .main-head {
        padding: 15px 0;
    }
    .login-signup-wrp {
        writing-mode: tb-rl;
        position: fixed;
        bottom: 180px;
        right: 0;
        transform: rotate(180deg);
        z-index: 99;

    }

    .main-head.fixed .nav_right .cmn_btn,
    .login-signup-wrp .cmn_btn {
        border-radius: 0 6px 6px 0;
        padding: 15px 8px !important;
        margin: 5px 0;
        font-size: 12px;
    }

}

@media (max-width: 479px) {

    .navbar-brand {
        max-width: 103px;
    }

    .price_col {
        width: 100%;
    }

    .foot_top_rgt {
        width: 100%;
    }

    .foot_col {
        width: 100%;
    }

    .footer_mid {
        padding: 100px 0 39px;
    }

    .foot_title {
        font-size: 20px;
        margin-bottom: 10px;
    }


    h1 {
        font-size: 30px;
    }

    .big_para {
        font-size: 15px;
    }

    .map_image {
        max-width: 250px;
        max-height: 206px;
    }

    .btn_book {
        padding: 4px 10px 4px 20px;
        font-size: 13px;
    }

    .customer_meta .meta_item:first-child .meta_wrap {
        padding-left: 0;
        max-width: 100%;
        margin-right: inherit;
        margin-left: inherit;
    }

    .customer_meta .meta_item:last-child .meta_wrap {
        max-width: 100%;
        width: 100%;
        margin-left: inherit;
        margin-right: inherit;
    }

    .why_sec .cmn_btn.btn_gradient {
        font-size: 14px;
    }

    .team_item {
        width: 100%;
    }

    .global_hd {
        max-width: 1169px;
        margin: 0 auto 8px auto;
    }

    .bill_card {
        width: 100%;
    }

    .making_card {
        padding: 24px 18px;
    }

    .making_icon img {
        max-width: 55px;
        max-height: 55px;
    }

    .foot_mid_one .foot_mid_cntnt {
        max-width: 100%;
    }

    .contact_info_card p,
    .contact_info_card p a {
        font-size: 15px;
    }

    .contact_info_head {
        font-size: 22px;
    }

    .contact_form_box {
        background: #fff;
        padding: 34px 18px;
    }

    .form_item label {
        display: block;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .captcha_text {
        font-size: 15px;
    }

    .form_input_p textarea {
        height: 100px;
    }

    .form_submit_wrp .cmn_btn {
        padding: 16px 26px;
        font-size: 14px;
    }

    .feature_item_header {
        padding: 15px 16px;
    }

    .feature_plan_val {
        font-size: 13px;
    }

    .comp_col_plan {
        font-size: 18px;
    }

    .comp_col_name {
        font-size: 18px;
    }

    .feature_arw {
        margin-right: 5px;
    }

    .play_btn {
        height: 60px;
        width: 60px;
        background-size: 25px;
    }

}

@media (max-width: 400px) {

    .about_img_one,
    .about_img_two {
        flex: inherit;
        padding: 0 10px;
        width: 100% !important;
    }

    .about_img_one {
        margin-bottom: 15px;
        /* height: 350px; */
    }

    .how_intro_wrapper .about_img_one {
        flex: 0 0 100%;
    }

    .how_intro_wrapper .about_img_two {
        flex: 0 0 100%;
    }

    .benefit_intro_sec .about_img_one {
        margin-top: 15px;
    }

    .comp_col_name {
        font-size: 18px;
    }

}

@media (max-width: 767px) {
    .privacy_policy_sec.cmn_gap {
        padding: 50px 0 200px 0;
    }

    .privacy_policy_wrap {
        border-radius: 12px;
    }

    .privacy_policy_intro,
    .privacy_policy_content {
        padding: 30px 22px;
    }

    .privacy_policy_intro span {
        font-size: 14px;
    }

    .privacy_policy_content h2 {
        font-size: 24px;
    }

    .privacy_policy_content h3 {
        font-size: 21px;
    }

    .privacy_policy_content p,
    .privacy_policy_content li {
        font-size: 16px;
    }

    .privacy_policy_content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .blog_details_banner.inner_banner {
        padding: 65px 0;
    }

    .blog_details_sec.cmn_gap {
        padding: 50px 0 200px 0;
    }

    .blog_details_featured img {
        height: 260px;
    }

    .blog_details_grid {
        display: block;
    }

    .blog_details_side {
        position: static;
        margin-bottom: 24px;
    }

    .blog_details_side_card ul {
        display: block;
    }

    .blog_details_side_card li {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid #eef4f8;
    }

    .blog_details_content {
        padding: 30px 22px;
    }

    .blog_details_content h2 {
        font-size: 24px;
    }

    .blog_details_content h3 {
        font-size: 21px;
    }

    .blog_details_content p,
    .blog_details_content li {
        font-size: 16px;
    }

    .blog_details_nav {
        grid-template-columns: 1fr;
    }

    .blog_details_nav_next {
        text-align: left;
    }

    .blog_details_related {
        margin-top: 50px;
    }

    .industry_details_banner.inner_banner {
        padding: 65px 0;
    }

    .industry_details_icon {
        width: 76px;
        height: 76px;
        margin-bottom: 18px;
    }

    .industry_details_icon img {
        max-width: 34px;
    }

    .industry_details_label {
        min-height: 32px;
        margin-bottom: 14px;
        padding: 7px 14px;
        font-size: 13px;
    }

    .industry_details_banner p {
        font-size: 17px;
    }

    .industry_details_sec.cmn_gap {
        padding: 50px 0 200px 0;
    }

    .industry_details_content_wrap {
        border-radius: 12px;
    }

    .industry_details_intro,
    .industry_details_content {
        padding: 30px 22px;
    }

    .industry_details_content h2 {
        font-size: 24px;
    }

    .industry_details_content h3 {
        font-size: 21px;
    }

    .industry_details_content p,
    .industry_details_content li {
        font-size: 16px;
    }

    .industry_details_cta {
        display: block;
        margin: 0 22px 30px;
        padding: 24px 22px;
    }

    .industry_details_cta h3 {
        margin-bottom: 18px;
        font-size: 22px;
    }

    .industry_details_related {
        margin-top: 50px;
    }
}



@media (max-width: 375px) {
    .banner-sec {
        min-height: 300px;
    }

    .partner_image_col {
        width: 100%;
    }

    .cta_title {
        font-size: 24px;
    }

    h1 {
        font-size: 28px;
    }



    .inner_banner {
        padding: 80px 0;
    }

    .how_intro_wrapper .about_img_one {
        flex: 0 0 100%;
    }

    .how_intro_wrapper .about_img_two {
        flex: 0 0 100%;
    }

    .future_vid_sec::before {
        height: 90%;
    }





}
