/* webfonts */


@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf');
	font-weight: 400;
  	font-style: normal;
}

@font-face {
    font-family: 'Poppins-Thin';
    src: url('../fonts/Poppins-Thin.ttf');
	font-weight: 300;
  	font-style: normal;
}

@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/Poppins-Light.ttf');
	font-weight: 200;
  	font-style: normal;
}

@font-face {
    font-family: 'Poppins-ExtraLight';
    src: url('../fonts/Poppins-ExtraLight.ttf');
	font-weight: 100;
  	font-style: normal;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf');
	font-weight: 500;
  	font-style: normal;
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.ttf');
	font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.ttf');
	font-weight: 700;
  	font-style: normal;
}

@font-face {
    font-family: 'Poppins-ExtraBold';
    src: url('../fonts/Poppins-ExtraBold.ttf');
	font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
	font-weight: 900;
    font-style: normal;
}/* Use ONE family name for every weight */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200; /* ExtraLight */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300; /* Light */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400; /* Regular */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500; /* Medium */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800; /* ExtraBold */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900; /* Black */
  font-style: normal;
  font-display: swap;
}

/* Optional: Thin (100) if you have it */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.ttf") format("truetype");
  font-weight: 100; /* Thin */
  font-style: normal;
  font-display: swap;
}




/* webfonts end */

:root {
    --primary-color: #DC4E20;
    --secondary-color: #012B55;
    --border-color: #758392;
    --text-color: #150D22;
    --bg-color: #EDF0F3;
    --font: 'Poppins-Regular';
    --font-thin: 'Poppins-Thin';
    --font-light: 'Poppins-Light';
    --font-extralight: 'Poppins-ExtraLight';
    --font-medium: 'Poppins-Medium';
    --font-semibold: 'Poppins-SemiBold';
    --font-bold: 'Poppins-Bold';
    --font-extrabold: 'Poppins-ExtraBold';
}

html {
    margin: 0;
	font-synthesis: none;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    overflow-x: hidden;
    color: var(--text-color);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    white-space: normal;
    word-break: break-word;
    font-family: var(--font-bold);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3,
.h3 {
    font-size: 40px;
}

h4,
.h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

strong, b {
	font-family: "Poppins";
	font-weight: 600;
}

a,
p,
button,
span {
    white-space: normal;
    word-break: break-word;
}

a {
    text-decoration: none !important;
}

a:focus-visible {
    outline: transparent;
}

.page-link:focus {
    box-shadow: none;
}

p {
    font-size: 16px;
    margin: 0;
    letter-spacing: -0.015em;
}

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

.primary-color {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: 16px;
    min-height: 51px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    font-family: var(--font-semibold);
    font-size: 16px;
    transition: all 0.5s;
}

.roung-btn {
    width: 48px;
    max-width: 48px;
    max-height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    min-height: 48px;
}

button {
    transition: all 0.5s;
    cursor: pointer;
    border: none;
}

button:focus {
    box-shadow: none !important;
    outline: transparent;
}

.desktop_section {
    display: block;
}

.quote-form {
    display: none;
}

.form-control:focus,
input {
    outline: 0;
    box-shadow: none !important;
    color: inherit;
    border-color: #0D6CFF;
}

.form-select:focus {
    border-color: #0D6CFF;
    box-shadow: none;
}

.btn.focus,
.btn:focus {
    box-shadow: 0 0 0 0.2rem rgb(245 49 99 / 20%);
}

input [type="checkbox"]:focus {
    box-shadow: none;
}

.form-control::placeholder {
    font-size: 14px;
    color: #727272;
    font-family: var(--font-medium);
}

img {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: #CECECE;
}

::-webkit-scrollbar-track {
    background-color: #F7F7F7;
    border-radius: 100px;
}

.form-control::placeholder {
    color: hsl(0deg 0% 0% / 25%);
}

.error {
    color: red;
    font-size: 12px;
}

.mobile-head {
    display: none;
}

/*==============================================
                Header Css Start
=================================================*/
header.cust-header {
    padding: 23px 0;
    position: relative;
    z-index: 999;
    background: #fff;
    position: sticky;
    top: 0;
    width: 100%;
}

.logo a {
    display: inline-flex;
}

header.cust-header.fixed {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
}

header.cust-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.landing-page .navbar > ul {
	gap: 28px;
	font-weight: 500;
}

.landing-page .navbar > ul > li:last-child {
	padding-left: 28px;
    border-left: 1px solid #A4A4A4;
}

.navbar ul li a {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.015em;
    text-align: left;
    font-family: var(--font-medium);
	font-family: 'Poppins';
}

.country-switcher details {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px;
    gap: 4px;
    width: 54px;
    background-color: #FFF5EB;
    border-radius: 6px;
    border: none;
    cursor: initial;
}
.help-center-menu .drop-down-show li a{
    padding: 13px 30px;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
}

.landing-page .help-center-menu .drop-down-show li a, .landing-page .drop-down-show ul li a  {
    font-family: 'Poppins';
	font-weight: 500;
}

.country-switcher .drop-down-show {
    background-color: #FFF5EB;
    border-radius: 6px;
    border: none;
    left: 0;
    width: 100%;
}

.video_popup {
    overflow: hidden;
}

.country-switcher {
    position: relative;
}

.country-switcher .drop-down-show ul li a {
    gap: 0;
}

.country-switcher .drop-down-show ul li a p {
    padding: 0 0 0 5px;
}

.country-switcher .drop-down-show ul li {
    border: none;
}

.country-switcher .drop-down-show ul {
    padding: 5px;
}

.logo {
    display: flex;
}


.drop-down-show {
    position: absolute;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(25, 25, 25, 0.08);
    box-shadow: 0px 24px 48px rgba(0, 0, 0, 0.05);
    max-width: 279px;
    overflow: hidden;
}

.landing-page .drop-down-show {
	border: 1px solid #fff;
	box-shadow: none;
}

.drop-down-show ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.drop-down-show ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    font-size: 12px;
    line-height: 18px;
    font-family: var(--font-semibold);
    text-transform: uppercase;
}

.drop-down-show ul li a p {
    padding: 0 10px 0 10px;
    font-size: 12px;
    line-height: 18px;
    font-family: var(--font-semibold);
    text-transform: uppercase;
}

.drop-down-show ul li {
    border-bottom: 1px solid #E5E5E5;
    width: 100%;
}

.landing-page .drop-down-show ul li {
	border-bottom: 1px solid #012B55;
}

.landing-page .drop-down-show > ul {
	padding-top: 29px;
}

.drop-down-show ul li:last-child {
    border: none;
}

.get-quote-btn a.primary-color {
    color: #fff;
    padding: 10px 20px;
}

.sticky-block {
    position: sticky !important;
    top: 116px;
}

.navbar ul details summary {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.015em;
    text-align: left;
    font-family: var(--font-medium);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.hamburger-lines {
    display: none !important;
    height: 22px;
    width: 29px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


.hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--text-color);
    transition: all 0.2s ease-in-out;
}

/*----------end css ------------*/

/*==============================================
                home Css Start
================================================*/
.homebanner-setion {
    margin-top: 40px;
}

.home-main-content-section {
    height: 480px;
    background-image: url(../images/banner.png);
    border-radius: 48px;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    padding: 64px 20px 20px;
}

.home-contant-row {
    text-align: center;
}

.home-contant-row h1 {
    text-align: center;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height: 90%;
}

.home-contant-row h1 span {
    display: block;
    color: var(--secondary-color);
}

.home-contant-row p {
    text-align: center;
    letter-spacing: -0.015em;
    line-height: 150%;
    color: var(--secondary-color);
    margin-top: 4px;
}

.home-get-quote-form-section {
    background-color: #FFFFFF;
    border: 1px solid rgba(25, 25, 25, 0.08);
    box-shadow: 0px 24px 48px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 24px 36px;
    max-width: 92%;
    margin: 0 auto;
    margin-top: -64px;
}


.home-get-quote-form-section .row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.form-outline {
    width: 100%;
    margin: 0 0 24px;
}

span.icon-down {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
}

.formfield {
    position: relative;
}

.form-btn {
    width: auto;
    min-width: 144px;
    padding-top: 20px;
}

.form-outline label {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-semibold);
    letter-spacing: -0.015em;
    margin: 0 0 5px;
}

.form-outline .form-control {
    background-color: #EDF0F3;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    border: none;
    font-size: 14px;
    line-height: 21px;
    font-family: var(--font-medium);
}

.form-btn button.primary-color {
    width: 100%;
}

.form-outline select.form-control {
    appearance: none;
}

/*----------end css ------------*/

/*==============================================
            home secend section Css Start
================================================*/

.spacing {
    padding: 120px 0;
}

.heding {
    text-align: center;
}

.heding h3 {
    text-align: center;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--secondary-color);
    line-height: 100%;
}

.heding h3 span {
    color: var(--primary-color);
}

.we-keep-moving-section .keep-moving-video-sec {
    margin-top: 64px;
}

.keep-moving-video-sec {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.video-section-left-side {
    width: 100%;
    position: relative;
    border-radius: 40px;
    cursor: pointer;
}

.keep-content-right-side {
    width: 100%;
}

.keep-content-right-side ul {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 10px;
}

.keep-content-right-side p {
    margin: 0 0 20px;
    line-height: 150%;
}

.video-section-left-side img {
    border-radius: 40px;
    width: 100%;
    display: flex;
}

.video-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
}


/*----------end css ------------*/


/*==============================================
        home our service section Css Start
================================================*/
.bg-color {
    background-color: var(--bg-color);
}
.our-services-section h3{
    text-align: center;
    text-transform: uppercase;
}
.our-service-row {
    display: flex;
    margin: 50px 0 -17px;
    flex-wrap: wrap;
}

.service-content-column {
    width: 33.333%;
    padding: 17px;
    cursor: pointer;
}

.service-title-with-img {
    background-color: var(--secondary-color);
    border-radius: 18px;
    overflow: hidden;
    min-height: 270px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
}

.service-heading h3 {
    color: var(--secondary-color);
    line-height: 40px;
}

.service-heading h3 span {
    color: var(--primary-color);
    line-height: 40px;
    display: inline-flex;
}

.service-heading p {
    line-height: 150%;
    max-width: 950px;
    margin: 40px auto;
}

.service-heading a.primary-color {
    font-size: 12px;
    min-height: 37px;
    border-radius: 12px;
}

.service-title-with-img span {
    color: #fff;
    display: block;
    line-height: 14px;
    font-size: 14px;
    margin: 0 0 12px;
}

.service-title-with-img h6 {
    color: #fff;
    text-transform: uppercase;
    line-height: 20px;
    position: relative;
}
.service-title-with-img h6 a {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
}
.service-title-with-img img {
    width: 100%;
    display: flex;
    object-fit: contain;
}

.service-title {
    padding: 32px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.service-title p {
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    padding-top: 16px;
    opacity: 0;
    transition: 0.5s;
}

.service-title a {
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-semibold);
    position: absolute;
    right: 32px;
    bottom: 32px;
    opacity: 0;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-title:hover {
    background-color: rgb(220 78 32 / 80%);
}

.service-title:hover p,
.service-title:hover a {
    opacity: 1;
}


/*----------end css ------------*/


/*==============================================
        home get a quote section Css Start
================================================*/

.get-quote-form {
    display: flex;
    background-color: var(--secondary-color);
    box-shadow: 0px 24px 48px rgba(0, 0, 0, 0.05);
    border-radius: 48px;
    padding: 48px;
}

.get-quote-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.get-quote-title {
    width: 40%;
}

.get-quote-form-colum {
    width: 60%;
}

.get-quote-form-colum .row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.get-quote-form-colum .form-outline.form-select .wpcf7-select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 5.5L0 0.5H10L5 5.5Z' fill='%23fff'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 0.8em;
	background-position-x: 96%;
	background-position-y: 49%;
}

.get-quote-form-colum .row.row-1-2 .form-outline,
.get-quote-form-colum .row.row-2-1 .form-outline,
.get-quote-form-colum .row.row-1-2 .form-btn,
.get-quote-form-colum .row.row-2-1 .form-btn {
	flex: 1;
}

.get-quote-form-colum .row.row-1-2 .form-outline.form-outline-2,
.get-quote-form-colum .row.row-2-1 .form-outline.form-outline-2 {
	flex: 2;
}

.get-quote-form-colum .form-outline label {
    color: #fff;
}

.get-quote-title h2 {
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
}

.get-quote-title p {
    line-height: 24px;
    color: #fff;
    margin: 20px 0 0;
}

.btn_close {
    display: none;
}

.get-quote-form-colum .form-outline .form-control {
    background-color: #2f4b6f;
    color: #fff;
}

.get-quote-form-colum .form-outline .form-control::placeholder {
    color: #fff;
    opacity: 0.5;
}

.get-quote-form-colum span.icon-down svg path {
    fill: #fff;
}

/*==============================================
                Testimonail Css Start
================================================*/

.testimonail-slider {
    position: relative;
    overflow: hidden;
}

.testimonail-slider-box {
    display: grid;
    grid-template-columns: 288px 1fr;
    gap: 48px;
    align-items: center;
    padding-left: 100px;
    padding-right: 100px;
}

.testimonial-rating-list {
    display: flex;
}

.testimonial-heading-box h3 {
    font-size: 16px;
    font-family: var(--font-light);
}

.testimonial-heading-box {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
}

.testimonail-image img {
    width: 100%;
    border-radius: 32px;
    max-height: 288px;
    object-fit: cover;
    height: auto;
}

.testimonail-slider .swiper-button-prev,
.testimonail-slider .swiper-button-next {
    background: var(--primary-color);
    width: 48px;
    height: 48px;
    display: flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
}

.testimonail-slider .swiper-button-next:after,
.testimonail-slider .swiper-button-prev:after {
    display: none;
}

.testimonail-slider .swiper-button-next {
    transform: rotate(180deg);
}

.testimonail-content p {
    font-size: 24px;
    font-family: var(--font-semibold);
    line-height: 37px;
    max-width: 628px;
}

.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-quat {
    display: block;
    position: absolute;
    left: -54px;
    top: -88px;
}

.bottom-quat {
    right: -50px;
    left: unset;
    bottom: -88px;
    top: unset;
    transform: rotate(180deg);
}

/*==============================================
           Article Css Start
=================================================*/
.icon-btn {
    margin-right: 10px;
}

.article-slide-image img {
    border-radius: 24px;
    object-fit: cover;
    height: 300px;
    width: 100%;
}

.article-slide-image {
    display: flex;
}

.article-slide-content p {
    margin-bottom: 24px;
}

.article-slide-content h3 {
    font-size: 24px;
    line-height: 36px;
    color: var(--secondary-color);
    margin-top: 24px;
    margin-bottom: 24px;
}

.row-block {
    display: flex;
}

.left-block {
    position: relative;
    padding-right: 30px;
}

.testimonial-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.row-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.right-block {
    flex: 0 0 72%;
    overflow: hidden;
}

.swiper-button-next1,
.swiper-button-prev1 {
    width: 48px;
    height: 48px;
    border: 2px solid var(--text-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.left-block p {
    margin-top: 30px;
    margin-bottom: 30px;
}

.article-slider-btns {
    gap: 12px;
    display: flex;
    margin-bottom: 30px;
}

.swiper-button-next1 {
    transform: rotate(180deg);
}

.subheading {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.main-heading {
    color: var(--primary-color);
    font-size: 40px;
    line-height: 45px;
}

.img-box {
    display: flex;
    border-radius: 40px;
    overflow: hidden;
}

/*==============================================
            Testimonail Css Start
=================================================*/

.faq-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
    line-height: 36px;
}

.faq-header {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-box {
    cursor: pointer;
    border-bottom: 1px solid #758392;
}

.faq-body p {
    padding-top: 0px;
    color: var(--text-color);
    padding-bottom: 20px;
}

.faq-icon {
    background: var(--primary-color);
    min-width: 24px;
    height: 24px;
    margin-left: 16px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.faq-icon::before {
    display: block;
    position: absolute;
    content: "";
    width: 12px;
    height: 2px;
    background: #fff;
}

.faq-icon::after {
    display: block;
    position: absolute;
    content: "";
    width: 2px;
    height: 12px;
    background: #fff;
}

.faq-item-show .faq-icon::after {
    width: 0;
}

.faq-body {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 300ms linear;
    will-change: opacity, max-height;

}

.faq-item-show .faq-body {
    opacity: 1;
    max-height: 15em;
    transition: all 300ms linear;
    will-change: opacity, max-height;
}

.drop-down-show ul li:hover {
    background: #FEF5F1;
}

.landing-page .drop-down-show ul li:hover {
    background: #012B55;
	color: #fff;
}

.landing-page .drop-down-show ul li:hover a {
	color: #fff;
}

/*==============================================
            Contract Css Start
=================================================*/

.form-row {
    gap: 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.form-group .form-control {
    width: 100%;
    font-size: 14px;
    border: 1px solid #758392;
    border-radius: 4px;
    padding: 17px 12px;
    color: var(--secondary-color);
}

.form-group {
    width: 100%;
}

.form-group .form-control::placeholder {
    color: #150d2278;
    font-size: 14px;
}

.form-group .form-control:focus {
    border-color: var(--primary-color);
}

.mb-24 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.contact-us-wrapper h4 {
    font-size: 24px;
}

.contact-email {
    display: block;
    color: var(--text-color);
}

.contact-list li span,
.contact-list li a {
    margin-left: 9px;
    font-size: 14px;
    color: var(--text-color);
}

.home-contact-section .subheading {
    color: var(--text-color);
}
.footer-col .contact-email {
    color: #fff;
}
.contact-email {
    display: flex;
    gap: 12px;
    align-items: center;
}
/*==============================================
            Footer Css Start
=================================================*/
footer {
    background: var(--secondary-color);
    color: #fff;
}

footer .contact-list li a,
footer .contact-list li span,
footer a {
    color: #fff
}

.top-footer-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-btn {
    width: 100%;
    border-radius: 4px;
	border: 1px solid var(--primary-color) !important;
}

.footer-row {
    display: flex;
    gap: 82px;
    justify-content: space-between
}

.footer-col {
    width: 22%;
}

.footer-col.footer-logo-col {
    width: 34%;
}

.footer-logo {
    max-width: 240px;
    margin-bottom: 60px;
}

.footer-subscribe-form .form-group {
    margin-bottom: 7px;
}

.footer-heading {
    font-size: 20px;
    font-family: var(--font-semibold);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.footer-link-list li a {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    line-height: 19px;
}

.social-icon-list {
    display: inline-flex;
    gap: 18px;
    margin-top: 30px;
}

.bottom-footer-wrapper {
    padding-top: 28px;
    padding-bottom: 28px;
}

.bottom-footer-left {
    gap: 12px;
    display: flex;
}

.bottom-footer-right {
    display: flex;
    gap: 24px;
}

.bold-txt {
    font-family: var(--font-bold);
}

.italic {
    font-style: italic;
}

.footer-text {
    font-size: 14px;
}


/*==============================================
           Services page Banner Css Start
=================================================*/



.page-banner-content {
    position: absolute;
    top: 50%;
    max-width: 880px;
    margin: 0 auto;
    left: 0;
    text-align: center;
    right: 0;
    color: #fff;
    transform: translateY(-50%);
}

.page-banner-wrapper {
    padding: 40px 120px;
    position: relative;
}

.page-img-box {
    display: flex;
    border-radius: 48px;
    overflow: hidden;
}

.page-banner-logos {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    justify-content: center;
    padding: 10px 52px;
    margin-top: -40px;
    z-index: 1;
    position: relative;
    gap: 80px;

}

.page-banner-logo-wrapper {
    display: flex;
    row-gap: 30px;
    column-gap: 80px;
    flex-wrap: wrap;
}

.page-banner-logo-wrapper img {
    max-height: 53px;
}

.page-banner-content h1 {
    line-height: 90%;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.page-banner-content span {
    color: var(--primary-color);
}

/*==============================================
            Service Page Tab Css Start
=================================================*/

.tab-block {
    display: flex;
}

ul.tab-mnu {
    flex: 0 0 35%;
    background: #EDF0F3;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-tab-wrapper {
    border-radius: 20px;
    box-shadow: 0px 3.72798px 27.9598px rgba(0, 0, 0, 0.2);
   /* overflow: hidden;*/
}

ul.tab-mnu li.active {
    background: #fff;
}

.page-tab-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.tab-mnu li span {
    padding: 15px 50px;
    color: var(--text-color);
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--font-semibold);
    height: 75px;
    line-height: 110%;
}

img.page-service-img {
    display: none;
    /* max-width: 104px; */
    /* height: 104px; */
    width: 0;
    height: 0;
    visibility: hidden;
    object-fit: cover;
}

ul.tab-mnu li {
    display: flex;
    align-items: center;
}

.tab-cont h3 {
    font-size: 34px;
    font-style: italic;
    margin-bottom: 24px;
}

.tab-pane h3 span {
    font-size: 16px;
    display: block;
    color: var(--primary-color);
    font-style: normal;
}

/* 
.tab-cont p {
    max-width: 296px;
} */

.tab-cont {
    width: 100%;
}

.tabs-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 411px;
}

.tab-cont .tab-pane {
    padding: 40px 40px;
    position: relative;
    height: 100%;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.tab-cont .tab-pane a.primary-color{
    align-self: flex-end;
}
.heading-box h2 {
    font-size: 54px;
    text-transform: uppercase;
}

.heading-box {
    max-width: 863px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 87px;
}

.heading-box h2 span {
    color: var(--primary-color);
}
.tab-top-content ul {
    list-style-type: disc;
    margin-left: 30px;
    padding-top: 10px;
}
.tab-top-content h3 a{
    color: #150D22;
	text-decoration: underline !important;
}
.tab-top-content h3 a:hover{
    color: #DC4E20;
	text-decoration: underline !important;
}

.tab-pane[data-tab="tab1"] ul {
    list-style-type: none;
    margin-left: 0px;
}
/*==============================================
            Image and Text Css Start
=================================================*/
.box-row {
    gap: 60px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
}

.img-box {
    display: flex;
}

.inner-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
}

.txt-box p {
    margin-bottom: 15px;
}


/*==============================================
            Service page Contact Css Start
=================================================*/
.contact-faq-wrapper .faq-header h3 {
    font-size: 14px;
    line-height: 20px;
    color: var(--secondary-color);
}

.contact-faq-wrapper .faq-header {
    padding-top: 14px;
    padding-bottom: 14px;
}

.contact-faq-wrapper .faq-body p {
    padding-top: 5px;
    padding-bottom: 14px;
    font-size: 10px;
}

.contact-faq-wrapper {
    margin-bottom: 40px;
    max-width: 300px;
}

.contact-block {
    background: #FFFFFF;
    box-shadow: 0px 10px 20px rgba(186, 186, 186, 0.3);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.right-block.contact-right-box {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr 1fr;
}

img.contract-truck {
    margin-bottom: 20px;
}

/*==============================================
            about page Css Start
=================================================*/
.about-page .page-banner-content span {
    display: block;
}

.ind-wrapper {
    overflow: hidden;
}

.ind-wrapper .heading-box {
    margin-bottom: 50px;
}

.specialty-ind-section .partner-slider-btns {
    justify-content: center;
}

.about-page h1 span {
    display: block;
}

.ind-inner-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.inds-content h3 {
    font-size: 20px;
    margin: 20px 0;
    color: var(--secondary-color);
}

.inds-content p {
    font-size: 14px;
}

.inds-img-box img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.text-center {
    text-align: center;
}

.image-box {
    display: flex;
}
.team-image-box {
    height: 100%;
}
.team-image-box img {
    width: 100%;
    display: flex;
    height: 100%;
    object-fit: cover;
}
.team-box {
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.inds-content {
    padding: 0 25px;
}

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

.team-heading-box {
    text-align: center;
    max-width: 1062px;
    margin: 0 auto;
}

.team-inner-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-content h4 {
    font-size: 16px;
    font-style: italic;
    color: #fff;
}

.team-content h4 {
    font-size: 16px;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
}

.team-heading-box {
    text-align: center;
    max-width: 1062px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.team-content h2 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 36px;
}
.team-content {
    padding: 35px 27px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.team-content p {
    font-size: 12.6954px;
    color: #fff;
    max-width: 275px;
    margin-top: 20px;
    max-height: 0;
    transition: max-height 0.50s ease-out;
    overflow: hidden;
}

.team-box:hover .team-content p {
    height: 100%;
    overflow: visible;
    max-height: 500px;
    transition: max-height 1s ease-in;
}

.team-box:hover .team-content {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--primary-color);
}

.team-box:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 37.81%, rgba(0, 0, 0, 0.8) 81.04%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.partner-box {
    box-shadow: 0px 3.44384px 17.2192px rgba(0, 0, 0, 0.15);
    border-radius: 17.2192px;
    padding: 35px;
}

.partner-logo {
    max-width: 300px;
    max-height: 50px;
    margin-bottom: 10px;
}

.partner-box p {
    font-size: 10px;
}

.swiper-button-prev2,
.swiper-button-next2,
.swiper-button-prev4,
.swiper-button-next4,
.swiper-button-prev5,
.swiper-button-next5 {
    background: var(--primary-color);
    width: 48px;
    height: 48px;
    display: flex;
    opacity: 1;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.partner-slider {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 10px;
}

.partner-slider-btns {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}

.related-blog-section .partner-slider-btns {
    justify-content: center;
}

.swiper-button-next2,
.swiper-button-next4,
.swiper-button-next5 {
    transform: rotate(180deg);
}

.blog-col {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.blog-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

/*==============================================
            Blog Page Css Start
=================================================*/
.featured-blog-row {
    display: flex;
    gap: 48px;
    align-items: center;
}

.featued-img-col img {
    width: 100%;
    border-radius: 40px;
    max-height: 380px;
    object-fit: cover;
}

.featured-blog-content {
    flex: 0 0 40%;
}

.blog-date {
    color: #7D7D7D;
    font-size: 16px;
    margin-bottom: 30px;
}

.blog-heading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-row .blog-heading {
    font-size: 16px;
    line-height: 24px;
}

.blog-box {
    background: #FFFFFF;
    box-shadow: 0px 3.50435px 43.8044px rgba(0, 0, 0, 0.1);
    border-radius: 35.0435px;
    padding: 40px;
    flex-grow: 1;
    width: 31%;
    max-width: 31%;
}

.blog-img img {
    height: 225px;
    object-fit: cover;
    width: 100%;
}

.blog-bottom-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.main-blog-content {
    margin-top: 48px;
}

.main-blog-heading {
    margin-bottom: 48px;
}

.blog-img {
    margin-bottom: 47px;
    border-radius: 26.2826px;
    overflow: hidden;
}

.blog-rich-text p,
.blog-rich-text h1,
.blog-rich-text h2,
.blog-rich-text h3,
.blog-rich-text h4,
.blog-rich-text h5,
.blog-rich-text h6,
.blog-rich-text ul {
    margin-bottom: 48px;
}

.blog-rich-text p:last-child,
.blog-rich-text h1:last-child,
.blog-rich-text h2:last-child,
.blog-rich-text h3:last-child,
.blog-rich-text h4:last-child,
.blog-rich-text h5:last-child,
.blog-rich-text h6:last-child,
.blog-rich-text ul:last-child {
    margin-bottom: 0;
}

.blog-rich-text ul,
.blog-rich-text ol{
    list-style: disc;
    padding-left: 20px;
}

.blog-rich-text li{
    padding-left: 8px;
}

.rel-blog-heading {
    color: var(--secondary-color);
    text-align: center;
    font-size: 48px;
    margin-bottom: 48px;
}

.related-blog-row {
    overflow: hidden;
}

/*==============================================
            Help Center Css Start
=================================================*/
.help-center-page h1 span {
    display: block;
}

.faq-heading {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.help-contact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.help-contact-list-col {
	display: grid;
    grid-template-rows: repeat(2, 1fr);
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    height: 100%;
}

.help-contact-list-dskt {
	display: flex !important;
}

.help-contact-list-mbl {
	display: none !important;
}

.contact-social-icon-list {
    display: flex;
    gap: 18px;
    align-items: center;
}

.contact-social-icon-list a {
    display: flex;
}

.help-center-tab-box {
    width: 100%;
}

.help-contact-list a {
    color: var(--text-color);
}

.help-contact-list {
    font-size: 14px;
    margin-bottom: 20px;
}

.help-center-contact-form .form-group .form-control {
    border: 2px solid #758392;
}

.help-center-contact-form .form-group select.form-control {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 5.5L0 0.5H10L5 5.5Z' fill='%23012B55'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 0.8em;
	background-position-x: 98%;
	background-position-y: 49%;
}

ul.help-contact-list li,
ul.help-contact-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

ul.help-contact-list li a span {
    display: flex;
}

span.career-list {
    border: 1px solid var(--primary-color);
    border-radius: 10.9006px;
    padding: 9.34337px 11.6792px;
    font-size: 12px;
    display: block;
    font-family: var(--font-bold);
}

ul.career-time-box {
    display: flex;
    gap: 6px;
}

.career-content {
    margin-top: 20px;
}

.career-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 20px;
}

.career-content p,
.career-content ul {
    margin-bottom: 20px;
}

.career-content ul {
    list-style: disc;
    padding-left: 25px;
}

.career-wrapper-box {
    border-bottom: 1px solid #758392;
    padding-bottom: 30px;
}

.inner-carrer-head {
    padding-top: 20px;
    padding-bottom: 20px;
}

.help-tab-btn {
    background: transparent;
    font-size: 14px;
    font-family: var(--font-bold);
    text-transform: uppercase;
    align-items: center;
    padding: 15px 18px;
    color: #150D22;
    display: flex;
    gap: 10px;
    border-radius: 14px;
    text-align: left;
    width: 100%;
    border: 2px solid var(--primary-color);
    justify-content: space-between;
    transition: all 0.3s ease;
}

.active .help-tab-btn {
    background: var(--primary-color);
    color: #fff;
}

ul.help-tab-mnu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.help-contact-wrapper h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.help-contact-wrapper p {
    max-width: 606px;
    margin-bottom: 20px;
}

.for-mobile {
    display: none;
}

/*==============================================
            popup Css Start
=================================================*/

.popup_video {
    position: fixed;
    background: rgba(0, 0, 0, .9);
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
}

.sec_video {
    transform: translateY(-50%);
    top: 50%;
    max-width: 1035px;
    width: 92%;
    position: relative;
    border-radius: 40px;
    padding: 0px 0;
    margin: 0px auto;
    display: flex;
}

.sec_video video {
    margin: 0 auto;
    width: -webkit-fill-available;
}

.popup_video .close {
    cursor: pointer;
    position: absolute;
    right: 2%;
    top: 27px;
}

.mobile-btn {
    display: none;
}

.btn_container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.wpcf7 .form-btn {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center !important;
}

.wpcf7 .form-btn .wpcf7-spinner {
	position: absolute;
	bottom: -5px;
	transform: translateY(100%);
}

.wpcf7 .form-btn.form_group .wpcf7-spinner,
.wpcf7 .form-btn.input_group .wpcf7-spinner {
	display: none;
	position: relative;
    bottom: unset;
    transform: none;
}

.wpcf7 .wpcf7-spinner {
	vertical-align: middle;
}

.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.resetting .wpcf7-submit,
.wpcf7-form.sent .wpcf7-submit {
	pointer-events: none;
	opacity: 0.5;
	cursor: not-allowed;
}

.wpcf7-form.submitting .wpcf7-submit:hover,
.wpcf7-form.resetting .wpcf7-submit:hover,
.wpcf7-form.sent .wpcf7-submit:hover {
	background: var(--primary-color);
}

.wpcf7-form.submitting .form-btn.form_group .wpcf7-spinner,
.wpcf7-form.submitting .form-btn.input_group .wpcf7-spinner,
.wpcf7-form.resetting .form-btn.form_group .wpcf7-spinner,
.wpcf7-form.resetting .form-btn.input_group .wpcf7-spinner,
.wpcf7-form.sent .form-btn.form_group .wpcf7-spinner,
.wpcf7-form.sent .form-btn.input_group .wpcf7-spinner {
	display: inline-block;
}

.wpcf7 form.sent .wpcf7-response-output {
    margin: 0;
    text-align: center;
}

.get-quote-form .wpcf7-response-output {
    color: #fff;
}

.primary-color:hover,
.get-quote-btn a:hover {
    background: #0b2b56;
}

.form-btn button.primary-color:hover,
.footer-btn:hover, .connect-now-btn:hover {
    border: 1px solid #fff;
}
.image_wrap img {
    width: 60px !important;
    max-width: 60px !important;
    height: 60px !important;
    object-fit: unset;
    padding: 0 !important;
}
.image_wrap:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 60%);
}
.image_wrap {
    position: relative;
}
.drop-down-show ul li:hover .image_wrap:after {
    background: transparent;
}
.we-keep-moving-section .heding {
    max-width: 766px;
    margin: 0 auto;
}
.content_block {
    margin-top: 30px;
}
.default-template {
    padding-top: 80px;
    padding-bottom: 80px;
}
.content_block .wp-block-heading {
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: 22px;
    font-family: var(--font-semibold);
}
.content_block a {
color: var(--text-color);
}

.content_block p {
    margin-bottom: 10px;
}
.content_block h2 {
    font-size: 30px;
}
.default-template h1 {
    font-size: 48px;
    text-transform: uppercase;
}
.menu-item-has-children.on_hover:hover .image_wrap:after {
    background: transparent !important;
}

.connect-your-eld-sec{
    padding: 40px 0px;
}

.connect-your-ELD-wrapper{
    overflow: hidden;
    border: 3px solid var(--primary-color);
    border-radius: 50px;
    display: grid;
    grid-template-columns: 300px auto 338px;
    background-color: var(--secondary-color);
}
.connect-your-ELD-left{
    border-radius: 40px;
    padding: 20px 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .connect-your-ELD-left img {
    min-width: 237px;
} */
.connect-your-ELD-middle{
    padding: 20px 40px;
}
.connect-your-ELD-middle {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.connect-your-ELD-middle p{
    color: var(--primary-color);
    font-size: 26px;
}
.connect-your-ELD-middle h2{
    color: #fff;
    text-transform: uppercase;
    font-size: 38px;
}
.connect-your-ELD-right{
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.connect-now-btn{
    padding: 18px 56px;
    font-size: 19px;
    border: 1px solid transparent;
}
.connect-your-ELD-right .powered-by-logo p{
    color: #fff;
    font-size: 16px;
}
/* .connect-your-eld-vetrical-sec{
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    background-color: #fff;
    overflow: hidden;
} */
.connect-your-eld-vetrical-wrapper{
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    background-color: #fff;
    overflow: hidden;
}
.connect-your-eld-upper{
    display: flex;
    padding: 38px 20px 34px;
    flex-direction: column;
    align-items: center;
}
.connect-your-eld-upper h2{
    font-size: 37px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    max-width: 318px;
    text-align: center;
}
.connect-your-eld-heading{
    color: var(--primary-color) !important;
}
.connect-your-eld-upper img{
    margin-bottom: 48px;
}
.connect-your-eld-lowwer-list-wrapper li span {
    display: flex;
}
.connect-your-eld-lowwer{
    background-color: var(--secondary-color);
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50px;
}
.connect-your-eld-lowwer-list-wrapper ul li{
    color: #fff;
    display: flex;
    margin-bottom: 15px;
    gap: 17px;
    font-size: 22px;
    align-items: center;
    font-family:var(--font-semibold)
}
.connect-your-eld-lowwer-list-wrapper ul{
    margin-bottom: 60px;
}
 .powered-by-logo p{
    color: #fff;
    font-size: 16px;
}
.connect-your-eld-lowwer .cennect-now-btn{
    margin-bottom: 15px;
    width: 100%;
}
.connect-your-eld-lowwer .cennect-now-btn .primary-color{
    min-width: 100%;
}
.connect-your-eld-lowwer .powered-by-logo img, .connect-your-ELD-right .powered-by-logo img{
    max-width: 92px;
}
section.connect-your-eld-vetrical-sec {
    display: none;
}
.powered-by-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-top: 5PX;
}
.heading-box h2, .tab-cont h3 {
    color: var(--secondary-color);
}
.blog-rich-text p, .blog-rich-text h1, .blog-rich-text h2, .blog-rich-text h3, .blog-rich-text h4, .blog-rich-text h5, .blog-rich-text h6, .blog-rich-text ul {
    margin-bottom: 40px;
}
.footer-subscribe-form input.wpcf7-form-control.wpcf7-text.wpcf7-email.form-control {
    text-align: center;
}
span.career_sec_faq {
    color: #5349f5;
}

.landers-links ul {
    display: flex;
    gap: 27px;
    margin-top: 7px;
}
.landers-links li a {
    font-size: 27px;
    font-weight: 500;
    color: #fff;
}
.landers-wrapper {
    grid-template-columns: 351px auto;
    border-radius: 20px;
}
.landers-wrapper .connect-your-ELD-left {
    border-radius: 16px;
}
.landers-wrapper .connect-your-ELD-middle {
    padding: 26px 61px;
}
.landers-links ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
/*==============================================
            Tabs Css Start
=================================================*/
.map-tab-section {
    background: var(--secondary-color);
    color: #fff;
    padding: 63px 0;
}

.map-tabs-wrapper {
    display: flex;
    gap: 120px;
}

.loc-tab-block {
    color: #758392;
}
.loc-tab-block .active,
.loc-tab-block small {
    color: #fff;
}
.loc-tab-heading {
    letter-spacing: -1.2px;
    font-size: 40px;
    margin-bottom: 10px;
    border-left: 5px solid transparent;
    line-height: 0.9;
    padding-left: 9px;
}
.loc-tab-block .active .loc-tab-heading {
   border-color: #DC4E20
}
.tab-country-list {
    padding-left: 15px;
}
#loc-tabs-nav {
    display: grid;
}
.tab-main[data-tab="tab2"] {
    grid-row: 1 / 3;
    grid-column: 2 / 2;
    margin-left: 50px;
}
.loc-tab-block {
    flex: 0 0 400px;
}
.loc-tab-box {
    margin-bottom: 25px;
}
ul.tab-country-list li {
    font-size: 20px;
}
.tab-main {
    cursor: pointer;
}
.mobile-chart {
    display: none;
}
.map-tab-section .heding h3 {
    color: #fff;
    margin-bottom: 130px;
}

/*==============================================
            media responsive Css Start
=================================================*/


@media screen and (min-width:880px) {
    .container {
        max-width: 980px;
    }
}

@media screen and (min-width:992px) {
    .container {
        max-width: 1120px;
    }

    button.navbar-toggler {
        display: none;
    }

    .menu-item-object-language_switcher {
        background: #FFF5EB;
        padding: 8px;
        border-radius: 6px;
        position: relative;
    }

    .menu-item-object-language_switcher .drop-down-show {
        left: 0;
        top: 40px;
    }

    .menu-item-object-language_switcher .drop-down-show ul li a span {
        min-width: 51px;
        font-size: 16px;
    }

    .menu-item-object-language_switcher .drop-down-show {
        min-width: 78px;
        border-radius: 5px;
    }

    .menu-item-object-language_switcher .drop-down-show ul li a span {
        padding: 0;
    }

    .menu-item-has-children:hover .drop-down-show {
        display: block;
    }
    .footer-link-list {
        padding-right: 40px;
    }
}

@media screen and (min-width:1440px) {
    .container {
        max-width: 1400px;
        padding: 0 15px;
        margin: 0 auto;
    }
}

@media screen and (max-width:1440px) {
    .container {
        max-width: 1230px;
        padding: 0 20px;
        margin: 0 auto;
    }
    .connect-your-ELD-left{
        padding: 20px;
    }
    .connect-your-ELD-middle{
        padding: 20px;
    }
    .connect-your-ELD-right{
        padding: 20px;
        text-align: center;
    }

}

@media screen and (max-width:1365px) {
    .testimonial-quat {
        position: relative;
        left: 0;
        top: -24px;
    }

    .bottom-quat {
        right: 0;
        bottom: -20px;
    }

    .footer-row {
        gap: 60px;
    }

    .left-block {
        padding-right: 0;
    }

    .tab-mnu li span {
        padding: 20px 30px;
        font-size: 18px;
    }

    .help-tab-btn {
        font-size: 10px;
        padding: 14px 12px;
    }

}

@media screen and (max-width:1199px) {
    .get-quote-title h2 {
        font-size: 36px;
    }

    .right-block {
        flex: 0 0 70%;
    }

    .footer-row {
        gap: 30px;
    }

    .footer-link-list li a {
        font-size: 13px;
    }

    .spacing {
        padding: 80px 0;
    }

    .navbar ul {
        gap: 15px;
    }

    .service-heading p {
        margin: 20px 0;
        font-size: 14px;
    }

    .service-title {
        padding: 20px;
    }


    .our-service-row {
        margin: 0;
    }

    .service-title p {
        font-size: 13px;
        line-height: 18px;
        padding-top: 5px;
    }

    .article-slide-content h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .page-banner-wrapper {
        padding: 40px 40px;
        position: relative;
    }


    .tab-mnu li span {
        font-size: 15px;
        padding: 18px;
    }

    .box-row {
        gap: 20px;
    }

    .mb-30 {
        margin-bottom: 20px;
    }

    .testimonail-content p {
        font-size: 24px;
        font-family: var(--font-semibold);
        line-height: 37px;
        max-width: 628px;
    }

    .tabs-img {
        max-width: 315px;
    }

    .blog-box {
        max-width: none;
    }
    .connect-your-ELD-middle p {
        color: var(--primary-color);
        font-size: 21px;
    }
    .connect-your-ELD-middle h2 {
        font-size: 30px;
    }
    .landers-wrapper {
        grid-template-columns: 270px auto !important;
    } 
    .landers-wrapper .connect-your-ELD-middle {
        padding: 26px 40px;
    }
    .landers-links li a {
        font-size: 21px;
        font-weight: 500;
        color: #fff;
    }
    .team-content h2 {
        font-size: 32px;
    }
    .team-content {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 1060px) {
	.landing-page .navbar > ul {
		gap: 15px;
	}
}

@media screen and (max-width:992px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        letter-spacing: -0.015em;

    }

    .navbar ul li a,
    .navbar ul details summary {
        padding: 20px 34px;
        display: inline-flex;
        text-align: left;
    }

    .hamburger-lines {
        display: flex !important;
    }

    .navbar {
        position: absolute;
        top: 88px;
        background: #fff;
        width: 100%;
        overflow-y: auto;
        height: calc(100vh - 88px);
        left: 0;
        z-index: -1;
    }

    .navbar {
        width: 100%;
        /* min-height: 100%; */
        display: none;
        /* transform: translateY(-150%); */
        transition: all 0.5s ease-in-out;
    }

    .navbar.menu {
        /* transform: translateY(0%) !important; */
        display: block;
    }

    .hamburger-lines.open .line.line1 {
        transform: rotate(40deg);
    }

    .hamburger-lines.open .line.line2 {
        display: none;
    }

    .hamburger-lines.open .line.line3 {
        transform: rotate(317deg);
    }

    .get-quote-btn a {
        border-radius: 0;
        width: 100%;
        justify-content: flex-start;
        transition: all 0.5s;
    }

    .navbar ul {
        gap: 0px;
        flex-direction: column;
    }

    .navbar ul li {
        width: 100%;

    }
.landing-page .navbar > ul {
    gap: 20px;
    margin-top: 35px;
}

	.landing-page .navbar > ul > li a {
		font-size: 25px;
		font-weight: 500;
	}

	.landing-page .navbar > ul > li:last-child {
		border-left: none;
		padding-left: 30px;
		padding-right: 30px;
        max-width: 450px;
		width: 100%;
	}

	.help-center-menu .drop-down-show li a {
		text-transform: capitalize;
	}

	.drop-down-show {
		background: none;
	}
	
	.landing-page .navbar > ul > li:last-child a {
		font-size: 18px;
		font-weight: 700;
        text-align: center;
	}
    .drop-down-show ul li {
        border: unset;
    }

    .image_wrap:after {
        background: transparent;
    }
    .testimonial-heading-box {
        align-items: flex-start;
        flex-direction: column;
    }
    .page-img-box img {
        min-height: 139px;
        object-fit: cover;
    }
    .drop-down-show {
        position: relative;
        border-radius: 0px;
        border: 0;
        box-shadow: unset;
        max-width: 100%;
    }

	.landing-page .navbar.menu {
		padding-bottom: 20px;
	}

	.landing-page .drop-down-show ul li a {
		font-size: 20px;
text-transform: capitalize;
font-family: "Poppins";
	}

	.landing-page .drop-down-show ul li {
		border-bottom: none;
	}

    header.cust-header nav {
        align-items: center;
    }

    .keep-moving-video-sec {
        flex-direction: column;
    }

    .service-content-column {
        width: 50%;
    }

    .testimonail-slider-box {
        grid-template-columns: auto;
        gap: 29px;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-col {
        width: 43%;
    }

    .get-quote-form {
        flex-direction: column;
    }

    .get-quote-title {
        width: 100%;
        margin-bottom: 20px;
    }

    .get-quote-form-colum {
        width: 100%;
    }

    .row-block {
        display: flex;
    }


    .box-row {
        gap: 60px;
        display: grid;
        grid-template-columns: auto;
        text-align: center;
    }

    .box-row {
        grid-template-columns: auto;
        text-align: center;
    }

    .testimonail-slider .swiper-button-prev,
    .testimonail-slider .swiper-button-next {
        top: unset;
        bottom: 0;
    }

    .testimonail-slider-box {
        padding-bottom: 70px;
    }

    .swiper-button-next {
        left: 70px;
    }

    .right-block.contact-right-box {
        grid-template-columns: auto;
    }

    .page-banner-wrapper {
        padding: 10px 00px;
    }

    .page-banner-content {
        position: static;
        transform: unset;
    }

    .page-banner-content h1 {
        color: var(--secondary-color);
        font-style: italic;
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .page-banner-content p {
        color: var(--text-color);
    }

    .page-banner-logos {
        margin-top: 50px;
    }

    .page-banner-logos p {
        display: none;
    }

    .page-banner-logo-wrapper {
        gap: 20px;
        justify-content: space-between;
        width: 100%;
    }

    .page-img-box {
        border-radius: 20px;
    }

    .get-quote-form {
        padding: 30px;
        border-radius: 34px;
    }

    .form-btn {
        width: 100%;
        padding-top: 0;
    }

    .form-outline {
        margin: 0 0 22px;
    }

    .main-heading {
        font-size: 35px;
        line-height: 42px;
    }

    .team-inner-wrapper {
        grid-template-columns: auto auto;
    }

    .container {
        padding: 0px 30px;
    }

    .img-text-wrapper .box-row {
        display: flex;
        flex-direction: column-reverse;
    }
    ul.sub-menu li a {
        padding: 0 0;
    }
    .connect-your-ELD-middle h2 {
        font-size: 22px;
    }
    .connect-your-ELD-middle p {
        color: var(--primary-color);
        font-size: 15px;
    }
    .connect-your-ELD-right .powered-by-logo p {
        font-size: 12px;
    }
    .connect-now-btn {
        padding: 18px 26px;
        font-size: 13px;
    }
    .connect-your-ELD-left img {
        /* max-width: 168px !important; */
        width: 150px !important;
    }
    .connect-your-eld-lowwer .powered-by-logo img, .connect-your-ELD-right .powered-by-logo img {
        max-width: 72px;
    }
    .connect-your-ELD-wrapper {
        grid-template-columns: 230px auto 226px;
    }
    .connect-your-ELD-right {
        padding: 12px;
    }
    .landers-wrapper {
        grid-template-columns: 214px auto !important;
    }
    .landers-wrapper .connect-your-ELD-middle {
        padding: 20px 20px;
    }
    .landers-links li a {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }
    .landers-links svg {
        width: 20px;
    }
    .help-center-menu .drop-down-show li a {
        padding: 15px 34px;

    }
    .img-text-wrapper .txt-box ul, .txt-box p {
        text-align: left;
    }
}
    

@media screen and (max-width:767px) {

    h1 {
        font-size: 25px;
    }

    .heding h3,
    .service-heading h3 {
        font-size: 25px;
        font-style: italic;
    }
    .we-keep-moving-section .heding {
        max-width: 400px;
    }
    .homebanner-setion {
        margin-top: 20px;
    }

    .video-icon {
        width: 40px;
    }

    .home-main-content-section {
        height: 314px;
        background-position: 62% 31%;
    }

    .home-get-quote-form-section .row {
        gap: 0;
        flex-direction: column;
    }
    .mobile_sec_popup .container.aos-init.aos-animate {
        z-index: 1;
        position: relative;
    }
  

    .home-get-quote-form-section {
        padding: 50px 25px 17px;
        position: fixed;
        left: 0;
        right: 0;
        z-index: 9999;
        overflow-y: auto;
        margin: 0 auto;
        width: 100%;
        max-width: 92%;
        height: auto;
        top: 50%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
    }
    .mobile_sec_popup {
        overflow: auto;
    }
    .quote-form {
        width: 100%;
        margin-top: 20px;
        display: block;
    }

    .btn_close {
        position: absolute;
        right: 12px;
        top: 13px;
        display: block;
    }

    .home-contant-row p {
        font-size: 12px;
    }

    .service-content-column {
        width: 100%;
    }

    span.testimonial-quat svg {
        width: 56px;
        height: 40px;
    }

    .get-quote-form-colum .row {
        gap: 0;
        flex-wrap: wrap;
    }

    .get-quote-form-colum .row.row-1-2 .form-outline,
	.get-quote-form-colum .row.row-2-1 .form-outline,
	.get-quote-form-colum .row.row-1-2 .form-btn,
	.get-quote-form-colum .row.row-2-1 .form-btn {
		flex: unset !important;
    }

    .get-quote-form-colum .row br.md-hidden {
        display: none;
    }

    .row-block {
        flex-wrap: wrap;
    }

    .left-block {
        flex: 0 0 100%;
    }

    .right-block {
        flex: 0 0 100%;
    }

    .form-row {
        flex-wrap: wrap;
    }

    .footer-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-col.footer-logo-col {
        width: 100%;
        max-width: 100%;
    }

    .footer-col {
        width: 100%;
        max-width: 100%;
    }

	.contact-email {
		justify-content: center;
	}

    .bottom-footer-left,
    footer .contact-list li a,
    footer .contact-list li span,
	.bottom-footer-left p,
    footer a {
        font-size: 12px;
    }

    footer {
        text-align: center;
    }

	.footer-logo {
		margin-bottom: 40px;
	}

    .bottom-footer-wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    form.primary-color .form-btn {
        width: 100%;
    }

    .featured-blog-row {
        flex-direction: column;
        gap: 30px;
    }

    .blog-col {
        flex-direction: column;
    }

    .blog-box {
        width: 100%;
        max-width: 100%;
        padding: 30px;
    }

    .blog-img.image-box img {
        max-height: 100%;
        height: auto;
    }

    .blog-bottom-btn .primary-color {
        width: 100%;
    }

    .contact-faq-wrapper {
        max-width: 100%;
    }

    .featued-img-col img,
    .img-box,
    .video-section-left-side,
    .video-section-left-side img {
        border-radius: 20px;
    }

    ul.help-tab-mnu .active {
        order: 0;
    }

    ul.help-tab-mnu li {
        order: 1;
    }

    .help-tab-mnu.expanded li:not(.active) {
        position: relative;
        top: auto;
    }

    .help-tab-mnu li:not(.active) {
        position: absolute;
        top: -999em;
    }

    .active .help-tab-btn svg {
        transform: rotate(90deg);
    }

    .get-quote-title h2 {
        font-size: 33px;
    }

    .testimonail-content p {
        font-size: 22px;
    }

    .help-contact-list {
        grid-template-columns: auto;
    }
	
	.help-contact-list-dskt {
		display: none !important;
    }
	
	.help-contact-list-mbl {
		display: flex !important;
    }

    .bottom-footer-wrapper .footer-row {
        flex-direction: column-reverse;
    }

    .bottom-footer-right {
        justify-content: center;
    }

    .footer-row {
        gap: 20px;
    }

    .for-mobile {
        display: flex;
    }

    .ind-wrapper .partner-slider-btns {
        justify-content: center;
    }

    #help-tab-block .main-heading {
        text-align: center;
    }

    .keep-moving-video-sec {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .page-banner-logos {
        padding: 20px 20px;
        max-height: 100%;
        width: 100%;
    }

    .page-banner-logo-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    }

    .sticky-block {
        position: static !important;
    }

    .team-inner-wrapper {
        grid-template-columns: auto;
    }

    .article-slide-image img {
        height: auto;
    }

    .video-section {
        margin-bottom: 60px;
    }

    .blog-featured-section,
    .home-contact-section,
    .main-blog-section,
    .related-blog-section,
    .home-faq-section,
    .home-article-section,
    .page-mission-section,
    .specialty-ind-section,
    .partners-section,
    .img-and-text-section,
    .helpcenter-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .related-blog-box {
        background: #FFFFFF;
        box-shadow: 0px 3.50435px 43.8044px rgba(0, 0, 0, 0.1);
        border-radius: 35.0435px;
        padding: 40px;
    }

    .related-blog-box .blog-heading {
        font-size: 16px;
        line-height: 24px;
    }

    .main-blog-heading {
        font-size: 24px;
        margin-bottom: 40px;
        line-height: 36px;
    }

    .rel-blog-heading {
        font-size: 38px;
        margin-bottom: 30px;
        letter-spacing: -0.03em;
    }

    .we-keep-moving-section .keep-moving-video-sec {
        margin-top: 30px;
    }

    .home-contact-section .left-block .primary-color {
        width: 100%;
    }

    .home-faq-section .row-block {
        gap: 20px;
    }

    .desktop_section,
    .desktop_head,
    .descktop__section,
    .desktop_image,
    .desktop-btn {
        display: none;
    }

    .mobile_sec,
    mobile-head,
    .mobile__section,
    .video_mobile_section,
    .mobile-head {
        display: flex !important;
    }

    .mobile-btn {
        display: inline-flex !important;
        width: 100%;
    }

    .career-wrapper-box .mobile-btn {
        margin-top: 20px;
    }

    .txt-box .img-box {
        margin-bottom: 80px;
    }

    .mobile_sec_image {
        display: flex !important;
    }

    .page-banner-content h1 {
        margin-top: 19px;
    }

    .page-banner-logos {
        margin-top: 20px;
    }

    .ind-wrapper .heading-box {
        margin-bottom: 30px;
    }

    .partner-slider-btns {
        margin-top: 30px;
    }

    .team-heading-box {
        margin-bottom: 30px;
    }

    .partner-slider-btns {
        justify-content: center;
    }

    .heading-box {
        margin-bottom: 30px;
    }

    .career-head {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .keep-content-right-side ul {
        justify-content: space-between;
    }

    .partners-section .main-heading, .partners-section p {
        text-align: center;
    }
    .partners-section .primary-color {
        width: 100%;
    }
    .contact-us-wrapper .primary-color {
        width: 100%;
    }

    .aricle-mobile-btns-box .article-slider-btns {
        margin-bottom: 0;
    }

    .aricle-mobile-btns-box .mobile-btn {
        width: auto;
    }

    .aricle-mobile-btns-box {
        display: flex !important;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .home-article-section .left-block p,
    .home-faq-section .left-block p {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .service-content-column {
        padding: 0px;
        padding-bottom: 35px;
    }

    .career-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .help-tab-btn {
        font-size: 12px;
    }

    .faq-header h3 {
        font-size: 20px;
        line-height: 31px;
    }

    .get-quote-form {
        padding: 23px;
        border-radius: 24px;
    }

    .get-quote-title p {
        line-height: 20px;
        font-size: 14px;
        margin: 15px 0 0;
    }

    .hamburger-lines.open_toggle .line.line1 {
        transform: rotate(45deg);
        transform-origin: 4% 10%;
    }

    .hamburger-lines.open_toggle .line.line2 {
        opacity: 0;
    }

    .hamburger-lines.open_toggle .line.line3 {
        transform: rotate(-45deg);
        transform-origin: 4% 90%;
    }
    .default-template {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .content_block h2 {
        font-size: 20px;
    }
    section.connect-your-eld-vetrical-sec {
        display: block;
        padding: 40px 0;
    }
    .connect-your-eld-sec {
        display: none;
    }
    .connect-your-eld-lowwer {
        border-radius: 17px;
    }
     .connect-your-eld-vetrical-wrapper {
        border-radius: 22px;
    }
    .lander_banner_sec {
        display: block;
    }
    .landers-wrapper {
        grid-template-columns: auto !important;
        background: #fff;
    }
    .landers-wrapper .connect-your-ELD-middle {
        border-radius: 17px;
        background-color: var(--secondary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .landers-links ul {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }
    .landers-wrapper .connect-your-ELD-left {
        border-radius: 16px;
        padding: 30px 20px;
    }
    .landers-wrapper .connect-your-ELD-left img {
        width: auto !important;
    }
    .landers-links li a {
        font-size: 18px;
    }
    .landers-wrapper .connect-your-ELD-middle h2 {
        font-size: 28px;
        text-align: center;
    }
    .service-title a {
        bottom: 10px;
    }
	.service-title h6 a {
		text-decoration: underline !important;
	}
    .map-tab-section {
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url(/wp-content/uploads/2023/07/MicrosoftTeams-image-7.png);
        background-position-y: 20px;
    }
    .navbar ul li a {
        padding: 20px 10px 20px 30px;
    }
    .navbar ul li .toggler {
        margin-left: 0;
    }
}

@media screen and (max-width:480px) {
    .heading-box h2 {
        font-size: 40px;
        text-transform: uppercase;
    }

    .get-quote-title h2 {
        font-size: 25px;
    }
    .connect-your-eld-upper h2 {
        font-size: 26px;
    }
    .connect-your-eld-lowwer-list-wrapper ul li {
        gap: 10px;
        font-size: 19px;
    }
    .connect-your-eld-lowwer {
        padding: 30px;
    }
    .landers-links li a {
        font-size: 15px;
    }
    .landers-wrapper .connect-your-ELD-middle h2 {
        font-size: 24px;
    }
    .service-title-with-img h6 {
        font-size: 16px;
    }

}
/*==============================================
        11 july mobile Css Start
================================================*/
@media screen and (max-width:1199px) {
    .map-tabs-wrapper {
        display: flex;
        gap: 40px;
    }
}
@media screen and (max-width:767px) {
    .mobile-chart {
        display: block;
        width: 100%;
        padding: 40px 0 20px;
    }
    .desktop-chart, .tab-menu-content-box {
        display: none;
    }
    .map-tabs-wrapper {
        display: block;
        gap: 40px;
    }
    .loc-tab-block {
        color: #fff;
    }
        .loc-tab-heading {
        font-size: 31px;
    }
    ul.tab-country-list li {
        font-size: 15px;
    }
    .tab-main[data-tab="tab2"] {
        margin-left: 36px;
    }
    .map-tab-section .heding h3 {
        margin-bottom: 80px;
    }
}