@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* * {
	font-family: "Poppins", sans-serif;
	font-family: "Oswald", sans-serif;
	font-family: "Manrope", sans-serif;
	font-family: "Inter", sans-serif;
} */
html {
    margin: 0px;
    scroll-behavior: smooth;
}
body {
    background-color: var(--white);
    margin: 0px;
}
* {
    max-width: 100%;
    box-sizing: border-box;
}
:root {
    --black : #000000;
    --white : #ffffff;
	--crimson : #E40F16;
	--limed-spruce : #374D55;
	--gallery : #EBEBEB;
	--catskill-white : #F2F4F9;
	--ikb : #041DAC;
	--mine-shaft : #272727;
}
img {
    display: block;
}
ul, ol, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
a, button {
    cursor: pointer;
    text-decoration: none;
    transition: .4s ease-in-out;
}
input, textarea, label {
    margin: 0px;
    border-radius: 0px;
    padding: 0px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
p {
    margin: 0px
	font-family: "Poppins", sans-serif;
}
h1 {
    font-size: 64px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 39px;
}
h4 {
    font-size: 35px;
}
h5 {
    font-size: 29px;
}
h6 {
    font-size: 20px;
}
p {
    font-size: 25px;
}
.flex-class {
    display: flex;
    flex-wrap: wrap;
}
.align-center {
    align-items: center;
}
.justify-between {
    justify-content: space-between;
}
.flex-reverse {
    flex-direction: row-reverse;
}
.primary-button {
	font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: var(--white);
    padding: 14px 29px;
    border-radius: 8px;
    border: 1px solid var(--crimson);
    background-color: var(--crimson);
    box-sizing: border-box;
    transition: .4s ease-in-out;
    max-width: 100%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 3.5px;
}
.primary-button::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease-in-out;
    pointer-events: none;
}
.primary-button:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--crimson), darkred);
    border-color: darkred;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.primary-button:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}
.header-container {
    margin: 0 auto;
    background-color: var(--white);
    padding: 18px 48px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
    max-width: 1354px;
}
.site-header {
    position: sticky;
    margin: 0 auto;
    top: 20px;
	z-index: 999;
}
.header-flex {
    justify-content: space-between;
    align-items: center;
}
.header-navbar ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-navbar .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    perspective: 1000px;
    z-index: -1;
    display: block;
    min-width: max-content;
}
.header-navbar ul li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.8px; /* 120% */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Poppins';
    color: var(--mine-shaft);
}
.header-navbar ul li {
    position: relative;
}
@-webkit-keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@-o-keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.header-navbar .sub-menu li {
    display: none;
    background-color: var(--crimson);
    padding: 10px 20px;
    font-size: 16px;
    opacity: 0;
}
.header-navbar .sub-menu li a {
  color: var(--white)
}
.header-navbar .sub-menu li:nth-child(1) {
    transform-origin: top center;
    animation: rotateX 300ms 60ms ease-in-out forwards;
}
.header-navbar .sub-menu li:nth-child(2) {
    transform-origin: top center;
    animation: rotateX 300ms 120ms ease-in-out forwards;
}
.header-navbar .sub-menu li:nth-child(3) {
    transform-origin: top center;
    animation: rotateX 300ms 180ms ease-in-out forwards;
}
.header-navbar .sub-menu li:nth-child(4) {
    transform-origin: top center;
    animation: rotateX 300ms 240ms ease-in-out forwards;
}
.header-navbar .sub-menu li:nth-child(5) {
    transform-origin: top center;
    animation: rotateX 300ms 300ms ease-in-out forwards;
}
.header-navbar ul li:hover  .sub-menu li {
    display: block;
    opacity: 1;
}
.header-navbar ul li.menu-item-has-children {
	padding-bottom: 35px;
    margin-bottom: -35px;
    padding-right: 30px;
    margin-right: -20px;
}
.header-logo a img {
    max-width: 100%;
    object-fit: cover;
}
.sub-menu-icon {
    position: absolute;
    right: 5px;
    top: 2px;
    cursor: pointer;
    transform: rotateX(0deg);
}
.header-navbar ul li.menu-item-has-children:hover .sub-menu-icon {
    transform: rotateX(180deg);
}
.header-contact a {
    text-transform: uppercase;
}
.hero-banner-section {
    position: relative;
    height: 100vh;
    margin-top: -88px;
}
.hero-banner-main {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-banner-main .container {
    position: relative;
    height: calc(100% - 62px);
    z-index: 1;
}
.hero-banner-benefits {
    position: relative;
    padding: 15px 0px;
    background-color: var(--limed-spruce);
    z-index: 1;
}
.hero-banner-benefits-flex {
    max-width: 1182px;
    margin: 0 auto;
}
.hero-banner-benefit-single {
    position: relative;
    width: 25%;
}
.benefit-single-flex {
    gap: 10px;
    align-items: center;
}
.benefit-icon img {
    height: 30px;
    object-fit: cover;
}
.benefit-text h6 {
    color: var(--white);
    font-weight: 400;
    line-height: 32px;
    font-family: "Manrope", sans-serif;
}
.hero-banner-main::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.61);
    touch-action: none;
    pointer-events: none;
}
.hero-banner-content-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-banner-content h1 {
    font-family: 'Poppins';
    color: var(--white);
    font-weight: 600;
    line-height: 100%;
}
.hero-banner-content p {
    margin: 10px 0px 0px;
    font-family: 'Poppins';
    font-size: 24px;
    color: var(--white);
    font-weight: 400;
    line-height: 150%;
}
.hero-banner-content {
    text-align: center;
}
.hero-banner-quote {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    max-width: 1108px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 12px 12px 12px 32px;
    border-radius: 12px;
    box-shadow: 0px 6px 12px 0px rgba(19, 94, 172, 0.12);
}
.hero-banner-quote-flex {
    align-items: center;
    justify-content: space-between;
}
.hero-banner-quote-left h6, .hero-banner-quote-center h6 {
    color: #3E3E3E;
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
}
.hero-banner-quote-left p, .hero-banner-quote-center p {
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #BCBCBC;
    text-transform: uppercase;
    margin: 6px 0px 0px;
}
.hero-banner-quote-left input, .hero-banner-quote-center input {
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #BCBCBC;
    text-transform: uppercase;
    margin: 6px 0px 0px;
    border: 0px;
    outline: none;
    width: 100%;
}
.hero-banner-quote-left input::placeholder, .hero-banner-quote-center input::placeholder {
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #BCBCBC;
}
.hero-banner-quote-left {
    width: 25%;
}
.hero-banner-quote-center {
    width: 25%;
}
.hero-banner-quote-right {
    width: 39.6%;
}
.hero-banner-quote-right a {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}
.hero-banner-quote-center {
    padding-left: 24px;
    border-left: 2px solid#ACACAC;
}
.what-customer-says {
    padding: 85px 0px 71px;
    background-color: var(--gallery);
}
.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.what-customer-says-main .section-head h2 {
    font-family: "Oswald", sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--mine-shaft);
    text-align: center;
}
.what-customer-says-main .section-head h2 span {
    font-weight: 400;
}
.what-customer-says-main .section-head h2 .color-two {
    color: var(--crimson);
}
.what-customer-says-main .section-head h2 .color-three {
    color: var(--ikb);
}
.google-reviews-container {
    margin: 40px 0px 0px;
}
.easy-quick-safe-stats {
    position: relative;
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
}
.single-stat-box {
    border-radius: 20px;
    border: 1px solid #D0D0D0;
    background: #F2F4F9;
    padding: 25px 25px;
    width: 32.3%;
    text-align: center;
}
.easy-quick-safe-stats-flex {
    justify-content: space-between;
}
.easy-quick-safe {
    position: relative;
    margin: -42px 0px 0px;
	padding: 0 0 38px;
}
.single-stat-box h2 {
    font-family: "Inter", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    color: var(--ikb);
}
.single-stat-box p {
    margin: 9px 0px 0px;
    font-family: 'Poppins';
    color: var(--mine-shaft);
    font-size: 18px;
    line-height: 150%;
}
.single-stat-box:nth-child(even) h2 {
    color: var(--crimson);
}
.easy-quick-safe-main {
    margin: 75px 0px 0px;
}
.easy-quick-safe-head h2 {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
    color: #1F2937;
    text-align: center;
}
.easy-quick-safe-head p {
    font-size: 29px;
    text-align: center;
    font-family: "Oswald", sans-serif;
    line-height: 96%;
    margin: 10px 0px 0px;
    font-weight: 400;
    color: #6B7280;
}
.easy-quick-safe-head {
    max-width: 790px;
    margin: 0 auto 64px;
}
.easy-quick-safe-steps-flex {
    max-width: 1280px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.easy-quick-safe-single-step {
    width: 23%;
}
.step-content {
    margin: 10px 0px 0px;
    text-align: center;
}
.step-content h6 {
    font-family: 'Poppins';
    line-height: 100%;
    font-weight: 600;
    margin: 0 0 20px;
    color: #1F2937;
}
.step-content p {
    margin: 0px;
    color: #6B7280;
    line-height: 142.857%;
    font-weight: 400;
    font-family: 'Poppins';
    font-size: 14px;
}
.easy-quick-safe-steps-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}
.easy-quick-safe-steps-container::before {
    position: absolute;
    content: "";
    background-image: url(https://alphawebvision.com/your-express-auto/wp-content/uploads/2025/04/section-interacting-line.png);
    width: 100%;
    height: 103px;
    top: 110px;
    background-size: contain;
    background-repeat: no-repeat;
}
.reviews-slide-container {
    background-color: var(--white);
    box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.13), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(0px);
    border-radius: 4px;
    padding: 20px 20px;
}
.reviews-slide-head {
    align-items: center;
    justify-content: space-between;
}
.reviewer-initial {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.reviewer-initial p {
    color: var(--white);
    font-family: 'Oswald';
    font-size: 18px;
    font-weight: 600;
}
.reviewer-info h6 {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    font-family: 'Poppins';
    color: var(--black);
    margin: 0 0 2px;
}
.reviewer-info span {
    color: #8A8A8A;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
}
.review-source {
    width: 20px;
}
.review-source img {
    width: 100%;
    max-width: 100%;
}
.reviewer-info {
    width: calc(100% - 90px);
}
.review-stars {
    margin: 20px 0px 40px;
}
.review-content p {
    font-size: 15px;
    color: var(--black);
    font-family: 'Poppins';
    line-height: 145%;
}
.reviews-nav-container .swiper-button-next, .reviews-nav-container  .swiper-button-prev {
    background-image: none;
    width: 57px;
    height: 57px;
}
.reviews-nav-container .swiper-button-next {
    right: -80px;
}
.reviews-nav-container .swiper-button-prev {
    left: -80px;
}
.reviews-slider-container {
    position: relative;
}
.latest-feedback-section {
    padding: 48px 0px 27px;
    background-color: var(--gallery);
}
.latest-feedback-head {
    text-align: center;
}
.latest-feedback-head h2 {
    font-family: 'Inter';
    font-size: 40px;
    color: #0B0B0A;
    line-height: 120%;
}
.latest-feedback-head p {
    margin: 17px 0px 0px;
    font-size: 16px;
    font-family: 'Manrope';
    color: var(--limed-spruce);
    line-height: 150%;
}
.latest-feedback-container {
    margin: 43px 0px 0px;
    position: relative;
}
.feedback-slide-text {
    text-align: center;
    margin: 17px 0px 0px;
}
.feedback-slide-text h6 {
    font-size: 16px;
    font-family: 'Manrope';
    color: #0B0B0A;
    line-height: 150%;
    font-weight: 700;
}
.feedback-slide-video {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
}
.feedback-slide-video-file, .feedback-slide-video-youtube {
    position: relative;
    width: 100%;
    height: 100%;
}
.feedback-slide-video-thumbnail {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.feedback-slide-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-play-icon {
    position: absolute;
    margin: auto;
    width: 60px;
    height: 44px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    cursor: pointer;
}
.feedback-nav-container .swiper-button-prev, .feedback-nav-container .swiper-button-next {
    background-image: none;
    width: 56px;
    cursor: pointer;
    height: 56px;
}
.feedback-nav-container .swiper-button-prev {
    left: -100px;
}
.latest-feedback-slider.swiper-container {
    position: relative;
}
.latest-feedback-slider.swiper-container .swiper-wrapper {
}
.feedback-nav-container .swiper-button-next {
    right: -100px;
}
.feedback-slide-video-file video, .feedback-slide-video-youtube iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shipping-services-section {
    background-color: #F8FAFF;
    padding: 80px 0px 60px;
}
.shipping-services-head {
    text-align: center;
}
.shipping-services-head h2 {
    font-family: 'Oswald';
    font-size: 35px;
    line-height: 115%;
}
.shipping-services-head p {
    margin: 0px;
    font-size: 20px;
    font-family: 'Poppins';
    color: #727272;
    margin: 17px 0px 0px;
}
.shipping-services-container {
    margin: 64px 0px 0px;
}
.shipping-services-flex {
    justify-content: space-between;
}
.shipping-services-single {
    width: 32%;
}
.shipping-services-section .container {
    max-width: 1320px;
}
.shipping-services-single-content {
    background-color: var(--white);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.23);
    padding: 33px 42px 38px;
    border-radius: 20px;
    text-align: center;
}
.shipping-services-single-content h4 {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 120% */
    text-transform: uppercase;
    font-family: 'Oswald';
    color: var(--black);
}
.shipping-services-single-body p {
    line-height: 150%;
    font-family: 'Poppins';
    font-size: 16px;
    color: var(--mine-shaft);
}
.shipping-services-single-body {
    min-height: 132px;
}
.shipping-services-single-content a {
    font-size: 14px;
    font-family: 'Poppins';
    color: var(--mine-shaft);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    text-underline-offset: 7px;
}
.shipping-services-single-content a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}
.three-steps-home {
    position: relative;
    padding: 70px 0px;
    background-color: #F8FAFF;
}

.three-steps-container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
}
.three-steps-flex {
    justify-content: space-between;
}
.three-single-step {
    width: 32%;
    border-radius: 20px;
    border: 1px solid #D0D0D0;
    background-color: var(--white);
    padding: 22px 21px;
}
.step-inner-flex {
    align-items: center;
    gap: 15px;
}
.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--ikb);
    border-radius: 50%;
}
.step-text h4 {
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    line-height: 120%;
    color: var(--mine-shaft);
}
.page-common-section {
    padding: 60px 0px 65px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.page-common-content {
    text-align: center;
}
.page-common-main {
    position: relative;
    z-index: 1;
}
.page-common-section::after {
	position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(https://alphawebvision.com/your-express-auto/wp-content/uploads/2025/04/Gradient.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-common-content-heading h2 {
    color: var(--white);
    font-size: 35px;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-weight: 600;
    line-height: 120%;
}
.page-common-content-body {
    margin: 25px 0px;
}
.page-common-content-body p, .page-common-content-body {
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
    font-family: 'Poppins';
    font-weight: 300;
}
.page-common-content-link a {
    text-transform: uppercase;
}
.transport-provided-section {
    padding: 70px 0px 84px;
    background-color: #ebebeb;
}

.transport-provided-section .container {
    max-width: 1320px;
}
.transport-provided-head {
    max-width: 969px;
    margin: 0 auto;
    text-align: center;
}
.transport-provided-head h2 {
    font-size: 35px;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-weight: 600;
    line-height: 120%;
    color: var(--mine-shaft);
}
.transport-provided-body {
    margin: 20px 0px 0px;
}
.transport-provided-body p {
    margin: 0px;
    font-size: 16px;
    line-height: 150%;
    font-family: 'Poppins';
    color: var(--mine-shaft);
    font-weight: 400;
}
.transport-provided-container {
    margin: 55px 0px 0px;
}
.transport-provided-single {
    width: 24.2%;
    padding: 20px 20px;
    border-radius: 10px;
}
.transport-provided-flex {
    justify-content: space-between;
    align-items: stretch;
}
.transport-provided-single:nth-child(odd) {
    background-color: #F5F7FA;
}
.transport-provided-single:nth-child(even) {
    background-color: #E2E6EC; 
}
.transport-provided-single .transport-provided-head {
    max-width: 100%;
    text-align: left;
}
.transport-provided-single .transport-provided-head h4 {
    font-size: 25px;
    font-family: 'Oswald';
    font-weight: 600;
    line-height: 120%;
    color: var(--mine-shaft);
    text-transform: uppercase;
}
.transport-provided-body p {
    margin: 0px;
    font-size: 16px;
    line-height: 150%;
    font-family: 'Poppins';
    color: var(--mine-shaft);
    font-weight: 400;
}
.faq-section {
    padding: 85px 0px;
    background-color: #F8F9FB;
}
.faq-head h2 {
    font-size: 35px;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-weight: 600;
    line-height: 120%;
    color: var(--mine-shaft);
}
.faq-container {
    margin: 27px 0px 0px;
}
.faq-left {
    width: 52.8%;
}
.faq-flex {
    justify-content: space-between;
    align-items: flex-start;
}
.faq-right {
    width: 34.22%;
}
.faq-image {
    border-radius: 20px;
    overflow: hidden;
}
.faq-accordion-single {
    padding: 20px 20px 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.23);
}
.faq-question {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 26px;
}
.faq-question h5 {
    font-size: 22px;
    color: var(--mine-shaft);
    text-transform: uppercase;
    font-family: 'Oswald';
    line-height: 140%;
    font-weight: 400;
}
.faq-question .faq-icon {
    transition: .4s ease-in-out;
    transform: rotateX(0);
}
.faq-question.active .faq-icon {
    transform: rotateX(180deg);
}
.faq-answer p {
    margin: 0px;
    font-size: 16px;
    color: #667085;
    line-height: 150%;
    font-family: 'Inter';
}
.faq-answer {
    margin: 20px 0px 0px;
    display: none;
}
.latest-articles-section {
    padding: 87px 0px;
}
.latest-articles-head {
    max-width: 710px;
    margin: 0 auto;
    text-align: center;
}
.latest-articles-head h2 {
    font-size: 39px;
    line-height: 120%;
    color: #0B0B0A;
    font-family: 'Oswald';
}
.latest-articles-head p {
    font-size: 16px;
    margin: 0px;
    font-family: 'Manrope';
    color: #374D55;
    margin: 17px 0px 0px;
}
.latest-articles-container {
    margin: 51px 0px 0px;
    position: relative;
}
.post-slide-inner {
    background-color: var(--white);
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    padding: 24px 24px 32px;
    border-radius: 20px;
}
.latest-articles-slider {
    padding: 10px 10px;
}
.slide-image {
    width: 100%;
}
.slide-image a {
    display: block;
    width: 100%;
}
.slide-image a img {
    width: 100%;
    height: 272px;
}
.slide-content {
    margin: 32px 0px 0px;
}
.post-title a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #101828;
    font-size: 24px;
    font-family: 'Inter';
    line-height: 133%;
    font-weight: 600;
}
.post-title a .arrow-icon {
	width: 24px;
	height: 24px;
	margin: 10px 0px 0px;
}
.post-title a .arrow-icon img {
    width: 100%;
}
.slide-post-excerpt {
    margin: 12px 0px 0px;
}
.slide-post-excerpt p {
    margin: 0px;
    font-size: 16px;
    line-height: 150%;
    color: #667085;
    font-family: 'Inter';
    font-weight: 400;
}
.slide-post-date {
    margin: 28px 0px 0px;
    font-size: 14px;
    line-height: 140%;
    color: #667085;
    font-family: 'Inter';
    font-weight: 400;
}
.latest-articles-nav-container .swiper-button-next, .latest-articles-nav-container .swiper-button-prev {
    background-image: none;
    width: 56px;
    height: 56px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    border-radius: 50%;
}
.latest-articles-nav-container .swiper-button-next {
    right: -100px;
}
.latest-articles-nav-container .swiper-button-prev {
    left: -100px;
}
.home-quote-section {
    padding: 15px 0px 90px;
}
.home-quote-container {
    margin: 87px 0px 0px;
}
.home-quote-head {
    text-align: center;
}
.home-quote-head h2 {
    font-size: 39px;
    line-height: 130%;
    color: #0B0B0A;
    font-family: 'Oswald';
    font-weight: 600;
}
.home-quote-left {
    width: 50%;
}
.home-quote-right {
    width: 43.1%;
}
.home-quote-flex {
    justify-content: space-between;
}
.home-quote-image {
    border-radius: 20px;
    overflow: hidden;
}
.form-common-field p {
    margin: 0px;
}
.form-common-field input, .form-common-field textarea {
    background-color: #EFEFEF;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .23);
    width: 100%;
    font-size: 16px;
    color: #3E3E3E;
    font-family: 'Poppins';
    font-weight: 500;
    padding: 15px;
    display: block;
}
.form-common-field input {
    height: 53px;
}
.form-flex-field {
    width: 48.3%;
}
.form-fields-flex {
    justify-content: space-between;
}
.form-common-field {
    margin-bottom: 17px;
}
.form-common-field input::placeholder, .form-common-field textarea::placeholder {
    font-size: 16px;
    color: #3E3E3E;
    font-family: 'Poppins';
    font-weight: 500;
}
.form-common-field textarea {
    height: 168px;
	resize: none;
}
.form-submit-field .primary-button {
    width: 100%;
    text-transform: uppercase;
}
/* .form-common-field:nth-last-child(2) {
    margin: 0px;
} */
.form-submit-field p {
    margin: 0px;
}
.site-footer {
    background-color: var(--mine-shaft);
    position: relative;
}
.site-footer-main {
    padding: 113px 0px 27px;
    border-bottom: 1px solid rgba(255, 255, 255, .21);
    position: relative;
    z-index: 1;
}
.footer-columns-container {
    margin: 30px 0px 0px;
}
.site-footer-logo a img {
    max-width: 239px;
}
.footer-columns-flex {
    justify-content: space-between;
}
.footer-single-column {
    width: 25%;
}
.footer-column-heading h4 {
    font-size: 25px;
    color: var(--white);
    font-family: 'Oswald';
    line-height: 120%;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-column-heading {
    margin: 0 0 18px;
}
.footer-column-menu ul li a, .footer-contact-list ul li a {
    color: var(--white);
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 150%;
    padding: 0 0 5px;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: .4s ease-in-out;
}
.footer-column-menu ul li:not(:last-child), .footer-contact-list ul li:not(:last-child) {
    margin-bottom: 20px;
}
.footer-column-menu ul li a:hover, .footer-contact-list ul li a:hover {
    border-color: var(--white);
}
.site-footer::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(https://alphawebvision.com/your-express-auto/wp-content/uploads/2025/04/Image-3.png);
    background-size: cover;
    background-position: center;
}
.bottom-footer {
    position: relative;
    z-index: 1;
    padding: 32px 0px 54px;
}
.bottom-footer-flex {
    align-items: center;
    justify-content: space-between;
}
.bottom-footer-left p, .bottom-footer-right a {
    font-size: 16px;
    line-height: 150%;
    font-family: 'Poppins';
    color: var(--white);
    margin: 0px;
}
.bottom-footer-right-flex a:first-child {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid var(--white);
}
.footer-social-links ul li a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.footer-social-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 98px;
}
.header-hamburger {
	display: none;
}
.footer-contact-list ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.reviews-nav-container .swiper-button-next, .latest-articles-nav-container .swiper-button-next, .feedback-nav-container .swiper-button-next, .latest-articles-nav-container .swiper-button-prev, .feedback-nav-container .swiper-button-prev, .reviews-nav-container .swiper-button-prev {
	box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
	border-radius: 50%;
}
.works-service-banner-section {
	position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -88px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    height: 90vh;
    padding: 0 0 80px;
    overflow: hidden;
}
.works-service-banner-section .container {
    height: 100%;
    position: relative;
    z-index: 1;
}
.works-service-banner-main {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.works-service-banner-content h1 {
    font-size: 60px;
    color: var(--white);
    font-family: 'Poppins';
    font-weight: 600;
    text-transform: uppercase;
    line-height: 110%;
    text-align: center;
    padding: 0 0 25px;
    position: relative;
}
.works-service-banner-content-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}
.works-service-banner-content {
    max-width: 700px;
    margin: 0 auto;
}
.works-service-banner-content h1::after {
    position: absolute;
    content: "";
    width: 128px;
    height: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--white);
}
.works-service-banner-section::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://alphawebvision.com/your-express-auto/wp-content/uploads/2025/04/Gradient.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.works-service-banner-boxes {
    margin: 55px auto 0px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.works-service-banner-box {
    background-color: var(--white);
    border-radius: 10px;
    width: 23.85%;
    padding: 26px 0px 20px;
    text-align: center;
}
.works-service-banner-box-icon img {
    margin: 0 auto;
    display: block;
    max-width: 58px;
}
.works-service-banner-box-text {
    margin: 16px 0px 0px;
}
.works-service-banner-box-text h5 {
    font-size: 20px;
    font-family: 'Oswald';
    font-weight: 600;
    line-height: 120%;
    color: var(--crimson);
    text-transform: uppercase;
}
.page-template-how-it-works .easy-quick-safe {
    margin: 0px;
}
.customer-service-section {
    padding: 60px 0px;
    background-color: #F5F5F5;
}
.customer-service-head {
    text-align: center;
}
.customer-service-head h2, .stress-free-head h2, .custom-shipping-head h2, .awesome-reviews-head h2 {
    font-size: 35px;
    line-height: 120%;
    color: var(--mine-shaft);
    font-family: 'Oswald';
    font-weight: 600;
    text-transform: uppercase;
}
.customer-service-head p, .stress-free-head p, .custom-shipping-head p {
    color: var(--mine-shaft);
    margin: 20px 0px 0px;
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 150%;
}
.customer-service-container {
    margin: 50px 0px 0px;
}
.customer-service-section .container {
    max-width: 1320px;
}
.customer-service-left {
    width: 46.9%;
}
.customer-service-right {
    width: 45.32%;
}
.customer-service-flex {
    justify-content: space-between;
    align-items: center;
}
.customer-service-image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.customer-service-image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    height: 100%;
}
.customer-service-item-icon {
    width: 60px;
    height: 60px;
    background-color: var(--ikb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customer-service-item-flex {
    gap: 15px;
}
.customer-service-item-text {
    width: calc(100% - 76px);
}
.customer-service-item-text h4 {
    font-size: 25px;
    font-family: 'Oswald';
    line-height: 120%;
    text-transform: uppercase;
    font-weight: 600;
}
.customer-service-item-text p {
    margin: 10px 0px 0px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 150%;
    font-size: 16px;
    color: var(--mine-shaft);
}
.customer-service-item:not(:last-child) {
    margin-bottom: 34px;
}
.stress-free-section {
    padding: 70px 0px;
    background-color: #F8FAFF;
}
.stress-free-head {
    max-width: 485px;
    margin: 0 auto 55px;
    text-align: center;
}
section.custom-shipping-options {
    padding: 120px 0px;
    background-color: #F5F5F5;
	margin: 0px;
}
.custom-shipping-options .container {
    max-width: 1320px;
}
.custom-shipping-head {
    text-align: center;
}
.custom-shipping-options {
    margin: 45px 0px 0px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 31px;
}
.custom-shipping-option {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.23);
    background: rgba(255, 255, 255, 0.00);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
    width: 23.175%;
    padding: 28px 15px;
    text-align: center;
}
.custom-shipping-option h4 {
    color: var(--black);
    font-size: 25px;
    font-family: 'Oswald';
    text-transform: uppercase;
    line-height: 120%;
}
.custom-shipping-option-body {
    margin: 20px 0px 0px;
    min-height: 120px;
}
.custom-shipping-option-body p {
    margin: 0px;
    font-size: 16px;
    line-height: 150%;
    color: var(--mine-shaft);
    font-family: 'Poppins';
    font-weight: 400;
}
.custom-shipping-option a {
    font-size: 14px;
    font-family: 'Poppins';
    color: var(--mine-shaft);
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-weight: 600;
    line-height: 120%;
}
.awesome-reviews-section {
    padding: 60px 0px 40px;
}
.awesome-reviews-head {
    max-width: 630px;
    margin: 0 auto;
    text-align: center;
}
.awesome-reviews-container {
    margin: 50px 0px 0px;
}
.awesome-reviews-sources {
    margin: 0 auto 50px;
    max-width: 800px;
    display: flex;
    gap: 46px;
    flex-wrap: wrap;
}
.awesome-reviews-source {
    width: 29.5%;
}
.page-common-content-heading h2 span {
    font-weight: 400;
}
.page-common-content-heading h2 span.color-two {
    color: var(--crimson);
}
.page-common-content-heading h2 span.color-three {
    color: var(--ikb);
}
.quote-pickup-section {
    padding: 60px 0px;
    background-color: #F5F5F5;
}
.quote-pickup-flex {
    align-items: center;
    justify-content: space-between;
}
.quote-pickup-image {
    border-radius: 20px;
    overflow: hidden;
}
.quote-pickup-section .container {
    max-width: 1320px;
}
.quote-pickup-left {
    width: 37.6%;
}
.quote-pickup-image img {
    width: 100%;
    max-width: 100%;
}
.quote-pickup-right {
    width: 56%;
}
.quote-pickup-content h2 {
    font-size: 35px;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-weight: 600;
    line-height: 120%;
    color: var(--mine-shaftt);
}
.quote-pickup-body {
    margin: 20px 0px 0px;
}
.quote-pickup-body p {
    margin: 0px;
    font-size: 16px;
    font-family: 'Poppins';
    color: #727272;
    line-height: 150%;
    font-weight: 400;
}
.book-vehicle-section {
    padding: 80px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.book-vehicle-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(https://alphawebvision.com/your-express-auto/wp-content/uploads/2025/04/Gradient.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.book-vehicle-section .container {
    max-width: 1320px;
    position: relative;
    z-index: 1;
}
.book-vehicle-flex {
    align-items: center;
    justify-content: space-between;
}
.book-vehicle-left {
    width: 53.5%;
}
.book-vehicle-right {
    width: 41%;
}
.book-vehicle-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.book-vehicle-image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}
.book-vehicle-content h2 {
    font-size: 35px;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-weight: 600;
    line-height: 120%;
    color: var(--white);
}
.book-vehicle-body {
    margin: 20px 0px 0px;
}
.book-vehicle-body p {
    margin: 0px;
    font-size: 16px;
    font-family: 'Poppins';
    color: #fff;
    line-height: 150%;
    font-weight: 400;
}
.cost-table-section {
    padding: 40px 0px 70px;
}
.cost-table-section .container {
    max-width: 1320px;
}
.book-vehicle-container table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #EEE;
}
.book-vehicle-container table tr:first-child th {
    background-color: var(--ikb);
    padding: 12px;
    color: var(--white);
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    border: 1px solid #fff;
}
.book-vehicle-container table tr:nth-child(2) td {
    color: var(--crimson);
    font-size: 16px;
    font-family: 'Oswald';
    text-align: center;
    text-transform: uppercase;
}
.book-vehicle-container table tr td {
    padding: 12px;
    text-align: center;
    line-height: 150%;
    font-size: 14px;
    color: #666;
    font-family: 'Oswald';
    border: 1px solid #EEE;
}
.who-we-serve-section {
    padding: 80px 0px;
}
.who-we-serve-section .container {
    max-width: 1320px;
}
.who-we-serve-head {
    text-align: center;
}
.who-we-serve-head h2 {
    color: var(--crimson);
    font-size: 35px;
    font-weight: 600;
    font-family: 'Oswald';
    text-transform: uppercase;
    line-height: 120%;
}
.who-we-serve-container {
    margin: 50px 0px 0px;
}
.who-we-serve-flex {
    gap: 15px;
}
.who-we-serve-single {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.23);
    background: #FFF;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    padding: 21px 21px;
    width: 24.1%;
}
.who-we-serve-single-heading h4 {
    font-size: 25px;
    font-family: 'Oswald';
    text-transform: uppercase;
    line-height: 120%;
    color: var(--mine-shaft);
}
.who-we-serve-single-content {
    margin: 20px 0px 0px;
}
.who-we-serve-single-content p {
    margin: 0px;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    font-family: 'Poppins';
    color: var(--mine-shaft);
}
.go-with-experts-section {
    padding: 20px 0px 80px;
}
.go-with-experts-container {
    max-width: 873px;
    margin: 0 auto;
    text-align: center;
}
.go-with-experts-content h2 {
    color: var(--black);
    font-size: 35px;
    font-family: 'Oswald';
    text-transform: uppercase;
    line-height: 120%;
    margin-bottom: 30px;
}
.go-with-experts-content p {
    line-height: 150%;
    font-family: 'Poppins';
    font-size: 16px;
    color: var(--mine-shift);
    margin: 0 0 20px;
}
.go-with-experts-content p:last-child {
    margin-bottom: 0px;
}
.satisfied-customer-section {
    padding: 80px 0px;
    background-color: #F2F4F9;
    background-image: url(https://alphawebvision.com/your-express-auto/wp-content/uploads/2025/04/Image-5.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.satisfied-customer-section .container {
    max-width: 1320px;
}
.satisfied-customer-flex {
    gap: 20px;
}
.satisfied-customer-single {
    width: 32.2%;
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.23);
    padding: 45px 21px;
    background-image: url(https://alphawebvision.com/your-express-auto/wp-content/uploads/2025/04/Image-4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.satisfied-customer-icon {
    max-width: 70px;
    height: 70px;
    background-color: var(--ikb);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.satisfied-customer-content {
    margin: 19px 0px 0px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.satisfied-customer-content h4 {
    font-size: 25px;
    font-family: 'Oswald';
    line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--mine-shift);
}
.satisfied-customer-body {
    margin: 10px 0px 0px;
}
.satisfied-customer-body p {
    margin: 0px;
    color: var(--mine-shift);
    font-size: 16px;
    line-height: 150%;
    font-family: 'Poppins';
    font-weight: 400;
}
.page-template-about-us .works-service-banner-main {
    align-items: flex-end;
}
.common-banner-section {
    height: 65vh;
}
.works-service-banner-content p {
    font-size: 15px;
    color: var(--white);
    font-family: 'Poppins';
    text-align: center;
    line-height: 140%;
}
.three-steps-about {
    background-color: #F8FAFF;
    padding: 70px 0px 20px;
}
.contact-form-section .container {
    max-width: 1320px;
}
.contact-form-section {
    padding: 80px 0px 20px;
}
.contact-form-left {
    width: 45.35%;
}
.contact-form-right {
    width: 50%;
}
.contact-form-flex {
    justify-content: space-between;
    align-items: flex-start;
}
.contact-form-heading h2, .contact-info-head h2 {
    font-size: 35px;
    font-family: 'Oswald';
    font-weight: 600;
    text-transform: uppercase;
    color: var(--mine-shaft);
    line-height: 120%;
}
.contact-form-container {
    margin: 53px 0px 0px;
}
.contact-info-container {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.23);
    background: #F8FAFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
    padding: 91px 61px 61px;
}
.contact-info-head p {
    margin: 20px 0px 0px;
    font-size: 16px;
    line-height: 150%;
    font-family: 'Poppins';
    font-weight: 400;
}
.contact-info-list {
    margin: 41px 0px 0px;
}
.contact-info-list-item-flex {
    gap: 20px;
    align-items: flex-start;
}
.contact-info-list-item-text h5 {
    font-size: 18px;
    line-height: 150%;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins';
    color: var(--mine-shaft);
}
.contact-info-list-item-text p {
    margin: 0px;
    font-size: 18px;
    line-height: 150%;
    font-family: 'Poppins';
    color: var(--mine-shaft);
    margin: 6px 0px 0px;
}
.contact-info-list-item:not(:last-child) {
    margin-bottom: 16px;
}
.contact-info-list-item-icon {
    margin: 5px 0px 0px;
}
.discount-content-section {
    padding: 62px 0px 99px;
}
.discount-content-section .container {
    max-width: 1320px;
}
.discount-content h2 {
    font-size: 36px;
    color: #0B0B0A;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    line-height: 133%;
}
.discount-content p {
    font-size: 24px;
    line-height: 141.667%;
    font-family: "Poppins", sans-serif;
    color: var(--mine-shift);
    font-weight: 400;
	margin: 20px 0px 0px;
}
.wpcf7-response-output {
    font-family: 'Poppins';
    font-size: 14px !important;
}
.wpcf7-not-valid-tip {
    font-family: 'Poppins';
    font-size: 12px;
    margin: 5px 0px;
}
/* Quote Form */

.step-form-main {
    padding: 78px 0px 40px;
}
.step-form-number-text h2 {
    font-size: 35px;
    font-family: 'Oswald';
    font-weight: 400;
    line-height: 138%;
    color: #0B0B0A;
}
.step-form-number-text h2 a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-thickness: 2px;
}
.step-zip-codes {
    margin: 82px auto 0px;
    max-width: 1083px;
    padding: 12px 12px 12px 32px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02) inset, 0px 6px 12px 0px rgba(19, 94, 172, 0.12);
}
.step-zip-code-center {
    width: 52%;
}
.step-zip-code-left label, .step-zip-code-center label {
    color: #3E3E3E;
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
    text-align: left;
}
.step-zip-code-left input, .step-zip-code-center input {
    margin: 10px 0px 0px;
    border: 0px;
    outline: none;
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #BCBCBC;
    text-transform: uppercase;
    margin: 6px 0px 0px;
    text-align: left;
    width: 100%;
}
.step-zip-code-center {
    padding-left: 24px;
    border-left: 2px solid #ACACAC;
}
.step-zip-code-left {
    width: 48%;
}
.step-content .uacf7-buttons {
    margin: 40px auto 0px;
    display: block;
    max-width: 1083px;
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    position: relative;
}
.step-content .uacf7-buttons .uacf7-next {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: var(--white);
    padding: 20px 65px;
    border-radius: 8px;
    border: 1px solid var(--crimson);
    background-color: var(--crimson);
    box-sizing: border-box;
    transition: .4s ease-in-out;
    max-width: 100%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}
.step-content .uacf7-buttons .wpcf7-spinner {
    position: absolute;
    right: 410px;
}
.step-content .uacf7-buttons .uacf7-prev {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: var(--white);
    padding: 20px 40px;
    border-radius: 8px;
    border: 1px solid var(--ikb);
    background-color: var(--ikb);
    box-sizing: border-box;
    transition: .4s ease-in-out;
    max-width: 100%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}
.step-content .uacf7-buttons .uacf7-next::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease-in-out;
    pointer-events: none;
}
.step-content .uacf7-buttons .uacf7-next:hover, .step-content .uacf7-buttons .uacf7-prev:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--crimson), darkred);
    border-color: darkred;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.step-content .uacf7-buttons .uacf7-next:hover::before, .step-content .uacf7-buttons .uacf7-prev:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}
.quote-page-reviews {
    padding: 50px 0px 71px;
}
.quote-page-reviews-container {
    margin: 30px 0px 0px;
}
.quote-page-rev-head h2 {
    font-family: "Oswald", sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--mine-shaft);
    text-align: center;
}
.quote-page-rev-head h2 span {
    font-weight: 400;
}
.quote-page-rev-head h2 .color-two {
    color: var(--crimson);
}
.quote-page-rev-head h2 .color-three {
    color: var(--ikb);
}
.step-zip-code-left .wpcf7-not-valid-tip, .step-zip-code-center .wpcf7-not-valid-tip {
    text-align: left;
}
.step-container {
    max-width: 1083px;
    margin: 100px auto 0px;
    background-color: #F6F6F6;
    border-radius: 34px;
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
    padding: 32px 97px;
}
.step-numbers-flex {
    justify-content: center;
    gap: 134px;
}
.step-number-single {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 112%;
    color: var(--white);
    font-weight: 400;
    position: relative;
}
.step-number-single.active-step {
    background-color: #EFF0F6;
    color: #6F6C90;
}
.step-number-single:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 98px;
    height: 6px;
    background-color: #EFF0F6;
    border-radius: 40px;
    right: 54px;
}
.step-number-single.active-step ~ .step-number-single {
    background-color: #EFF0F6;
    color: #6F6C90;
}
.step-number-single.active-step::after {
    position: absolute;
    content: "";
    width: 49px;
    height: 6px;
    border-radius: 40px;
    background-color: var(--crimson);
    left: -116px;
}
.step-discount {
    text-align: left;
    margin: 66px 0px 25px;
}
.step-discount p {
    font-size: 18px;
    font-family: 'Oswald';
    line-height: 166%;
    font-weight: 400;
    color: var(--crimson);
}
.number-of-vehicles {
    text-align: left;
}
.number-of-vehicles label {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Oswald';
    line-height: 111%;
    color: #170F49;
    margin: 0 0 18px;
}
.number-of-vehicles input {
    width: 197px;
    height: 66px;
    box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
    border: 1px solid #EFF0F6;
    outline: none;
    padding: 18px 21px;
    font-size: 18px;
    line-height: 111px;
    color: #6F6C90;
    font-family: 'Oswald';
    font-weight: 400;
    border-radius: 10px;
}
.vehicle-specs-fields-container {
    margin: 44px 0px 35px;
}
.vehicle-specs-fields-flex {
    align-items: flex-end;
    justify-content: space-between;
}
.vehicle-specs-field-left label {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Oswald';
    line-height: 111%;
    color: #170F49;
    margin: 0 0 18px;
}
.vehicle-specs-fields-container .uacf7_conditional:not(:last-child) {
    margin-bottom: 40px;
}
.vehicle-specs-field-left {
    width: 22%;
    text-align: left;
}
.vehicle-specs-field-center {
    width: 35.5%;
}
.vehicle-specs-field-right {
    width: 35.5%;
}
.vehicle-specs-field-left select, .vehicle-specs-field-center select, .vehicle-specs-field-right input {
    height: 66px;
    box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
    border: 1px solid #EFF0F6;
    outline: none;
    padding: 18px 21px;
    font-size: 18px;
    line-height: 111px;
    color: #6F6C90;
    font-family: 'Oswald';
    font-weight: 400;
    border-radius: 10px;
}
.vehicle-specs-field-left .wpcf7-form-control-wrap, .vehicle-specs-field-center .wpcf7-form-control-wrap, .vehicle-specs-field-right .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}
.vehicle-specs-field-left .wpcf7-form-control-wrap select, .vehicle-specs-field-center .wpcf7-form-control-wrap select, .vehicle-specs-field-right .wpcf7-form-control-wrap input {
    width: 100%;
}
.vehicle-operable-left {
    color: #95A5A6;
    font-family: 'Oswald';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 81.25%;
    text-transform: capitalize;
}
.vehicle-operable-flex {
    gap: 22px;
}
.vehicle-operable-option-single .wpcf7-list-item {
    margin: 0px;
    position: relative;
    display: inline-block;
    height: 35px;
}
.vehicle-operable-option-single .wpcf7-list-item.first {
    border-radius: 8px 0px 0px 8px;
}
.vehicle-operable-option-single .wpcf7-list-item.last {
    border-radius: 0px 8px 8px 0px;
}
.vehicle-operable-option-single .wpcf7-list-item .wpcf7-list-item-label {
    color: #374D55;
    text-align: center;
    font-family: 'Oswald';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    background-color: #ECF0F1;
    padding: 5px 15px;
    border: 1px solid #8CA2A9;
}
.vehicle-operable-option-single .wpcf7-list-item.first .wpcf7-list-item-label {
    border-radius: 8px 0px 0px 8px;
}
.vehicle-operable-option-single .wpcf7-list-item.last .wpcf7-list-item-label {
    border-radius: 0px 8px 8px 0px;
}
.vehicle-operable-option-single .wpcf7-list-item input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -9px;
    left: 0;
    opacity: 0;
}
.vehicle-operable-option-single .wpcf7-list-item label {
    display: block;
    height: 37px;
}
.vehicle-operable-option-single .wpcf7-list-item input:checked+.wpcf7-list-item-label {
    background-color: #374D55;
    color: #ECF0F1;
}
.step-head h2 {
    color: #170F49;
    font-size: 35px;
    line-height: 135%;
    font-family: 'Oswald';
    font-weight: 600;
    margin: 0 0 15px;
}
.step-head p {
    font-size: 18px;
    font-family: 'Oswald';
    line-height: 166%;
    color: #6F6C90;
    font-weight: 400;
}
.vehicle-specs-field-left .wpcf7-form-control-wrap .wpcf7-not-valid-tip, .vehicle-specs-field-center .wpcf7-form-control-wrap .wpcf7-not-valid-tip, .vehicle-specs-field-right .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
}
#step-three .step-number-single:nth-child(2)::after {
    content: "";
    position: absolute;
    content: "";
    width: 98px;
    height: 6px;
    border-radius: 40px;
    background-color: var(--crimson);
    left: -116px;
}
.transport-types-container {
    margin: 27px auto 0px;
    max-width: 596px;
    padding: 40px 0px 0px;
    border-top: 1px solid #D9DBE9;
}
.transport-type-single {
    background-color: var(--white);
    padding: 24px 24px 32px;
    border-radius: 10px;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
    height: 100%;
}
.transport-types-left, .transport-types-right {
    width: 46.9%;
    position: relative;
}
.transport-types-flex {
    justify-content: space-between;
}
.transport-type-image img {
    width: 100%;
    max-width: 100%;
    height: 136px;
}
.transport-type-detail {
    margin: 32px 0px 0px;
    text-align: left;
}
.transport-type-detail h5 {
    font-size: 16px;
    line-height: 200%;
    color: #101828;
    font-family: 'Oswald';
    font-weight: 600;
}
.transport-type-detail p {
    font-family: 'Oswald';
    color: #667085;
    font-size: 12px;
    line-height: 125%;
    font-weight: 400;
}
.transport-types-left .wpcf7-radio .wpcf7-list-item.last {
    display: none;
}
.transport-types-right .wpcf7-radio .wpcf7-list-item.first {
    display: none;
}
.transport-types-left .wpcf7-form-control-wrap, .transport-types-right .wpcf7-form-control-wrap {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    bottom: 0;
    text-align: left;
}
.transport-types-left .wpcf7-radio .wpcf7-list-item, .transport-types-right .wpcf7-radio .wpcf7-list-item {
    font-size: 0px;
}
.transport-types-left .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after, .transport-types-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid var(--crimson);
    border-radius: 50%;
    left: 0;
    top: 0;
}
.transport-types-left .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before, .transport-types-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 13px;
    height: 5px;
    border-color: var(--white);
    border-width: 2px;
    border-style: solid;
    position: absolute;
    border-top: 0px;
    border-right: 0px;
    transform: rotate(-45deg);
    top: 10px;
    right: 17px;
    opacity: 0;
    z-index: 1;
}
.transport-types-left .wpcf7-radio .wpcf7-list-item input, .transport-types-right .wpcf7-radio .wpcf7-list-item input {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    z-index: 1;
    opacity: 0;
}
.transport-types-left .wpcf7-radio .wpcf7-list-item input:checked+.wpcf7-list-item-label::before, .transport-types-right .wpcf7-radio .wpcf7-list-item input:checked+.wpcf7-list-item-label::before {
    opacity: 1;
}
.transport-types-left .wpcf7-radio .wpcf7-list-item input:checked+.wpcf7-list-item-label::after, .transport-types-right .wpcf7-radio .wpcf7-list-item input:checked+.wpcf7-list-item-label::after {
    background-color: var(--crimson);
}
#step-four .step-number-single:nth-child(2)::after, #step-four .step-number-single:nth-child(3)::after {
    content: "";
    position: absolute;
    content: "";
    width: 98px;
    height: 6px;
    border-radius: 40px;
    background-color: var(--crimson);
    left: -116px;
}
.customer-information-fields-container {
    max-width: 656px;
    margin: 32px auto 0px;
    padding: 100px 0px 0px;
    border-top: 1px solid #D9DBE9;
}
.customer-information-single-field {
    width: 45.6%;
    text-align: left;
}
.customer-information-fields-flex {
    justify-content: space-between;
}
.customer-information-single-field label {
    font-size: 12px;
    color: #000;
    font-family: 'Oswald';
    line-height: 166%;
    font-weight: 600;
    margin: 0 0 8px;
}
.customer-information-single-field span {
    display: block;
    width: 100%;
}
.customer-information-single-field input {
    width: 100%;
    border: 1px solid #EFF0F6;
    background-color: #fff;
    box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
    height: 40px;
    padding: 5px 10px;
    font-size: 11px;
    line-height: 181%;
    color: #6F6C90;
    font-weight: 400;
    font-family: 'Poppins';
    border-radius: 10px;
}
.customer-information-fields-flex:not(:last-child) {
    margin-bottom: 27px;
}
.form-acceptance-field p {
    font-size: 12px;
    font-family: 'Oswald';
    line-height: 150%;
    color: #667085;
}
.form-acceptance-field {
    margin: 10px 0px 0px;
}
.form-acceptance-field p a {
    text-decoration: underline;
    color: inherit;
}
.form-submit-container {
    width: 45.6%;
}
.form-submit-container input {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: var(--white);
    padding: 14px 29px;
    border-radius: 8px;
    border: 1px solid var(--crimson);
    background-color: var(--crimson);
    box-sizing: border-box;
    transition: .4s ease-in-out;
    max-width: 100%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 3.5px;
}
.form-submit-container .wpcf7-spinner {
    margin: 20px 0px 0px;
    display: block;
}
.number-of-vehicles p {
    margin: 10px 0px 0px;
}
.number-of-vehicles input::-webkit-outer-spin-button,
.number-of-vehicles input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.number-of-vehicles input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
/* Quote Form */
.post-detail-banner-section .container, .post-detail-content-section .container {
    max-width: 1120px;
}
.post-detail-banner-section {
    padding: 30px 0px 0px;
    margin: 0 0 30px;
}
.post-detail-banner-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.post-detail-banner-image {
    border-radius: 20px;
    overflow: hidden;
}
.post-detail-content-head h1 { 
    font-family: 'Oswald';
    color: var(--crimson);
    font-weight: 500;
    line-height: 100%;
    font-size: 42px;
}
.post-detail-content h2, .post-detail-content h3, .post-detail-content h4, .post-detail-content h5, .post-detail-content h6 {
    font-family: 'Oswald';
    font-weight: 400;
}
.post-detail-content h2, .post-detail-content h3, .post-detail-content h4, .post-detail-content h5, .post-detail-content h6 {
    font-size: 30px;
    margin: 0 0 15px;
}
.post-detail-content p:not(:last-child), .post-detail-content ul li:not(:last-child) {
    margin: 0 0 15px;
}
.post-detail-content-head {
    margin: 0 0 15px;
}
.post-detail-content p, .post-detail-content ul li {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
}
nav.post-navigation {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 20px;
}
nav.post-navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav.post-navigation .nav-links a {
    font-family: 'Poppins';
    font-size: 14px;
    color: var(--crimson);
}
.latest-articles-flex {
    gap: 15px;
}
.latest-article-single-card {
    width: calc(33.33% - 10px);
}
.latest-articles--archive-section .container {
    max-width: 1384px;
}
.latest-articles--archive-section .post-slide-inner {
    box-shadow: 0px 12px 16px 16px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}
.reviews-slider {
    padding: 20px 20px;
}
.post--detail-banner .works-service-banner-content {
    max-width: 100%;
}
.post--detail-banner .works-service-banner-main {
    padding: 0 0 80px;
}
.post-detail-content-section {
    padding: 40px 0px 0px;
}

@media only screen and (max-width: 1400px) {
	.custom-shipping-options {
		gap: 30px;
	}
	.latest-articles-nav-container .swiper-button-prev, .feedback-nav-container .swiper-button-prev, .reviews-nav-container .swiper-button-prev {
		left: -60px;
	}
	.reviews-nav-container .swiper-button-next, .latest-articles-nav-container .swiper-button-next, .feedback-nav-container .swiper-button-next {
		right: -60px;
	}
}
@media only screen and (max-width: 1280px) {
	.reviews-nav-container .swiper-button-next, .latest-articles-nav-container .swiper-button-next, .feedback-nav-container .swiper-button-next {
		right: -45px;
	}
	.latest-articles-nav-container .swiper-button-prev, .feedback-nav-container .swiper-button-prev, .reviews-nav-container .swiper-button-prev {
		left: -45px;
	}
	.header-container {
		max-width: 1200px;
	}
	.easy-quick-safe-steps-flex {
		max-width: 1200px;
	}
	.shipping-services-section .container, .three-steps-container, .transport-provided-section .container {
		max-width: 1200px;
	}
	.shipping-services-single-body {
		min-height: 165px;
	}
}
@media only screen and (max-width: 1028px) {
	.header-container {
		max-width: 95%;
		padding: 15px 20px;
	}
	.hero-banner-section {
		margin-top: -115px;
		height: 55vh;
	}
	.header-contact .primary-button {
		padding: 15px 15px;
		letter-spacing: 1px;
	}
	.header-navbar ul li.menu-item-has-children {
		padding-right: 20px;
		padding-bottom: 30px;
		margin-bottom: -30px;
		margin-right: -20px;
	}
	.header-navbar ul li a {
		font-size: 12px;
	}
	.sub-menu-icon {
		right: 0;
	}
	.hero-banner-main .container {
		height: calc(100% - 62px);
	}
	.hero-banner-quote {
		bottom: 20px;
	}
	.hero-banner-benefits-flex.flex-class {
		max-width: 95%;
	}
	.hero-banner-benefit-single {
		width: 25%;
	}
	.benefit-text h6 {
		font-size: 16px;
	}
	.benefit-icon {
		width: 30px;
	}
	.what-customer-says {
		padding: 50px 0px 70px;
	}
	.reviews-nav-container .swiper-button-next, .latest-articles-nav-container .swiper-button-next, .feedback-nav-container .swiper-button-next {
		right: 0;
	}
	.latest-articles-nav-container .swiper-button-prev, .feedback-nav-container .swiper-button-prev, .reviews-nav-container .swiper-button-prev {
		left: 0;
	}
	.reviews-nav-container .swiper-button-next, .latest-articles-nav-container .swiper-button-next, .feedback-nav-container .swiper-button-next, .latest-articles-nav-container .swiper-button-prev, .feedback-nav-container .swiper-button-prev, .reviews-nav-container .swiper-button-prev {
		box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
		border-radius: 50%;
	}
	.single-stat-box {
		padding: 20px;
	}
	.single-stat-box h2 {
		font-size: 36px;
	}
	.single-stat-box p {
		font-size: 16px;
	}
	.easy-quick-safe-main {
		margin: 50px 0px 0px;
	}
	.easy-quick-safe-head {
		margin: 0 auto 50px;
	}
	.easy-quick-safe-steps-container {
		max-width: 95%;
	}
	.easy-quick-safe-single-step {
		width: 27%;
	}
	.shipping-services-section {
		padding: 50px 0px;
	}
	.shipping-services-container {
		margin: 50px 0px 0px;
	}
	.shipping-services-single-content {
		padding: 20px 20px;
	}
	.three-steps-home {
		padding: 25px 0px;
	}
	.step-icon {
		width: 60px;
		height: 60px;
	}
	.step-icon img {
		max-width: 35px;
	}
	.step-text h4 {
		font-size: 20px;
		line-height: 140%;
	}
	.page-common-section {
		padding: 40px 0px;
	}
	.transport-provided-section {
		padding: 40px 0px;
	}
	.transport-provided-single .transport-provided-head h4 {
		font-size: 20px;
	}
	.transport-provided-single .transport-provided-head {
		min-height: 52px;
	}
	.transport-provided-body p {
		font-size: 14px;
	}
	.faq-section {
		padding: 40px 0px;
	}
	.faq-left {
		width: 62%;
	}
	.faq-accordion-single {
		padding: 20px;
	}
	.faq-question h5 {
		font-size: 20px;
	}
	.faq-icon img {
		max-width: 20px;
	}
	.latest-articles-section {
		padding: 45px 0px;
	}
	.latest-articles-container {
		margin: 40px 0px 0px;
	}
	.slide-content {
		margin: 20px 0px 0px;
	}
	.post-title a {
		font-size: 20px;
	}
	.slide-post-excerpt p {
		font-size: 14px;
	}
	.slide-image a img {
		height: 200px;
	}
	.home-quote-section {
		padding: 15px 0px 40px;
	}
	.site-footer-main {
		padding: 60px 0px 27px;
	}
	.bottom-footer {
		padding: 25px 0px;
	}
	.footer-column-menu ul li:not(:last-child), .footer-contact-list ul li:not(:last-child) {
		margin-bottom: 10px;
	}
	.works-service-banner-section {
		height: 55vh;
	}
	section.custom-shipping-options {
		padding: 80px 0px;
	}
	.custom-shipping-option {
		padding: 18px 10px;
	}
	.custom-shipping-options {
		gap: 22px;
	}
	.custom-shipping-option h4 {
		font-size: 20px;
	}
	.custom-shipping-option-body p {
		font-size: 14px;
	}
	.who-we-serve-section {
		padding: 60px 0px;
	}
	.who-we-serve-single {
		width: 23.7%;
		padding: 16px;
	}
	.satisfied-customer-section {
		padding: 60px 0px;
	}
	.satisfied-customer-single {
		width: 31.7%;
	}
	page-template-about-us .common-banner-section {
		height: 35vh;
	}
	.common-banner-section {
		height: 35vh;
	}
	.discount-content-section {
		padding: 60px 0px;
	}
	.discount-content h2 {
		font-size: 30px;
	}
	.discount-content p {
		font-size: 20px;
	}
	.step-zip-codes, .step-container, .step-content .uacf7-buttons {
		max-width: 95%;
	}
}
@media only screen and (max-width: 992px) {
	.header-hamburger {
		display: block;
	}
	.header-hamburger span {
		height: 2px;
		position: absolute;
		content: "";
		right: 0;
		top: 1px;
		display: block;
		width: 100%;
		border-radius: 22px;
		background: var(--crimson);
	}
	.header-hamburger {
		width: 31px;
		height: 22px;
		position: relative;
	}
	.header-hamburger span:not(:nth-child(2)) {
		width: 83%;
	}
	.header-navbar nav {
		/* display: none; */
		position: fixed;
		visibility: hidden;
		top: 50%;
		margin-top: 20px;
		-webkit-transform: translate(0%, -50%);
		transform: translate(0%, -50%);
		width: 100%;
		text-align: center;
		left: 0;
	}
	.header-contact {
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.header-hamburger span:nth-child(2) {
		inset: 0;
		margin: auto;
	}
	.header-hamburger span:nth-child(3) {
		bottom: 0;
		top: auto;
	}
	.header-navbar ul li a {
		position: relative;
		text-decoration: none;
		color: var(--white);
		/* overflow: hidden; */
		cursor: pointer;
		padding-left: 5px;
		padding-right: 5px;
		font-weight: 700;
		z-index: 2;
		display: inline-block;
		text-transform: uppercase;
		-webkit-transition: all 200ms linear;
		transition: all 200ms linear;
		font-size: 40px;
		display: inline-block;
		line-height: 48px;
	}
	.header-navbar::before, .header-navbar::after {
		content: "";
		position: fixed;
		width: 100vw;
		height: 100vh;
		background: var(--ikb);
		border-bottom-left-radius: 200%;
		z-index: -1;
		-webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
		transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
		transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
		transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
		-webkit-transform: translateX(100%) translateY(-100%);
		transform: translateX(100%) translateY(-100%);
		left: 0;
		top: 0;
	}
	.header-navbar ul {
		display: block;
	}
	body.nav-active .header-navbar nav {
		visibility: visible;
	}
	body.nav-active .header-navbar nav ul li {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		-webkit-transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
		transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
		transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
		transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
	}
	body.nav-active .header-navbar nav ul li {
		height: auto;
		line-height: 48px;
		min-height: auto;
		/* font-size: 0; */
	}
	body.nav-active .header-navbar nav ul li:nth-child(0) {
	  -webkit-transition-delay: 0.7s;
	  transition-delay: 0.7s;
	}

	body.nav-active .header-navbar nav ul li:nth-child(1) {
	  -webkit-transition-delay: 0.8s;
	  transition-delay: 0.8s;
	}

	body.nav-active .header-navbar nav ul li:nth-child(2) {
	  -webkit-transition-delay: 0.9s;
	  transition-delay: 0.9s;
	}
	body.nav-active .header-navbar nav ul li:nth-child(3) {
	  -webkit-transition-delay: 1s;
	  transition-delay: 1s;
	}
	body.nav-active .header-navbar nav ul li:nth-child(4) {
	  -webkit-transition-delay: 1.1s;
	  transition-delay: 1.1s;
	}
	body.nav-active .header-navbar nav ul li:nth-child(5) {
	  -webkit-transition-delay: 1.2s;
	  transition-delay: 1.2s;
	}
	body.nav-active .header-navbar nav ul li:nth-child(6) {
	  -webkit-transition-delay: 1.3s;
	  transition-delay: 1.3s;
	}
	body.nav-active .header-navbar nav ul li:nth-child(7) {
	  -webkit-transition-delay: 1.4s;
	  transition-delay: 1.4s;
	}
	body.nav-active .header-navbar nav ul li:nth-child(8) {
	  -webkit-transition-delay: 1.5s;
	  transition-delay: 1.5s;
	}
	body.nav-active .header-navbar nav ul li:nth-child(9) {
	  -webkit-transition-delay: 1.6s;
	  transition-delay: 1.6s;
	}
	body.nav-active .header-navbar nav ul li:nth-child(10) {
	  -webkit-transition-delay: 1.7s;
	  transition-delay: 1.7s;
	}
	body.nav-active .header-navbar::before, body.nav-active .header-navbar::after {
		-webkit-transform: translateX(0%) translateY(0%);
		transform: translateX(0%) translateY(0%);
		border-radius: 0;
	}
	.header-navbar::after {
		background-color: var(--crimson);
	}
	.header-navbar ul li.menu-item-has-children {
		margin: 0px;
		padding: 0px;
	}
	.header-navbar ul li a::after {
		position: absolute;
		content: "";
		top: 50%;
		margin-top: -2px;
		left: 50%;
		width: 0;
		height: 0;
		opacity: 0;
		background-color: var(--crimson);
		z-index: 1;
		-webkit-transition: all 200ms linear;
		transition: all 200ms linear;
	}
	body.nav-active .header-navbar nav ul li.current-menu-item a::after {
		height: 4px;
		opacity: 1;
		left: 0;
		width: 100%;
	}
	body.nav-active .header-navbar::before {
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
	}
	body.nav-active .header-navbar::after {
		-webkit-transition-delay: 0.1s;
		transition-delay: 0.1s;
	}
	.header-navbar .sub-menu li a {
		font-size: 30px;
	}
	.header-navbar .sub-menu {
		position: relative;
	}
	body.nav-active .header-navbar nav ul li .sub-menu li {
		line-height: 36px;
	}
	.header-navbar nav ul li .sub-menu li {
		margin: 0px !important;
		padding: 0px;
	}
	.nav-active .header-hamburger {
		transform: rotate(45deg);
	}
	.nav-active .header-hamburger span:nth-child(1), .nav-active .header-hamburger span:nth-child(3) {
		width: 100%;
		inset: 0;
		margin: auto;
	}
	.nav-active .header-hamburger span:nth-child(2) {
		display: none;
	}
	.nav-active .header-hamburger span:nth-child(3) {
		transform: rotate(90deg);
	}
	.sub-menu-icon img {
		display: none;
	}
	.sub-menu-icon {
		position: relative;
		width: 30px;
		height: 30px;
		display: block;
		position: absolute;
		right: 18vw;
		top: 10px;
	}
	.sub-menu-icon::after, .sub-menu-icon::before {
		position: absolute;
		content: "";
		background-color: var(--white);
	}
	.sub-menu-icon::after {
		width: 30px;
		height: 3px;
		left: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.sub-menu-icon::before {
		height: 30px;
		width: 3px;
		top: 0;
		margin: auto;
		left: 0;
		right: 0;
		transition: .4s ease-in-out;
		bottom: 0;
	}
	.menu-item-has-children:hover .sub-menu-icon::before {
		height: 0px;
	}
	h1 {
		font-size: 48px;
	}
	.hero-banner-section {
		height: 65vh;
		margin-top: -80px;
	}
	.hero-banner-content p {
		font-size: 20px;
	}
	.hero-banner-benefit-single {
		width: 48%;
	}
	.benefit-single-flex {
		justify-content: center;
	}
	.hero-banner-benefits-flex {
		gap: 15px;
		justify-content: center;
	}
	.hero-banner-main .container {
		height: calc(100% - 109px);
	}
	.what-customer-says {
		padding: 30px 0px 60px;
	}
	.what-customer-says-main .section-head h2 {
		font-size: 28px;
	}
	.google-reviews-container {
		margin: 30px 0px 0px;
	}
	.single-stat-box h2 {
		font-size: 30px;
	}
	.easy-quick-safe-main {
		margin: 30px 0px 0px;
	}
	.easy-quick-safe-head h2 {
		font-size: 32px;
	}
	.easy-quick-safe-head p {
		font-size: 22px;
	}
	.easy-quick-safe-head {
		margin: 0 auto 30px;
	}
	.easy-quick-safe-single-step {
		width: 30%;
	}
	.latest-feedback-section {
		padding: 30px 0px 40px;
	}
	.latest-feedback-head h2 {
		font-size: 36px;
		line-height: 110%;
	}
	.shipping-services-section {
		padding: 30px 0px 15px;
	}
	.shipping-services-container {
		margin: 30px 0px 0px;
	}
	.shipping-services-head p {
		margin: 14px 0px 0px;
		font-size: 16px;
	}
	.shipping-services-single-content h4 {
		font-size: 20px;
	}
	.shipping-services-single-content {
		padding: 15px;
	}
	.shipping-services-single-body p {
		font-size: 12px;
	}
	.shipping-services-single-body {
		min-height: 125px;
	}
	.three-single-step {
		padding: 15px;
	}
	.step-icon {
		width: 50px;
		height: 50px;
	}
	.step-icon img {
		max-width: 25px;
	}
	.step-text h4 {
		font-size: 15px;
	}
	.step-inner-flex {
		gap: 5px;
	}
	.three-steps-home {
		padding: 15px 0px 30px;
	}
	.shipping-services-head h2, .page-common-content-heading h2, .transport-provided-head h2, .faq-head h2, .home-quote-head h2 {
		font-size: 30px;
	}
	.transport-provided-section {
		padding: 30px 0px;
	}
	.transport-provided-container {
		margin: 30px 0px 0px;
	}
	.transport-provided-single {
		width: 49%;
	}
	.transport-provided-flex {
		gap: 15px 10px;
	}
	.faq-section {
		padding: 30px 0px;
	}
	.faq-accordion-single {
		padding: 15px 15px;
	}
	.faq-question {
		gap: 15px;
	}
	.faq-question h5 {
		font-size: 18px;
	}
	.faq-icon img {
		max-width: 15px;
	}
	.faq-answer p {
		font-size: 14px;
	}
	.latest-articles-section {
		padding: 30px 0px;
	}
	.site-footer-main {
		padding: 30px 0px 27px;
	}
	.footer-column-heading h4 {
		font-size: 20px;
	}
	.footer-column-menu ul li a, .footer-contact-list ul li a {
		font-size: 14px;
	}
	.bottom-footer {
		padding: 15px 0px;
	}
	.bottom-footer-left p, .bottom-footer-right a {
		font-size: 14px;
	}
	.home-quote-container {
		margin: 30px 0px 0px;
	}
	.home-quote-left {
		width: 53%;
	}
	.home-quote-image {
		height: 100%;
	}
	.home-quote-image img {
		height: 100%;
		object-fit: cover;
	}
	.form-common-field input, .form-common-field textarea, .form-common-field input::placeholder, .form-common-field textarea::placeholder {
		font-size: 14px;
	}
	.works-service-banner-section {
		padding: 0 0 40px;
	}
	.works-service-banner-box {
		width: 22%;
	}
	.works-service-banner-box-icon img {
		max-width: 40px;
	}
	.works-service-banner-box-text h5 {
		font-size: 13px;
	}
	.works-service-banner-boxes {
		justify-content: center;
	}
	.works-service-banner-content h1 {
		font-size: 48px;
	}
	.customer-service-section {
		padding: 40px 0px;
	}
	.customer-service-head p, .stress-free-head p, .custom-shipping-head p {
		font-size: 14px;
	}
	.customer-service-item-text h4 {
		font-size: 20px;
	}
	.customer-service-item-text p {
		font-size: 14px;
	}
	.customer-service-item:not(:last-child) {
		margin-bottom: 15px;
	}
	.customer-service-left {
		width: 52%;
	}
	.stress-free-section {
		padding: 40px 0px;
	}
	.customer-service-head h2, .stress-free-head h2, .custom-shipping-head h2, .awesome-reviews-head h2 {
		font-size: 30px;
	}
	.stress-free-section .container {
		padding: 0px;
	}
	section.custom-shipping-options {
		padding: 40px 0px;
	}
	.custom-shipping-option {
		width: 48.2%;
	}
	.custom-shipping-option-body {
		min-height: 60px;
		margin: 20px 0px;
	}
	.awesome-reviews-section {
		padding: 40px 0px;
	}
	.awesome-reviews-sources {
		gap: 30px;
		justify-content: center;
	}
	.awesome-reviews-source {
		width: 25%;
	}
	.awesome-reviews-source img {
		max-width: 75%;
		margin: 0 auto;
	}
	.quote-pickup-section, .book-vehicle-section {
		padding: 40px 0px;
	}
	.quote-pickup-content h2, .book-vehicle-content h2 {
		font-size: 30px;
	}
	.quote-pickup-body p, .book-vehicle-body p {
		font-size: 14px;
	}
	.cost-table-section {
		padding: 40px 0px;
	}
	.book-vehicle-container table tr td {
		padding: 8px;
		font-size: 12px;
	}
	.book-vehicle-container table tr:nth-child(2) td {
		font-size: 12px;
	}
	.book-vehicle-container table tr:first-child th {
		padding: 8px;
		font-size: 12px;
	}
	.who-we-serve-section {
		padding: 40px 0px;
	}
	.who-we-serve-head h2, .go-with-experts-content h2 {
		font-size: 30px;
	}
	.who-we-serve-container {
		margin: 30px 0px 0px;
	}
	.who-we-serve-single-heading h4 {
		font-size: 20px;
	}
	.who-we-serve-single-content p {
		font-size: 14px;
	}
	.who-we-serve-single {
		width: 31.5%;
	}
	.who-we-serve-flex {
		justify-content: center;
	}
	.satisfied-customer-section {
		padding: 40px 0px;
	}
	.satisfied-customer-single {
		width: 48%;
		padding: 25px 25px;
	}
	.satisfied-customer-flex {
		justify-content: center;
	}
	.satisfied-customer-content h4 {
		font-size: 20px;
	}
	.satisfied-customer-body p {
		font-size: 14px;
	}
	.go-with-experts-section {
		padding: 20px 0px 40px;
	}
	.common-banner-section {
		padding: 0 0 40px;
	}
	.contact-form-section {
		padding: 40px 0px 20px;
	}
	.contact-form-heading h2, .contact-info-head h2 {
		font-size: 30px;
	}
	.contact-form-container {
		margin: 30px 0px 0px;
	}
	.contact-info-container {
		padding: 40px 20px;
	}
	.contact-info-list-item-text p {
		font-size: 14px;
	}
	.contact-info-list-item-flex {
		gap: 10px;
	}
	.contact-info-list-item-icon img {
		max-width: 20px;
	}
	.discount-content-section {
		padding: 40px 0px;
	}
	.discount-content h2 {
		font-size: 24px;
	}
	.discount-content p {
		font-size: 16px;
	}
	.step-numbers-flex {
		gap: 100px;
	}
	.step-container {
		padding: 30px 40px;
		margin: 60px auto 0px;
	}
	.step-number-single:not(:first-child)::before {
		width: 60px;
	}
	.step-number-single.active-step::after {
		width: 30px;
		left: -80px;
	}
	#step-three .step-number-single:nth-child(2)::after {
		width: 60px;
		left: -80px;
	}
	#step-four .step-number-single:nth-child(2)::after, #step-four .step-number-single:nth-child(3)::after {
		width: 60px;
		left: -80px;
	}
	.post-detail-banner-image img {
		height: 400px;
	}
	.post-detail-content-head h1 {
		font-size: 30px;
	}
	.post-detail-content h2, .post-detail-content h3, .post-detail-content h4, .post-detail-content h5, .post-detail-content h6 {
		font-size: 24px;
	}
	.latest-article-single-card {
		width: calc(50.25% - 10px);
	}
	.post--detail-banner h1 {
		font-size: 36px;
	}
}
@media only screen and (max-width: 600px) {
	.header-container {
		padding: 10px;
	}
	.header-logo a img {
		max-width: 130px;
		object-fit: contain;
	}
	.header-contact {
		gap: 10px;
	}
	.header-contact .primary-button {
		font-size: 12px;
		padding: 10px;
	}
	.header-hamburger {
		width: 24px;
		height: 17px;
	}
	.hero-banner-section {
		height: 75vh;
	}
	h1 {
		font-size: 36px;
	}
	.hero-banner-content h1 {
		line-height: 110%;
	}
	.hero-banner-content p {
		font-size: 16px;
	}
	.hero-banner-quote {
		padding: 10px;
		bottom: 15px;
	}
	.hero-banner-quote-left h6, .hero-banner-quote-center h6 {
		font-size: 8px;
	}
	.hero-banner-quote-left p, .hero-banner-quote-center p {
		font-size: 8px;
	}
	.hero-banner-quote-left {
		width: 30%;
	}
	.hero-banner-quote-center {
		width: 30%;
		padding-left: 10px;
	}
	.hero-banner-quote-right a.primary-button {
		padding: 10px;
		font-size: 12px;
		letter-spacing: 0.6px;
	}
	.hero-banner-main .container {
		height: calc(100% - 99px);
		padding: 0 15px;
	}
	.benefit-text h6 {
		font-size: 10px;
	}
	.benefit-icon img {
		object-fit: contain;
	}
	.benefit-icon {
		width: 16px;
	}
	.hero-banner-benefits-flex {
		gap: 5px;
	}
	.benefit-single-flex {
		gap: 5px;
	}
	.how-to-icon {
		width: 8px;
	}
	.hero-banner-benefit-single {
		width: 49%;
	}
	.what-customer-says {
		padding: 20px 0px 60px;
	}
	.reviews-nav-container .swiper-button-prev, .reviews-nav-container .swiper-button-next {
		position: relative;
		bottom: 0;
		top: auto;
		margin: 0px;
		width: 40px;
		height: 40px;
	}
	.reviews-nav-container {
		margin: 10px 0px 0px;
		display: flex;
		justify-content: flex-end;
		gap: 10px;
	}
	.single-stat-box {
		width: 100%;
		padding: 10px;
		border-radius: 10px;
	}
	.easy-quick-safe-stats-flex {
		gap: 10px;
	}
	.single-stat-box:nth-child(1), .single-stat-box:nth-child(2) {
		width: 48%;
	}
	.single-stat-box h2 {
		font-size: 22px;
	}
	.single-stat-box p {
		font-size: 12px;
		margin: 5px 0px 0px;
	}
	.easy-quick-safe-head h2 {
		font-size: 24px;
	}
	.easy-quick-safe-main {
		margin: 20px 0px 0px;
	}
	.easy-quick-safe-head p {
		font-size: 16px;
	}
	.easy-quick-safe-head {
		margin: 0 auto 20px;
	}
	.easy-quick-safe-single-step {
		width: 100%;
	}
	.step-image img {
		width: 100%;
		max-width: 40%;
		margin: 0 auto;
	}
	.easy-quick-safe-steps-flex {
		gap: 25px;
	}
	.step-content h6 {
		font-size: 16px;
		margin: 0 0 10px;
	}
	.step-content p {
		font-size: 12px;
	}
	.easy-quick-safe-steps-container::before {
		display: none;
	}
	.easy-quick-safe {
		padding: 0 0 20px;
	}
	.latest-feedback-section {
		padding: 20px 0px;
	}
	.latest-feedback-head h2 {
		font-size: 24px;
	}
	.latest-feedback-head p {
		font-size: 14px;
		margin: 10px 0px 0px;
	}
	.latest-feedback-container {
		margin: 20px 0px 0px;
	}
	.feedback-nav-container .swiper-button-prev, .feedback-nav-container .swiper-button-next {
		position: relative;
		top: 0;
		bottom: 0;
		margin: 0;
		width: 40px;
		height: 40px;
	}
	.feedback-nav-container {
		display: flex;
		gap: 10px;
		justify-content: flex-end;
		margin: 10px 0px 0px;
	}
	.shipping-services-section {
		padding: 20px 0px 10px;
	}
	.shipping-services-head h2, .page-common-content-heading h2, .transport-provided-head h2, .faq-head h2, .home-quote-head h2 {
		font-size: 24px;
	}
	.shipping-services-head p {
		font-size: 14px;
		margin: 10px 0px 0px;
	}
	.shipping-services-container {
		margin: 20px 0px 0px;
	}
	.shipping-services-single {
		width: 100%;
	}
	.shipping-services-flex {
		gap: 15px;
	}
	.shipping-services-single-body {
		min-height: auto;
	}
	.three-steps-home {
		padding: 10px 0px 20px;
	}
	.three-single-step {
		width: 100%;
	}
	.three-steps-flex {
		gap: 15px;
	}
	.step-text h4 br {
		display: none;
	}
	.step-text h4 {
		font-size: 14px;
	}
	.page-common-section {
		padding: 20px 0px;
	}
	.page-common-content-body p, .page-common-content-body {
		font-size: 14px;
	}
	.transport-provided-section {
		padding: 20px 0px;
	}
	.transport-provided-container {
		margin: 20px 0px 0px;
	}
	.transport-provided-single {
		padding: 10px 10px;
		width: 49%;
	}
	.transport-provided-single .transport-provided-head h4 {
		font-size: 16px;
	}
	.transport-provided-body {
		margin: 10px 0px 0px;
	}
	.transport-provided-body p {
		font-size: 12px;
	}
	.transport-provided-flex {
		gap: 5px 5px;
	}
	.transport-provided-single .transport-provided-head {
		min-height: 35px;
	}
	.faq-section {
		padding: 20px 0px;
	}
	.faq-container {
		margin: 20px 0px 0px;
	}
	.faq-left {
		width: 100%;
	}
	.faq-right {
		margin: 20px 0px 0px;
		width: 100%;
	}
	.faq-accordion-single {
		padding: 12px 12px;
	}
	.faq-question h5 {
		font-size: 15px;
	}
	.faq-question {
		gap: 10px;
	}
	.faq-icon img {
		max-width: 10px;
	}
	.faq-answer {
		margin: 10px 0px 0px;
	}
	.faq-head h2 {
		text-align: center;
	}
	.latest-articles-head h2 {
		font-size: 24px;
	}
	.latest-articles-section {
		padding: 20px 0px 0px;
	}
	.latest-articles-head p {
		font-size: 14px;
	}
	.latest-articles-container {
		margin: 20px 0px 0px;
	}
	.latest-articles-slider {
		padding: 20px 0px;
	}
	.latest-articles-nav-container .swiper-button-prev, .latest-articles-nav-container .swiper-button-next {
		position: relative;
		top: 0;
		bottom: 0;
		margin: 0;
		width: 40px;
		height: 40px;
	}
	.latest-articles-nav-container {
		margin: 0px 0px 0px;
		display: flex;
		justify-content: flex-end;
		gap: 10px;
	}
	.home-quote-flex {
		flex-direction: column-reverse;
	}
	.home-quote-right {
		width: 100%;
	}
	.home-quote-left {
		width: 100%;
		margin: 20px 0px 0px;
	}
	.form-common-field input, .form-common-field textarea, .form-common-field input::placeholder, .form-common-field textarea::placeholder {
		font-size: 12px;
	}
	.form-common-field {
		margin-bottom: 10px;
	}
	.home-quote-section {
		padding: 20px 0px;
	}
	.site-footer-main {
		padding: 20px 0px;
	}
	.site-footer-logo a img {
		max-width: 150px;
	}
	.footer-column-heading h4 {
		font-size: 18px;
	}
	.footer-single-column {
		width: 50%;
	}
	.footer-columns-flex {
		gap: 20px 0px;
	}
	.footer-column-menu ul li a, .footer-contact-list ul li a {
		font-size: 12px;
		padding: 0 0 2px;
	}
	.footer-column-menu ul li:not(:last-child), .footer-contact-list ul li:not(:last-child) {
		margin-bottom: 5px;
	}
	.footer-social-links ul li a {
		width: 30px;
		height: 30px;
	}
	.footer-social-links ul li a svg {
		width: 15px;
		height: 20px;
	}
	.footer-social-links ul {
		max-width: 80px;
		gap: 10px;
	}
	.footer-columns-container {
		margin: 20px 0px 0px;
	}
	.bottom-footer {
		padding: 10px 0px;
	}
	.bottom-footer-left p, .bottom-footer-right a {
		font-size: 10px;
	}
	.bottom-footer-left {
		width: 100%;
		text-align: center;
	}
	.bottom-footer-right {
		width: 100%;
		margin: 10px 0px 0px;
	}
	.bottom-footer-right-flex {
		justify-content: center;
	}
	.header-navbar ul li a {
		font-size: 20px;
		line-height: 30px;
	}
	body.nav-active .header-navbar nav ul li {
		line-height: 30px;
	}
	.header-navbar .sub-menu li a {
		font-size: 16px;
		line-height: 20px;
	}
	body.nav-active .header-navbar nav ul li .sub-menu li {
		line-height: 28px;
	}
	.sub-menu-icon {
		width: 20px;
		height: 20px;
		top: 4px;
		right: 10vw;
	}
	.sub-menu-icon::before {
		height: 20px;
	}
	.sub-menu-icon::after {
		width: 20px;
	}
	.works-service-banner-section {
		height: 80vh;
		padding: 0 0 20px;
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	.works-service-banner-content h1 {
		font-size: 36px;
	}
	.works-service-banner-box {
		width: 47%;
	}
	.works-service-banner-boxes {
		margin: 30px 0px 0px;
	}
	.customer-service-section {
		padding: 20px 0px;
	}
	.customer-service-head h2, .stress-free-head h2, .custom-shipping-head h2, .awesome-reviews-head h2 {
		font-size: 24px;
	}
	.customer-service-head p, .stress-free-head p, .custom-shipping-head p {
		margin: 10px 0px 0px;
	}
	.customer-service-container {
		margin: 20px 0px 0px;
	}
	.customer-service-left {
		width: 100%;
	}
	.customer-service-right {
		margin: 20px 0px 0px;
		width: 100%;
	}
	.customer-service-item-icon {
		width: 40px;
		height: 40px;
	}
	.customer-service-item-icon img {
		max-width: 24px;
	}
	.stress-free-section, section.custom-shipping-options, .awesome-reviews-section {
		padding: 20px 0px;
	}
	.stress-free-head.section-head {
		padding: 0 20px;
		margin: 0 auto 30px;
	}
	.custom-shipping-options {
		margin: 20px 0px 0px;
		gap: 15px;
	}
	.custom-shipping-option {
		width: 100%;
	}
	.custom-shipping-option-body {
		min-height: auto;
	}
	.quote-pickup-section, .book-vehicle-section {
		padding: 20px 0px;
	}
	.quote-pickup-left {
		width: 100%;
		margin: 0 0 20px;
	}
	.quote-pickup-right {
		width: 100%;
	}
	.quote-pickup-content h2, .book-vehicle-content h2 {
		font-size: 24px;
	}
	.quote-pickup-body, .book-vehicle-body {
		margin: 10px 0px 0px;
	}
	.book-vehicle-left {
		width: 100%;
		margin: 0 0 20px;
	}
	.book-vehicle-right {
		width: 100%;
	}
	.cost-table-section {
		padding: 20px 0px;
	}
	.book-vehicle-container table tr:first-child th {
		padding: 6px;
		font-size: 10px;
	}
	.book-vehicle-container table tr:nth-child(2) td, .book-vehicle-container table tr td {
		padding: 6px;
		font-size: 8px;
	}
	.page-common-content-link a {
		letter-spacing: 1px;
		font-size: 12px;
	}
	.who-we-serve-section {
		padding: 20px 0px;
	}
	.who-we-serve-head h2 {
		font-size: 24px;
	}
	.who-we-serve-single {
		width: 47.3%;
		padding: 10px;
	}
	.who-we-serve-single-heading h4 {
		font-size: 14px;
	}
	.who-we-serve-single-content p {
		font-size: 12px;
		line-height: 130%;
	}
	.satisfied-customer-section {
		padding: 20px 0px;
	}
	.satisfied-customer-single {
		width: 100%;
		padding: 20px 20px;
	}
	.satisfied-customer-flex {
		justify-content: center;
	}
	.satisfied-customer-content h4 {
		font-size: 20px;
	}
	.satisfied-customer-body p {
		font-size: 14px;
	}
	.common-banner-section {
		height: 40vh;
		padding: 0 0 20px;
	}
	.contact-form-section {
		padding: 20px 0px;
	}
	.contact-form-heading h2, .contact-info-head h2 {
		font-size: 24px;
	}
	.contact-form-left {
		width: 100%;
		margin: 0 0 20px;
	}
	.contact-form-container {
		margin: 20px 0px 0px;
	}
	.contact-form-right {
		width: 100%;
	}
	.contact-info-container {
		padding: 25px 15px;
	}
	.contact-info-head p {
		font-size: 14px;
		margin: 15px 0px 0px;
	}
	.contact-info-list {
		margin: 20px 0px 0px;
	}
	.contact-info-list-item:not(:last-child) {
		margin-bottom: 12px;
	}
	.discount-content-section {
		padding: 20px 0px;
	}
	.discount-content h2 {
		font-size: 24px;
		line-height: 150%;
	}
	.discount-content p {
		font-size: 14px;
		margin: 10px 0px 0px
	}
	.step-form-main {
		padding: 40px 0px;
	}
	.step-form-number-text h2 {
		font-size: 24px;
	}
	.step-zip-codes {
		margin: 40px auto 0px;
		padding: 12px 12px;
	}
	.step-zip-code-left label, .step-zip-code-center label {
		font-size: 14px;
	}
	.step-zip-code-left input, .step-zip-code-center input {
		font-size: 14px;
	}
	.step-zip-code-center {
		padding-left: 15px;
	}
	.step-content .uacf7-buttons {
		margin: 20px auto 0px;
		gap: 10px;
	}
	.step-content .uacf7-buttons .uacf7-next, .step-content .uacf7-buttons .uacf7-prev {
		font-size: 12px;
		letter-spacing: 0px;
		padding: 20px 40px;
	}
	.step-content .uacf7-buttons .wpcf7-spinner {
		left: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.step-container {
		margin: 30px auto 0px;
	}
	.step-zip-codes, .step-container, .step-content .uacf7-buttons {
		max-width: 90%;
	}
	.step-container {
		border-radius: 10px;
		padding: 20px 15px;
	}
	.step-numbers-flex {
		gap: 50px;
	}
	.step-number-single:not(:first-child)::before {
		width: 40px;
		right: 40px;
	}
	.step-number-single.active-step::after {
		left: -46px;
		width: 20px;
	}
	.step-discount {
		margin: 30px 0px;
	}
	.vehicle-specs-fields-container {
		margin: 25px 0px;
	}
	.vehicle-specs-field-left {
		width: 48%;
	}
	.vehicle-specs-fields-flex {
		gap: 10px;
	}
	.vehicle-specs-field-center {
		width: 48%;
	}
	.vehicle-specs-field-right {
		width: 100%;
	}
	.step-head h2 {
		font-size: 30px;
	}
	#step-three .step-number-single:nth-child(2)::after {
		width: 40px;
		left: -46px;
	}
	.transport-type-single {
		padding: 15px;
		padding-bottom: 50px;
	}
	.transport-type-detail {
		margin: 15px 0px 0px;
	}
	.transport-types-left, .transport-types-right {
		width: 100%;
	}
	.transport-types-left {
		margin-bottom: 20px;
	}
	#step-four .step-number-single:nth-child(2)::after, #step-four .step-number-single:nth-child(3)::after {
		width: 40px;
		left: -46px;
	}
	.transport-types-container, .customer-information-fields-container {
		padding: 20px 0px 0px;
	}
	.customer-information-single-field {
		width: 100%;
		margin-bottom: 20px;
	}
	.customer-information-single-field:last-child {
		margin-bottom: 0px;
	}
	.form-submit-container {
		width: 100%;
	}
	.hero-banner-quote-left input, .hero-banner-quote-center input {
		font-size: 8px;
	}
	.hero-banner-quote-left input::placeholder, .hero-banner-quote-center input::placeholder {
		font-size: 8px;
	}
	.post-detail-banner-image img {
		height: 250px;
	}
	.post-detail-content-head h1 {
		line-height: 120%;
		font-size: 24px;
	}
	.post-detail-content h2, .post-detail-content h3, .post-detail-content h4, .post-detail-content h5, .post-detail-content h6 {
		font-size: 20px;
	}
	nav.post-navigation .nav-links div {
		width: 100%;
	}
	nav.post-navigation .nav-links div:nth-child(1) {
		text-align: left;
		margin: 0 0 15px;
	}
	nav.post-navigation .nav-links div:nth-child(2) {
		text-align: right;
	}
	nav.post-navigation .nav-links a {
		font-size: 12px;
	}
	nav.post-navigation .nav-links {
		flex-wrap: wrap;
	}
	.latest-article-single-card {
		width: 100%;
	}
	.latest-articles--archive-section {
		padding: 20px 0px;
	}
	.post--detail-banner .works-service-banner-main {
		padding: 0 0 30px;
	}
	.post--detail-banner h1 {
		font-size: 30px;
	}
}