@charset "UTF-8";

@import url("fonts.css");
@import url("default.css");
@import url("responsive.css");
@import url("about-us.css");
@import url("contact-us.css");
@import url("service-detail.css");
@import url("blog-listing.css");
@import url("blog-detail.css");
@import url("service-listing.css");
@import url("service-detail-page.css");
@import url("dashboard.css");
@import url("pricing-page.css");
@import url("tracking.css");
@import url("career.css");





:root {
	--theme-font: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	--theme-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
	--theme-font: "Poppins", sans-serif;
	--theme-body-font-size: 1rem;
	--theme-body-font-weight: 400;
	--theme-body-line-height: 1.5;
	--theme-white-color: #ffffff;
    --theme-blue-color: #026cb6;
    --theme-blue-rgba: rgba(2, 107, 182, 1);
    --theme-btn-color: #0384d4;
    --theme-black-color: #000000;
    --theme-text-color: #333333;
    --theme-grey-color: #cacaca;
    --theme-light-grey-color: #f8f8f8;
}
body {
	margin: 0;
	font-family: var(--theme-font);
	font-size: var(--theme-body-font-size);
	font-weight: var(--theme-body-font-weight);
	line-height: var(--theme-body-line-height);
    color: var(--theme-text-color);
	text-align: left;
	background-color: var(--theme-white-color);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}
::selection {
    background-color: var(--theme-blue-color);
    color: var(--theme-white-color);
}
a,
button {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.container,
.container-fluid {
    /* --theme-gutter-x: 2rem; */
    --theme-gutter-x: 0;
    --theme-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--theme-gutter-x) * 0.5);
    padding-left: calc(var(--theme-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.row {
    /* --theme-gutter-x: 1.5rem; */
    --theme-gutter-x: 0;
    --theme-gutter-y: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--theme-gutter-y));
    margin-right: calc(-0.5 * var(--theme-gutter-x));
    margin-left: calc(-0.5 * var(--theme-gutter-x));
}



@media (min-width: 768px) {
    .container {
        padding-left: 5.29167vw;
        padding-right: 5.29167vw;
    }
    .row {
        --theme-gutter-x: 0rem;
    }
}
@media (min-width: 1200px) {
    .container {
        padding-left: 7.29167vw;
        padding-right: 7.29167vw;
    }
    .row {
        --theme-gutter-x: 0rem;
    }
}
@media (min-width: 1921px) {
    .container {
        max-width: 1638px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .row {
        margin-left: -12px;
        margin-right: -12px;
    }
}

.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}
.text-left {text-align: left;}
.text-right {text-align: right;}
.text-center {text-align: center;}
.d-none {display: none;}
.img-fluid {
    max-width: 100%;
    height: auto;
  }

  .form-field {
    display: block;
    width: 100%;
    padding: 0.9em 1.25em;
    font-weight: 700;
    line-height: 1.5;
    color: var(--theme-text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--theme-white-color);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .form-field {
      transition: none;
    }
  }
  .form-field:focus {
    color: var(--theme-text-color);
    /* background-color: var(--bs-body-bg); */
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  .form-field::-moz-placeholder {
    color: #929090;
    opacity: 1;
  }
  .form-field::placeholder {
    color: #929090;
    opacity: 1;
  }
  .form-field:disabled {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
  }

.theme-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    overflow: hidden;
    background-color: var(--theme-btn-color);
    padding: 0.536em 1.429em;
    font-weight: 600;
    border: 1px solid transparent;
}
.theme-btn span {
    z-index: 2;
    position: relative;
    color: var(--theme-white-color);
}
.theme-btn::before{
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--theme-text-color);
    transform: translateX(-100%);
    z-index: 1;
    transition: transform 350ms ease;
    -webkit-transition: transform 350ms ease;
    -moz-transition: transform 350ms ease;
    -ms-transition: transform 350ms ease;
    -o-transition: transform 350ms ease;
    border: 1px solid transparent;
  }

  
  .theme-btn:hover:before {
    transform: translateX(0);
    transition: transform 350ms ease;
    -webkit-transition: transform 350ms ease;
    -moz-transition: transform 350ms ease;
    -ms-transition: transform 350ms ease;
    -o-transition: transform 350ms ease;
}
.theme-btn:hover {
    background-color: var(--theme-text-color);
    color: var(--theme-white-color);
    border-color: var(--theme-text-color);
}
.theme-btn-link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--theme-white-color);
    font-weight: 600;
    letter-spacing: 0.28px;
}

/* navbar start */
.navbar {
    position: relative;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 9;
    width: 100%;
    padding: 13px 0;
    min-height: 7.8125vw;
    background: var(--theme-white-color);
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.10);
    -webkit-box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.10);
}
.navbar .row {
    align-items: center;
}
.header_logo {
    position: relative;
    display: inline-block;
    max-width: 7.29167vw;
    z-index: 2;
}
.nav_wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.nav_btn {
    width: 2.60417vw;
    height: 1.77083vw;
    margin-left: 2.60417vw;
    cursor: pointer;
    display: block;
    margin-top: -7px;
}
.menu {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menu > li {
    display: inline-block;
    /* padding: 10px; */
    margin-right: 6px;
}
.menu > li:nth-last-child(2) {
    margin-right: 0;
}
.menu > li > a {
    display: block;
    position: relative;
    padding: 0.833em 0.417em;
    font-weight: 500;
}
.menu > li > a:hover,.menu > li > a:focus {
    color: var(--theme-btn-color);
}
.menu > .has-dropdown {
    position: relative;
}
.nav_menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav_details {
    margin: 0;
    padding: 0;
    list-style: none;
}
.toggler {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    height: 1.97917vw;
    height: 1.77083vw;
    width: 2.60417vw;
    background-color: transparent;
    background-image: linear-gradient(to right, currentColor, currentColor);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 0.3125vw;
    padding: 0;
    outline: 0;
    border: 0;
    color: var(--theme-btn-color);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: .25s cubic-bezier(.17,.67,.89,1.4);
    transition-property: transform;
    will-change: transform;
}
.toggler::before, .toggler::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 0.3125vw;
    background: currentColor;
    transition: .25s;
    transition-property: transform, top;
    will-change: transform, top;
}
.toggler::before {
    top: 0;
}
.toggler::after {
    top: calc(100% - 0.3125vw);
}
.nav_btn .toggler.active {
    background-image: none;
    color: var(--theme-white-color);
}
.toggler.active::before,
.toggler.active::after{
    top: 50%;
}
.toggler.active::before {
    transform: translate3d(0,-50%,0) rotate3d(0,0,1,45deg);
}
.toggler.active::after {
    transform: translate3d(0,-50%,0) rotate3d(0,0,1,-45deg);
}

@media (min-width: 992px) {
    .menu > .has-dropdown {
        position: static;
    }
    .menu > .has-dropdown > a::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .185em;
        content: "";
        border-top: .25em solid;
        border-right: .25em solid transparent;
        border-bottom: 0;
        border-left: .25em solid transparent;
        transition: all 0.3s ease-out 0s;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
    }
    .menu > .has-dropdown:hover > a::after {
        transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
    }
    .menu > .has-dropdown:hover > a {
        color: var(--theme-btn-color);
    }
    .mega_menu_wrapper {
        display: block;
        position: absolute;
        top: 75%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 3.16667vw 0 3.64583vw;
        min-width: 50rem;
        height: auto;
        min-height: 250px;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        pointer-events: none;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: var(--theme-white-color);
        transition: all 0.3s ease-out 0s;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
        -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
        -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
        -o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
        -ms-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
    }
    .menu > .has-dropdown:hover .mega_menu_wrapper {
        z-index: 1;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
    ul.mega_menu {
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        column-gap: 7.8125vw;
        justify-content: space-between;
    }
    ul.mega_menu > li {
        display: inline-block;
    }
    ul.mega_menu > li:nth-child(1) {
        min-width: 14.0625vw;
        max-width: 14.0625vw;
    }
    ul.mega_menu > li:nth-child(2) {
        min-width: 15.625vw;
        max-width: 15.625vw;
    }
    ul.mega_menu > li:nth-child(3) {
        min-width: 15.10417vw;
        max-width: 15.10417vw;
    }
    ul.mega_menu > li:nth-child(4) {
        min-width: 14.0625vw;
        max-width: 14.0625vw;
    }
    ul.mega_menu > li > a {
        display: inline-block;
        color: var(--theme-btn-color);
        font-weight: 600;
        margin-bottom: 0.529em;
    }
    ul.mega_menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    ul.mega_menu ul li {
        margin-bottom: 0.25em;
    }
    ul.mega_menu ul li:last-child {
        margin-bottom: 0;
    }
    ul.mega_menu ul li a {
        display: inline-block;
        padding: .25em 0;
        color: var(--theme-black-color);
    }
    ul.mega_menu ul li a:hover, ul.mega_menu ul li a:focus {
        color: var(--theme-btn-color);
    }

    .menu > li.mobile_menu {
        position: fixed;
        right: 0;
        top: 0;
        min-width: 320px;
        width: 20.83333vw;
        max-height: 100%;
        /* height: 60%; */
        /*max-height: 840px;*/
        /* max-height: calc(100vh - 220px); */
        padding: 6.77083vw 1.5625vw 3.125vw;
        margin-right: 0;
        /* overflow-y: scroll; */
        visibility: hidden;
        opacity: 0;
        background-color: var(--theme-btn-color);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
}
    .menu > li.mobile_menu.active {
        visibility: visible;
        opacity: 1;
    }
    
    .nav_menu li {
        font-weight: 400;
        border-bottom: 1px solid #C1C1C1;
    }
    .nav_menu li:last-child {
        border: none;
    }
    .nav_menu li a {
        color: var(--theme-white-color);
        display: block;
        padding: 0.857em;
    }
    .nav_menu .call {
        width: 2.91667vw;
        height: 2.91667vw;
        display: inline-block;
        margin-right: 1.04167vw;
    }
    .nav_details {
        margin: 0 1.35417vw 0;
        padding: 1.04167vw 0 0;
        list-style: none;
        border-top: 1px dashed #C1C1C1;
    }
    .nav_details li {
        color: var(--theme-white-color);
        margin-bottom: 1em;
        font-weight: 600;
    }
    .nav_btn_m {
        display: none;
    }
    .has-dropdown .arrow-btn {
        display: none;
    }
}


@media (max-width: 991px) {
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        display: block;
        /* flex-wrap: wrap; */
        /* justify-content: flex-start; */
        visibility: hidden;
        opacity: 0;
        padding: 20px 0 40px;
        height: calc(100vh - 7.8125vw);
        min-height: 300px;
        overflow-y: scroll;
        background-color: var(--theme-btn-color);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
}
    .menu.active {
        visibility: visible;
        opacity: 1;
    }
    .menu > li {
        display: block;
        /* width: 100%; */
        color: var(--theme-white-color);
        margin: 0 20px;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .menu > li > a {
        padding: 15px;
        font-weight: 600;
    }
    .menu > li > a:hover, .menu > li > a:focus {
        color: var(--theme-white-color);
    }
    .nav_btn {
        display: none;
    }
    .nav_btn_m {
        /* display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; */
        display: block;
        cursor: pointer;
        width: 2.5rem;
        height: 2.1875rem;
        margin: 0;
    }
    ul.mega_menu {
        margin: 0 0 0 20px;
        padding: 0;
        list-style: none;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        column-gap: 7.8125vw;
        justify-content: space-between;
    }
    ul.mega_menu > li {
        display: block;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    ul.mega_menu > li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
    ul.mega_menu > li:last-child {
        border: none;
    }
    ul.mega_menu > li > a {
        padding: 15px;
        display: block;
    }
    ul.mega_menu > li.has-dropdown ul {
        /* display: none; */
    }
    li.has-dropdown > ul {
        display: none;
    }
    ul.mega_menu > li.has-dropdown.show ul {
        /* display: block; */
    }
    li.has-dropdown.show > ul {
        display: block;
    }
    ul.mega_menu ul {
        margin: 0 0 0 20px;
        padding: 0;
        list-style: none;
    }
    ul.mega_menu ul li {
        display: block;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    ul.mega_menu ul li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
    ul.mega_menu ul li:last-child {
        border: none;
    }
    ul.mega_menu ul li a {
        padding: 15px;
        display: block;
    }
    .mega_menu_wrapper {
        display: none;
    }
    .mega_menu_wrapper,
    .mega_menu ul {
        display: none;
    }
    .mega_menu_wrapper.show,
    .mega_menu ul.show {
        display: block;
    }
    .mega_menu_wrapper .container {
        --theme-gutter-x: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .nav_menu > li {
        display: block;
        /* width: 100%; */
        color: var(--theme-white-color);
        margin: 0px;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .nav_menu > li > a {
        padding: 15px;
        display: block;
        font-weight: 600;
    }
    .nav_menu > li > a > .call {
        width: 30px;
        display: inline-block;
        margin-right: 20px;
    }
    .nav_details {
        padding-bottom: 30px;
    }
    .nav_details > li {
        display: block;
        /* width: 100%; */
        color: var(--theme-white-color);
        margin: 0px;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .has-dropdown .arrow-btn {
        position: absolute;
        right: 0;
        top: 10px;
        display: block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease-in-out;
        -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;
    }
    .has-dropdown .arrow-btn svg {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transition: transform 300ms ease;
        -webkit-transition: transform 300ms ease;
        -moz-transition: transform 300ms ease;
        -ms-transition: transform 300ms ease;
        -o-transition: transform 300ms ease;
}
    .has-dropdown .arrow-btn.active svg {
        transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
}

    
}

@media (max-width: 1199px) {
    .nav_btn {
        width: 2.5rem;
        height: 2.1875rem;
        margin-top: 0;
    }
    .toggler {
        width: 2.5rem;
        height: 85%;
        background-size: 100% 5px;
    }
    .toggler::before, .toggler::after {
        height: 5px;
    }
    .toggler::after {
        top: calc(100% - 5px);
    }
   
}
@media (max-width: 991px) {
    .nav_btn_m .toggler.active {
        background-image: none;
        color: var(--theme-btn-color);
    }
    .nav_btn_m .toggler {
        height: 80%;
        background-size: 100% 4px;
        top: 5px;
    }
    .nav_btn_m .toggler::before, .nav_btn_m .toggler::after {
        height: 4px;
    }
    .menu > li:nth-last-child(2) {
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .header_logo {
        max-width: 80%;
    }
}

/* navbar end */


/* footer start */
.footer {
    position: relative;
    background-color: var(--theme-text-color);
    color: var(--theme-grey-color);
}
.footer p {
    margin-bottom: 0;
}
.footer hr {
    border-bottom: 1px solid #9F9E9E;
    margin: 0;
}
.footer_logo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    column-gap: 1.875vw;
}
.footer_logo a {
    max-width: 120px;
    display: block;
    width: 6.25vw;
}
.footer_top {
    padding-top: 3.90625vw;
    align-items: center;
}
.footer_middle {
    padding-top: 3.64583vw;
    padding-bottom: 3.38542vw;
}
.footer_bottom {
    padding-top: 2.34375vw;
    padding-bottom: 2.86458vw;
}
.footer_social {
    padding-left: 4.6875vw;
}
.footer_social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    column-gap: 2.60417vw;
}
.footer_social ul li {
    display: inline-block;
    /* width: 2.60417vw;
    height: 2.60417vw; */
}
.footer_social ul li a {
    display: block;
}
.footer_subscribe {
    padding-left: 4.6875vw;
}
.footer_subscribe .theme-btn {
    padding: 0.708em 1.833em;
    line-height: 1.42;
    margin-top: 1.25vw;
    color: var(--theme-white-color);
}
.footer_subscribe .theme-btn::before {
    background-color: transparent;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}
.footer_subscribe .theme-btn:hover {
    border: 1px solid var(--theme-btn-color);
}

.footer_info {
    position: relative;
}
.footer_info::before {
    content: "";
    position: absolute;
    top: 60%;
    right: 5%;
    width: 2px;
    height: 42%;
    background-color: #797979;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.footer_info_li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    column-gap: 1.14583vw;
    margin-bottom: 1.82292vw;
}
.footer_info_li:last-child {
    margin-bottom: 0;
}
.footer_info_li:first-child .li_text {
    max-width: 56%;
}
.footer_info_li:not(:first-child) {
    align-items: center;
}
.footer_info_li .li_icon {
    flex: 0 0 auto;
    width: 5.5455%;
}
.footer_terms {
    text-align: right;
}
.footer_terms a:last-child {
    margin-left: 1.5625vw;
}

.footer_heading {
    color: var(--theme-white-color);
    letter-spacing: 0.2px;
    margin-bottom: 1em;
}
.footer_nav {
    position: relative;
    padding-left: 3.90625vw;
}
.footer_nav::before {
    content: "";
    position: absolute;
    top: 53%;
    right: 5%;
    width: 2px;
    height: 38%;
    background-color: #797979;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.footer_links a {
    display: inline-block;
}
.footer_links ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer_links ul li {
    margin-bottom: 1.25em;
}
.footer_links ul li a {
    border-bottom: 1px solid transparent;
}
.footer_links ul li a:hover {
    border-color: var(--theme-light-grey-color);
}
.footer_links ul li:nth-child(4),.footer_links ul li:nth-child(4n + 4)  {
    margin-bottom: 0;
}
.footer_terms a {
    border-bottom: 1px solid transparent;
}
.footer_terms a:hover {
    border-color: var(--theme-light-grey-color);
}

@media (max-width: 1199px) {
    .footer_info_li:first-child .li_text {
        max-width: 65%;
    }
}
@media (max-width: 991px) {
    .footer_nav {
        padding-left: 10px;
    }
    .footer_social {
        padding-left: 10px;
    }
    .footer_subscribe {
        padding-left: 10px;
    }
}
@media (max-width: 767px) {
    .footer_top {
        padding-top: 50px;
    }
    .footer_logo {
        column-gap: 15px;
    }
    .footer_logo a {
        width: 100px;
    }
    .footer_social {
        padding-left: 0;
        padding-top: 30px;
    }
    .footer_social ul {
        justify-content: flex-start;
        column-gap: 20px;
    }
    .footer_social ul li a {
        width: 30px;
    }
    .footer_middle {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .footer_bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .footer_info_li:first-child .li_text {
        max-width: 100%;
    }
    .footer_info_li {
        column-gap: 15px;
        margin-bottom: 15px;
    }
    .footer_info_li .li_icon {
        width: 25px;
    }
    .footer_info::before {
        display: none;
    }
    .footer_nav {
        padding-left: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer_nav::before {
        display: none;
    }
    .footer_info {
        padding-bottom: 30px;
    }
    .footer_subscribe {
        padding-left: 0;
        padding-top: 30px;
    }
    .footer_subscribe .theme-btn {
        margin-top: 20px;
    }
    .footer_terms {
        padding-top: 20px;
        text-align: left;
    }
}
/* footer end */


/* home page banner start */
.section_banner {
    position: relative;
    min-height: 400px;
}
.header_bg_img {
    position: relative;
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    min-height: 46.875vw;
}
.header_bg_img::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, #FFF 94.52%, rgba(255, 255, 255, 0.00) 100%);
}
.section_banner .mobile_img {
    display: none;
}
.section_banner .header_text {
    padding-top: 5.20833vw;
    padding-bottom: 5.20833vw;
}
.header_text .title {
    font-weight: 400;
    line-height: 1.167em;
    margin-bottom: 0.5em;
}
.header_text .title span {
    color: var(--theme-blue-color);
    font-weight: 700;
}
.header_text .fs-24 {
    font-weight: 600;
    line-height: 36px;
    line-height: 1.5;
    max-width: 750px;
    margin-bottom: 1.5em;
}

.slider_wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 33.33333vw;
}
.slider_wrapper .slick-prev:before, .slider_wrapper .slick-next:before {
    display: none;
}
.slider_wrapper .slick-prev, .slider_wrapper .slick-next {
    height: auto;
}
.slider_wrapper .slick-prev svg, .slider_wrapper .slick-next svg {
    width: 0.9375vw;
    height: 1.875vw;
}
.slider_wrapper .slick-prev {
    left: -2.86458vw;
}
.slider_wrapper .slick-next {
    right: -2.86458vw;
}
.testimonial_slide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    z-index: 2;
    column-gap: 1.30208vw;
}
.testimonial_slide .profile {
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 5.46875vw;
    height: 5.46875vw;
    flex: 0 0 auto;
}
.slide_content p {
    margin-bottom: 0.8em;
    letter-spacing: 0.2px;
}

@media (max-width: 1199px) {
    .header_bg_img {
        min-height: 50.875vw;
    }
    .slider_wrapper .slick-prev svg, .slider_wrapper .slick-next svg {
        width: 12px;
        height: 24px;
    }
    .slider_wrapper {
        max-width: 36.33333vw;
    }
}

@media (max-width: 991px) {
    .header_bg_img {
        min-height: 60.875vw;
    }
}

@media (max-width: 767px) {
    .section_banner {
        padding-bottom: 0px;
        min-height: auto;
    }
    .section_banner .header_text {
        padding-bottom: 0px;
    }
    .header_bg_img {
        background-image: none !important;
    }
    .section_banner .mobile_img {
        /* display: block; */
        /* position: relative; */
    }
    .section_banner .mobile_img::before {
        content: "";
        position: absolute;
        width: 35%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        background: linear-gradient(90deg, rgb(255 255 255 / 90%) 94.52%, rgba(255, 255, 255, 0.00) 100%);
    }
    .slider_wrapper {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        display: none;
    }
    .testimonial_slide .profile {
        width: 50px;
        height: 50px;
    }
    .testimonial_slide {
        column-gap: 20px;
    }
    .slider_wrapper .slick-prev {
        left: -25px;
    }
    .slider_wrapper .slick-next {
        right: -25px;
    }
}
/* home page banner end */

/* RTI section start */
.rti_section {
    position: relative;
    padding-top: 7.8125vw;
    padding-bottom: 7.8125vw;
}
.rti_section .section_heading .fs-56 {
    margin-bottom: 0.982em;
}
.rti_wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    /* column-gap: 3.125vw; */
    margin-left: -1.5625vw;
    margin-right: -1.5625vw;
    row-gap: 2.5vw;
}
.rti_block {
    flex: 0 0 auto;
    padding-left: 1.5625vw;
    padding-right: 1.5625vw;
    width: calc(100% / 5);
}
.rti_tab_wrapper {
    margin-bottom: 3.38542vw;
}
.rti_tabs .rti_tab_list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 2px solid var(--theme-blue-color);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    column-gap: 1.25vw;
}
.rti_tab_list li {
    display: inline-block;
    width: calc((100% - 1.25vw * 2) / 4);
}

.rti_tab_list li a {
    --theme-blue-rgba-5: rgba(2, 107, 182, 0.5);
    --theme-blue-rgba-2: rgba(2, 107, 182, 0.2);
    display: block;
    position: relative;
    width: 20.41667vw;
    width: 20.19555vw;
    width: 100%;
    height: 6.4625vw;
    text-align: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 1.04167vw;
    justify-content: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="392" height="126" viewBox="0 0 392 126" fill="none"><path opacity="0.2" d="M139.626 40.3688L139.91 40.619H140.288H391V326H1V1H95.0228L139.626 40.3688Z" stroke="%23026CB6" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    background-size: 100% 100%;
}
.rti_tab_list li a span {
    color: var(--theme-blue-rgba-5);
    position: relative;
}
.rti_tab_list li a.active {
    color: var(--theme-white-color);
    font-weight: 700;
    opacity: 1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="392" height="126" viewBox="0 0 392 126" fill="none"><path d="M0 0H95.401L140.288 39.619H392V327H0V0Z" fill="%23026CB6"/></svg>');
    background-size: contain;
}
.rti_tab_list li a.active span {
    color: var(--theme-white-color);
    font-weight: 700;
    opacity: 1;
    z-index: 2;
}
.rti_tab {
    display: none;
}
.rti_tab.tab-active {
    display: block;
}
.rti_item {
    flex: 0 0 auto;
    height: 13.54167vw;
    padding: 1.5625vw 1.04167vw;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: #f8f8f8;
    -webkit-box-shadow: 0px 4px 23.2px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 4px 23.2px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 4px 23.2px 0px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 4px 23.2px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 23.2px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.rti_item .rti_img {
    width: 5.20833vw;
    height: 5.20833vw;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.rti_item .rti_content {
    margin-top: 0.857em;
    color: var(--theme-black-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.rti_item .theme-btn-link {
    margin-top: 0.625em;
    border-bottom: 1px solid #fff;
    visibility: hidden;
    opacity: 0;
    font-weight: 400;
}
.rti_item .rti_scroll {
    position: relative;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.rti_item:hover .rti_scroll {
    margin-top: -40%;
}
.rti_item:hover {
    background-color: var(--theme-btn-color);
}
.rti_item:hover .rti_content {
    color: var(--theme-white-color);
    font-weight: 700;
}
.rti_item:hover .rti_img {
    visibility: hidden;
    opacity: 0;
}
.rti_item:hover .theme-btn-link {
    visibility: visible;
    opacity: 1;
}
.rti_item.active {
    background-color: var(--theme-btn-color);
}
.rti_item.active .rti_content {
    color: var(--theme-white-color);
}
.rti_item.active .rti_content + .rti_content {
    margin-top: 0;
    font-style: italic;
    visibility: hidden;
    opacity: 0;
}
.rti_item.active:hover .rti_scroll {
    margin-top: -50%;
}
.rti_item.active:hover .rti_content {
    font-weight: 400;
}
.rti_item.active:hover .rti_content + .rti_content {
    visibility: visible;
    opacity: 1;
    font-weight: 400;
}

@media (max-width: 1199px) {
    .rti_tab_list li a {
        /* width: 21.89555vw; */
    }
}

@media (max-width: 991px) {
    .rti_tabs .rti_tab_list {
        display: block;
    }
    .rti_tab_list .slick-list {
        margin-left: -10px;
        margin-right: -10px;
    }
    .rti_tab_list .slick-slide {
        padding-left: 10px;
        padding-right: 10px;
    }
    .rti_tab_list .rti_tab_item {
        padding-bottom: 15px;
    }
    .rti_tab_list li {
        display: block;
    }
    .rti_tab_list li a {
        width: 100%;
        height: 9.0625vw;
    }
    .rti_tab_slider .slick-prev:before, .rti_tab_slider .slick-next:before {
        display: none;
    }
    .rti_tab_slider .slick-prev, .rti_tab_slider .slick-next {
        height: 36px;
        width: 36px;
        background-color: rgba(255, 255, 255, 0.7);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
        border-radius: 36px;
        -webkit-border-radius: 36px;
        -moz-border-radius: 36px;
        -ms-border-radius: 36px;
        -o-border-radius: 36px;
        z-index: 2;
}
    .rti_tab_slider .slick-prev svg, .rti_tab_slider .slick-next svg {
        width: 18px;
        height: auto;
    }
    .rti_tab_slider .slick-prev {
        left: -15px;
    }
    .rti_tab_slider .slick-next {
        right: -15px;
    }
    .rti_item {
        height: 16.54167vw;
        padding: 2.5625vw 1.04167vw;
    }
    .rti_item .rti_img {
        width: 4.20833vw;
        height: 4.20833vw;
    }
}
@media (max-width: 768px) {
    .rti_tab_list li a {
        width: 100%;
        height: 8.8625vw;
    }
}

@media (max-width: 767px) {
    .rti_tab_wrapper {
        margin-bottom: 40px;
    }
    .rti_tabs .rti_tab_list {
        flex-wrap: wrap;
    }
    .rti_tab_list li {
        display: block;
        width: 100%;
    }
    .rti_tab_list .rti_tab_item {
        padding-bottom: 25px;
    }
    .rti_tab_list li a {
        width: 100%;
        height: 29.0625vw;
    }
    .rti_tab_slider .slick-prev, .rti_tab_slider .slick-next {
        height: 30px;
        width: 30px;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
}
    .rti_tab_slider .slick-prev svg, .rti_tab_slider .slick-next svg {
        width: 12px;
        height: auto;
    }
    .rti_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .rti_wrapper {
        row-gap: 30px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .rti_block {
        width: calc(100% / 2);
        padding-left: 15px;
        padding-right: 15px;
    }
    .rti_item {
        height: 170px;
        padding: 15px;
    }
    .rti_item .rti_img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 360px) {
    .rti_item .rti_img {
        width: 50px;
        height: 50px;
    }
}

/* RTI section end */

/* process section start */
.process_section {
    position: relative;
    padding-top: 0;
    padding-bottom: 4.6875vw;
}
.process_section .row:nth-child(2) {
    --theme-gutter-x: 2.08333vw;
}
.process_section .process_row > *:not(:first-child) {
    margin-top: 2.60417vw;
}
.process_section .process_row > *:not(:first-child) + * {
    margin-top: 5.20833vw;
}
.process_section .section_heading .fs-56 {
    margin-bottom: 0.982em;
}
.process_section .know-more {
    text-align: right;
}
.process_section p {
    margin-bottom: 0;
}
.process_flow {
    --theme-blue-rgba: rgba(2, 107, 182, 0.2);
    padding: 1.5625vw 2.60417vw 4.6875vw;
    background-color: var(--theme-blue-rgba);
    -webkit-clip-path: polygon(0 0, 24% 0, 37% 12%, 100% 12%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 24% 0, 37% 12%, 100% 12%, 100% 100%, 0 100%);
}
.process_section .process_row > *:not(:first-child) .process_flow {
    --theme-blue-rgba: rgba(2, 107, 182, 0.3);
}
.process_section .process_row > *:not(:first-child) + * .process_flow {
    --theme-blue-rgba: rgba(2, 107, 182, 0.4);
}
.process_icon {
    width: 3.33333vw;
    height: 3.33333vw;
}
.process_title {
    margin-top: 0.833em;
    margin-bottom: 0.833em;
}

@media (max-width: 1199px) {
    .process_section .process_row > *:not(:first-child) {
        margin-top: 35px;
    }
    .process_section .process_row > *:not(:first-child) + * {
        margin-top: 70px;
    }
}

@media (max-width: 991px) {
    .process_icon {
        width: 4.33333vw;
        height: 4.33333vw;
    }
}

@media (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
    .process_section .process_row > *:not(:first-child) {
        margin-top: 38px;
    }
    .process_section .process_row > *:not(:first-child) + * {
        margin-top: 76px;
    }
}

@media (max-width: 767px) {
    .process_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .process_section .know-more {
        text-align: left;
        margin-bottom: 20px;
    }
    .process_icon {
        width: 50px;
        height: 50px;
    }
    .process_flow {
        padding: 20px 30px 50px;
    }
    .process_section .process_row > *:not(:first-child) {
        margin-top: 0;
    }
    .process_section .process_row > *:not(:first-child) + * {
        margin-top: 0;
    }
    .process_flow {
        margin-top: 30px;
    }
}
/* process section end */


/* blog section start */
.blog_section {
    position: relative;
    background-color: var(--theme-light-grey-color);
    padding-top: 4.16667vw;
    padding-bottom: 3.64583vw;
}
.blog_section .row {
    --theme-gutter-x: 1.04167vw;
}
.blog_item_wrapper {
    position: relative;
}
.blog_section .section_heading .fs-56 {
    margin-bottom: 0.982em;
}
.blog_item {
    position: relative;
    min-height: 24.16667vw;
    max-height: 24.16667vw;
}

.blog_item .blog_img {
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.blog_area {
    --theme-blue-rgba: rgba(2, 107, 182, 0.7);
    background-color: var(--theme-blue-rgba);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    position: absolute;
    z-index: 1;
    bottom: -60px;
    left: 1.04167vw;
    right: 1.04167vw;
    color: var(--theme-white-color);
    padding: 1.04167vw 1.45833vw 1.5625vw;
    position: relative;
    top: -11.45833vw;
    width: 90%;
    width: calc(100% - 2*1.04167vw);
    /* margin-left: auto;
    margin-right: auto; */
    bottom: auto;
    -webkit-clip-path: polygon(0 0, 32% 0, 40% 17%, 100% 17%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 32% 0, 40% 17%, 100% 17%, 100% 100%, 0 100%);
}
.blog_date {
    margin-bottom: 2em;
    text-transform: uppercase;
}
.blog_area .blog_text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    min-height: 5.72917vw;
}
.blog_area .theme-btn-link {
    margin-top: 1.429em;
    text-transform: capitalize;
}
.blog_area p {
    margin-bottom: 0;
}
.blog_cta {
    text-align: center;
    margin-top: 3.38542vw;
}
.blog_cta .theme-btn {
    text-transform: capitalize;
}




/* modal login css start */
.modal_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    display: none;
}
.modal_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}
.modal_login_wrap {
    position: absolute;
    position: fixed;
    z-index: 11;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 100%;
    max-width: 460px;
    overflow-y: auto;
    max-height: 100%;
}
.modal_login {
    background-color: var(--theme-btn-color);
    padding: 1.875vw 1.66667vw;
}
.modal_header {
    position: relative;
}
.modal_header .heading {
    font-size: 1.45833vw;
    text-transform: uppercase;
    color: var(--theme-white-color);
    text-align: center;
    font-weight: 400;
    padding-bottom: 0.571em;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.modal_header .close {
    border: none;
    box-shadow: none;
    background: none;
    padding: 0;
    position: absolute;
    top: -5px;
    right: 0;
}
.modal_header .close img {
    width: 1.875vw;
    height: 1.875vw;
}
.modal_body {
    position: relative;
    padding: 1.5625vw 0 0;
}
.modal_body .theme-btn {
    justify-content: center;
    font-size: 1.04167vw;
    font-weight: 400;
    background-color: #F8F8F8;
}
.modal_body .theme-btn:hover {
    border-color: transparent;
}
.modal_body .theme-btn::before {
    display: none;
}
.modal_action_top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.5625vw;
}
.modal_action_top .theme-btn.google {
    background-color: var(--theme-white-color);
    color: var(--theme-btn-color);
    font-size: 1.04167vw;
    font-weight: 700;
    width: 100%;
    align-items: center;
}
.modal_action_top .theme-btn.google img {
    width: 2.08333vw;
    height: 2.08333vw;
    margin-right: 1.25vw;
}
.modal_action_top .theme-btn.guest {
    background-color: transparent;
    color: var(--theme-white-color);
    font-size: 1.04167vw;
    font-weight: 400;
    width: 100%;
    align-items: center;
    border: 2px solid var(--theme-white-color);
}
.modal_action_top .theme-btn.guest img {
    width: 2.08333vw;
    height: 2.08333vw;
    margin-right: 1.25vw;
}
.modal_action_bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    column-gap: 14px;
}
.modal_action_bottom .theme-btn {
    border: 2px solid rgba(51, 51, 51, 0.50);
    color: rgba(0, 0, 0, 0.50);
    flex: 0 0 auto;
    width: calc((100% - 14px) / 2 );
}
.modal_action_bottom .theme-btn:hover {
    border: 2px solid rgba(51, 51, 51, 0.50);
}
.modal_content_top {
    margin-top: 1.82292vw;
    margin-bottom: 1.82292vw;
}
.modal_content_top,
.modal_content_top p {
    font-size: 1.25vw;
    text-align: center;
    color: var(--theme-white-color);
    text-transform: uppercase;  
}
.modal_content_top p {
    margin-bottom: 0;
}
.modal_content_bottom {
    margin-top: 1.25vw;
}
.modal_content_bottom,
.modal_content_bottom p {
    font-size: 1.04167vw;
    text-align: center;
    color: var(--theme-white-color);
}
.modal_content_bottom p {
    margin-bottom: 0;
}
.modal_body .form_item {
    margin-bottom: 0.58333vw;
    position: relative;
    width: calc((100% - 2.1875vw) / 2);
}
.modal_body .form_item label {
    font-size: 1.04167vw;
    display: inline-block;
    margin-bottom: 0.5em;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1;
}
.modal_body .form_item .form_field {
    display: block;
    width: 100%;
    padding: 0.6em 1em;
    font-size: 1.04167vw;
    font-weight: 400;
    line-height: 1.2;
    color: var(--theme-text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--theme-white-color);
    background-clip: padding-box;
    border: 1px solid rgba(3, 132, 212, 0.50);
    background-color: rgba(255, 255, 255, 0.93);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-shadow: 0px 14px 34px 0px rgba(32, 104, 246, 0.20);
    backdrop-filter: blur(25px);
}
.modal_body .form_item .form_field::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.45);
}
.modal_body .form_item .form_field:-moz-placeholder {
    color: rgba(51, 51, 51, 0.45);
}
.modal_body .form_item .form_field::-moz-placeholder {
    color: rgba(51, 51, 51, 0.45);
}
.modal_body .form_item .form_field:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.45);
}
.modal_body .form_item .form-error-list {
    color: #da0000;
    margin-top: 5px;
    display: inline-block;
    font-weight: 500;
    font-size: 0.9375vw;
    line-height: 1;
}

/* login modal start */
.login .modal_body .form_item {
    width: 100%;
}
.login .modal_body .form_item label {
    color: var(--theme-white-color);
}
.login .modal_body .forgot_pwd {
    text-align: right;
    margin-bottom: 1.875vw;
}
.login .modal_body .forgot_pwd .theme-btn-link {
    font-size: 1.04167vw;
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.login .modal_action_bottom .login-btn {
    background-color: var(--theme-text-color);
    color: var(--theme-white-color);
    border-color: var(--theme-text-color);
}
/* login modal end */

/* forgot password modal start */
.forgot_password .modal_body .form_item {
    width: 100%;
}
.forgot_password .modal_body .form_item label {
    color: var(--theme-white-color);
}
.forgot_password .modal_action_bottom .register-btn {
    background-color: var(--theme-text-color);
    color: var(--theme-white-color);
    border-color: var(--theme-text-color);
}
.forgot_password .modal_content_bottom,
.forgot_password .modal_content_bottom p {
    text-align: left;
    margin-top: 0;
    margin-bottom: 30px;
}
/* lawyer forgot password */
.lawyer-modal_wrapper .modal_action_bottom .theme-btn {
    /* width: auto; */
}
/* forgot password modal end */

/* registration modal start */
.register .modal_body .form_item {
    width: 100%;
}
.register .modal_body .form_item label {
    color: var(--theme-white-color);
}
.or-seperator {
    position: relative;
    text-align: center;
}
.or-seperator span {
    position: relative;
    display: inline-block;
    background-color: var(--theme-btn-color);
    font-size: 16px;
    padding: 0 24px;
    color: var(--theme-white-color);
    z-index: 1;
}
.or-seperator::before,.or-seperator::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.50);;
}
.or-seperator::before {
    left: 0;
    width: 50%;
}
.or-seperator::after {
    right: 0;
    width: 50%;
}
.register .modal_action_bottom .register-btn {
    background-color: var(--theme-text-color);
    color: var(--theme-white-color);
    border-color: var(--theme-text-color);
}
.register .modal_action_top {
    margin-top: 1.2625vw;
    margin-bottom: 1.275vw;
}
.register .modal_action_bottom .register-btn.update-pwd {
    width: auto;
}
/* registration modal end */

@media (max-width: 1199px) {
    .modal_login {
        padding: 24px;
    }
    .modal_header .heading {
        font-size: 20px;
    }
    .modal_header .close img {
        width: 24px;
        height: 24px;
    }
    .modal_body {
        padding-top: 20px;
    }
    .modal_body .theme-btn {
        font-size: 16px;
    }
    .modal_action_top {
        row-gap: 20px;
    }
    .modal_action_top .theme-btn.google {
        font-size: 16px;
    }
    .modal_action_top .theme-btn.guest {
        font-size: 16px;
    }
    .modal_action_top .theme-btn.google img,
    .modal_action_top .theme-btn.guest img {
        width: 20px;
        height: 20px;
        margin-right: 15px;
    }
    .modal_content_top {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .modal_content_top,
    .modal_content_top p {
        font-size: 18px;
    }
    .modal_content_bottom {
        margin-top: 15px;
    }
    .modal_content_bottom,
    .modal_content_bottom p {
        font-size: 16px;
    }
    .modal_body .form_item label {
        font-size: 16px;
    }
    .modal_body .form_item .form_field {
        font-size: 16px;
    }
    .modal_body .form_item {
        margin-bottom: 20px;
    }
    .modal_body .form_item .form-error-list {
        font-size: 14px;
    }
    .login .modal_body .forgot_pwd {
        margin-bottom: 20px;
    }
    .login .modal_body .forgot_pwd .theme-btn-link {
        font-size: 14px;
    }
    .register .modal_action_top {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .modal_login_wrap {
        width: 90%;
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

/* modal login css end */

@media (max-width: 1199px) {
    .blog_cta {
        margin-top: 5.38542vw;
    }
}
@media (max-width: 991px) {
    .blog_cta {
        margin-top: 10.38542vw;
    }
    .blog_area {
        -webkit-clip-path: polygon(0 0, 50% 0, 60% 17%, 100% 17%, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 50% 0, 60% 17%, 100% 17%, 100% 100%, 0 100%);
    }
}
@media (max-width: 767px) {
    .blog_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .blog_area {
        /* top: -170px; */
        position: absolute;
        top: 58%;
        padding: 15px 15px 30px;
        -webkit-clip-path: polygon(0 0, 42% 0, 50% 17%, 100% 17%, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 42% 0, 50% 17%, 100% 17%, 100% 100%, 0 100%);
    }
    .blog_item {
        max-height: none;
        min-height: auto;
        margin-bottom: 180px;
    }
    .blog_section .row [class*="col-"]:last-child .blog_item {
        margin-bottom: 0;
    }
    .blog_cta {
        margin-top: 185px;
    }
    .blog_area .blog_text {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .blog_area {
        -webkit-clip-path: polygon(0 0, 36% 0, 45% 17%, 100% 17%, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 36% 0, 45% 17%, 100% 17%, 100% 100%, 0 100%);
    }
}
/* blog section end */

/* cta section start */
.cta_section {
    position: relative;
    
}
.cta_section .cta_bg {
    position: relative;
    padding-top: 3.90625vw;
    padding-bottom: 3.90625vw;
}
.cta_section .cta_bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(2, 107, 182, 0.382);
    background: linear-gradient(90deg, rgba(3, 132, 212, 0.50) 0%, rgba(3, 132, 212, 0.50) 82.66%);
}
.cta_section .cta_text {
    position: relative;
    z-index: 2;
}
.cta_section .cta_text .theme-btn {
    background-color: transparent;
    border: 1px solid var(--theme-white-color);
}
.cta_section .cta_text .theme-btn:hover {
    border-color: transparent;
}
.cta_section .section_heading {
    max-width: 46.875vw;
}
.cta_section .section_heading .fs-56 {
    text-transform: capitalize;
    margin-bottom: 0.804em;
    color: var(--theme-white-color);
}
@media (max-width: 767px) {
    .cta_section .cta_bg {
        padding-top: 50px;
        padding-bottom: 50px;
        background-position: 85% 66%;
    }
    .cta_section .section_heading {
        max-width: 100%;
    }
}
@media (min-width: 1920px) {
    .cta_section .cta_bg {
        padding-top: 4.6875rem;
        padding-bottom: 4.6875rem;
    }
}
/* cta section end */


#edit-request-modal .form_action {
    justify-content: center !important;
    padding-top: 14px;
}



/* new changes css */
.desktop-rti_item {
    display: block;
}
.mobile-rti_item {
    display: none;
}
