/*fonts*/

/* @font-face {
    font-family: 'Gilroy';
    src: url('../../fonts/Gilroy-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../../fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../../fonts/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../../fonts/Gilroy-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../../fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */

@font-face {
    font-family: "Helvetica Neue";
    src: url("../../fonts/Helvetica/HelveticaNeue-Roman.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica";
    src: url("../../fonts/Helvetica/Helvetica-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../../fonts/Helvetica/HelveticaNeue-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../../fonts/Helvetica/HelveticaNeue-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*fonts-END*/

:root {
    --text-color: #0f1b24;
    --font-primary: "Helvetica Neue", sans-serif;
    --trans: all 0.2s ease;
    /* --width-container: 1600px; */
    --color-primary: #ed6b2d;
    --background-color: #3b4443;
    /* --space-container: calc((100vw - var(--width-container)) / 2); */
    /* --color-error: #F30000; */
}

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

body {
    color: var(--text-color);
    font-family: var(--font-primary);
}

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

li {
    list-style-type: none;
}

.container {
    width: 1284px;
    margin-left: auto;
    margin-right: auto;
}

.inp {
    color: #313131;
    border-radius: 4px;
    background: #ffffff;
    outline: none;
}

.btn {
    padding-top: 2px;
    width: 210px;
    min-width: 210px;
    height: 52px;
    transition: all 0.2s ease;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: var(--color-primary);
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-primary);
}

.btn:hover {
    box-shadow: none;
    background: #f18957;
    /* color: #8F929B; */
}

.btn-transparent {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    border: 2px solid var(--color-primary);
    background: #fff;
}

.btn-transparent:hover {
    box-shadow: none;
    background: #f18957;
    border: 2px solid #f18957;
    color: #fff;
}

.title {
    font-size: 40px;
    line-height: 110%;
    text-transform: capitalize;
    text-align: left;
    font-weight: 500;
}

.header {
    padding: 18.5px 0px;
    border-bottom: 1px solid #f7f8f9;
}

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

.header-menu {
    display: flex;
}

.header-menu li {
    list-style-type: none;
    margin-right: 40px;
}

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

.header-menu li a {
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--trans);
}

.header-menu li:hover>a {
    color: var(--color-primary);
}

.header-btn {
    width: 171px;
    min-width: 171px;
}

.header-item {
    width: 30%;
    display: flex;
}

.header-item.start {
    justify-content: flex-start;
}

.header-item.center {
    width: 40%;
    justify-content: center;
}

.header-item.end {
    justify-content: flex-end;
}

.logo {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 0;
}

.logo svg {
    line-height: 0;
}

.logo-text {
    margin-left: 9px;
    line-height: 0;
}

.call {
    display: flex;
    align-items: center;
    margin-right: 40px;
    color: var(--text-color);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
    transition: all 0.2s ease;
}

.call:hover {
    color: var(--color-primary);
}

.call svg {
    margin-right: 8px;
    fill: var(--color-primary);
}

.drayage-head {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 136px 0px 138px;
}

.breadcrumbs {
    color: #fff;
    margin-top: 16px;
    margin-bottom: -34px;
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
}

.breadcrumbs ol {
    display: flex;
}

.breadcrumbs .separator {
    font-weight: 400;
    margin: 0 8px;
}

.breadcrumbs a {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    transition: var(--trans);
}

.breadcrumbs a:hover {
    color: rgba(255, 255, 255, 1);
}

.drayage-head__title {
    font-size: 64px;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
    max-width: 713px;
}

.drayage-head__title span {
    color: var(--color-primary);
}

.drayage-head__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    max-width: 466px;
    margin-top: 42px;
}

.drayage-head-box {
    display: flex;
    margin: 48px 0px;
}

.drayage-head__item {
    width: calc(118px + 40px);
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    margin-right: 40px;
    padding-right: 40px;
    position: relative;
}

.drayage-head__item:last-child {
    margin-right: 0px;
    padding-right: 0px;
}

.drayage-head__item:nth-child(2) {
    max-width: calc(93px + 40px);
}

.drayage-head__item::after {
    content: "";
    width: 0;
    height: 39px;
    border-right: 1px solid #fff;
    position: absolute;
    top: calc(50% - 19.5px);
    right: 0;
}

.drayage-head__item:last-child::after {
    display: none;
}

.effortless {
    padding: 120px 0px;
}

.effortless .title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.effortless-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    max-width: 560px;
    margin: 16px auto 40px;
    width: 970px;
    text-align: center;
    color: #313131;
}

.effortless-box {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.effortless-item {
    width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.effortless-item img {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
}

.effortless-item p {
    font-size: 20px;
    line-height: 120%;
    text-transform: capitalize;
    margin-top: 15px;
    max-width: 180px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ready-new {
    padding: 40px 0px;
    background-image: url(../../images/freight/ready-grey-back.jpg);
    background-size: cover;
    background-position: 20% center;
    background-repeat: no-repeat;
    min-height: 292px;
    display: flex;
    align-items: center;
    color: #fff;
}

.ready-new .container {
    max-width: 918px;
}

.ready-new-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ready-new__text {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    margin-right: 20px;
}

.ready-new__text span {
    color: var(--color-primary);
}

.ready-new__text a {
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.drayage-services {
    padding: 120px 0px 100px;
}

.drayage-services .title {
    text-align: left;
}

.drayage-services-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-left: -16px;
}

.drayage-services__item {
    width: calc(33% - 14px);
    margin-left: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    text-decoration: none;
    padding: 165px 32px 31px;
    position: relative;
    border-radius: 8px;
    margin-bottom: 16px;
}

.drayage-services__item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.drayage-services__item-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    color: #fff;
    position: relative;
    z-index: 1;
    display: block;
}

.drayage-services__item-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    position: relative;
    z-index: 1;
    margin: 8px 0px 17px;
    display: block;
    max-width: 232px;
}

.drayage-services__item-link {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.drayage-services__item-link img {
    margin-left: 12px;
    transition: all 0.2s ease;
}

.drayage-services__item:hover .drayage-services__item-link img {
    transform: translateX(10px);
}

.drayage-services__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 23, 24, 0) 0%, #161718 100%);
    border-radius: 8px;
    z-index: 0;
}

.drayage-who {
    padding-bottom: 105px;
}

.drayage-who .title {
    text-align: left;
}

.drayage-who-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drayage-who__content {
    max-width: 574px;
    margin-right: 20px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}

.drayage-who__content h2,
.drayage-who__content h3,
.drayage-who__content h4,
.drayage-who__content h5,
.drayage-who__content h6 {
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.drayage-who__content p {
    margin-bottom: 16px;
    line-height: 150%;
}

.drayage-who__content pre {
    margin-bottom: 24px;
}

.drayage-who__img img {
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

.feedbacks {
    padding: 120px 0px 116px;
    position: relative;
    overflow: hidden;
}

.feedbacks .container {
    position: relative;
    z-index: 2;
}

.feedbacks .feedbacks-slider {
    margin-top: 40px;
    margin-left: -8px;
}

.feedbacks-slider__item {
    background: #f7f8f9;
    border-radius: 8px;
    padding: 32px;
    margin-right: 16px;
}

.feedbacks-slider .slick-list {
    padding-left: 0px !important;
    overflow: visible;
}

:root {
    --width-container: 1284px;
    --white-space-container: calc((100vw - var(--width-container)) / 2);
}

.align-container-left {
    width: auto;
    padding-left: var(--white-space-container);
}

.feedbacks-item-up {
    display: flex;
    margin-bottom: 24px;
}

.feedbacks-item__img {
    margin-right: 20px;
}

.feedbacks-item__img img {
    max-width: 80px;
    height: auto;
    border-radius: 50%;
}

.feedbacks-item__name {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
}

.feedbacks-item__date {
    margin: 8px 0px 4px;
}

.feedbacks-item__date,
.feedbacks-item__city {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #8f929b;
}

.feedbacks-item__text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 34px;
    margin-right: var(--white-space-container);
}

.slick-dots li button {
    font-size: 0;
    padding: 0;
    margin: 0;
    border: none;
    width: 8px;
    height: 8px;
    background: #cdd6da;
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots li {
    line-height: 0;
    cursor: pointer;
    margin: 0 4px;
    display: block;
}

.slick-dots .slick-active button {
    background: var(--text-color);
}

.helpful {
    padding-bottom: 120px;
}

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

.helpful-tabs {
    display: flex;
    justify-content: center;
    margin: 36px 0px 38px;
}

.helpful-tabs .tab {
    padding: 4px 0px;
    margin: 0px 12px;
    color: #597786;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.helpful-tabs .tab.active {
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 2px solid var(--color-primary);
}

.tab_item {
    display: none;
}

.tab_item:first-child {
    display: block;
}

.questions-details {
    padding: 28px 0px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid #cdd6da;
    margin: 0;
    position: relative;
}

.questions-details::before {
    display: none;
}

.faq-btn {
    margin-top: 40px;
}

.questions-details summary {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.questions-content {
    padding: 0;
}

.questions-details p {
    padding: 0;
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 900px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.questions-details[open] .summary-arrow svg {
    transform: rotate(180deg);
}

.summary-arrow {
    margin-left: 20px;
}

.helpful-guides-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -32px;
    margin-bottom: 8px;
}

.guide-item {
    width: calc(50% - 32px);
    margin-left: 32px;
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 32px;
    display: flex;
    transition: all 0.2s ease;
}

.guide-item__img {
    position: relative;
    min-width: 308px;
    width: 308px;
    min-height: 240px;
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.guide-item__img::before {
    content: "";
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.2s ease;
}

.guide-item:hover .guide-item__img::before {
    opacity: 1;
}

.guide-item-content {
    padding: 8px 0px;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guide-item__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
}

.guide-item__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 16px 0px 19px;
}

.guide-item-bottom {
    display: flex;
    justify-content: space-between;
    /* max-width: 283px; */
}

.guide-item__date,
.guide-item__readtime {
    color: #8f929b;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.guide-item__readtime {
    margin-right: 16px;
}

.helpful .btn {
    margin-left: auto;
    margin-right: auto;
    width: 220px;
    min-width: 220px;
}

hr {
    height: 1px;
    width: 100%;
    border: none;
}

.footer {
    background: var(--background-color);
    color: #cdd6da;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 56px 0px 28px;
}

.footer-main {
    display: flex;
}

.footer-main .footer-main-item:last-child {
    margin-right: 0;
}

.footer-main-item ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-decoration: none;
}

.footer-main-item ul li a.current-page {
    pointer-events: none;
    color: #fff;
}

.footer-main-item ul li a,
.copyright,
.footer-main-item h3 {
    color: #cdd6da;
}

.copyright {
    padding: 20px 0px 33px;
    font-weight: 300;
    font-size: 13px;
    text-align: center;
}

.footer-main-item ul li a:hover {
    color: #fff;
}

.footer-main-item h3,
.footer-social-wrapper h3 {
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 150%;
    font-size: 14px;
}

.footer-social {
    display: flex;
    margin-top: 40px;
}

.footer hr {
    background: rgba(255, 255, 255, 0.2);
}

.footer-left__text {
    font-weight: 400;
    color: #fff;
    max-width: 210px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 23px;
}

.footer-left__text span {
    display: none;
}

.footer-main-item {
    margin-right: 91px;
}

.footer-main-item ul li {
    margin-bottom: 8px;
}

.social-item {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-primary);
    margin-right: 16px;
    text-decoration: none;
    border-radius: 50%;
    transition: var(--trans);
}

.social-item:last-child {
    margin-right: 0;
}

.social-item:hover {
    border: 1px solid #fff;
}

.social-item svg {
    width: 100%;
    height: 100%;
}

.social-item svg path {
    fill: #fff;
}

.btn-footer {
    width: 162px;
    min-width: 162px;
}

.header-mobile {
    display: none;
}

.ready-phone::after {
    content: "";
    white-space: pre;
    display: block;
}

.mobile-menu-close {
    display: none;
}

.header-social {
    display: none;
}

.show-more {
    display: none;
}

/* Loader */

#form_loader {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff85;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#gear {
    width: 200px;
}

#gear img {
    width: 100%;
    height: auto;
    animation: rotateGear 2.5s infinite linear;
}

@keyframes rotateGear {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

#form_loader.active {
    visibility: visible;
}

.please-wait {
    display: none;
    width: 100%;
    position: fixed;
    bottom: 50px;
    left: 0;
    justify-content: center;
    z-index: 999;
}

.please-wait.active {
    display: flex;
}

.please-wait p {
    font-size: 20px;
    animation: loading 2s linear infinite;
}

@keyframes loading {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* cookie */

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    background: rgba(4, 49, 72, 0.8);
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    padding: 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 3000ms;
}

.cookiealert a {
    color: #ffffff;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cookiealert a:hover {
    color: var(--color-primary);
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    padding: 15px;
}

.cookiealert .closecookies {
    position: absolute;
    top: calc(50% - 26px);
    right: 80px;
    cursor: pointer;
    padding: 15px;
}

/* Form */

.freight-step {
    color: var(--text-color);
    padding: 24px 0px 90px;
    min-height: 900px;
}

.back {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: var(--text-color);
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
}

.back:hover,
.back:active,
.back:focus {
    color: var(--text-color);
}

.back svg {
    fill: var(--text-color);
    margin-right: 10px;
}

.freight-page-step-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
    margin-top: 24px;
}

.step-navigation {
    display: flex;
    margin-bottom: 44px;
}

.step-navigation__item {
    display: flex;
    align-items: center;
}

.step-navigation__item-number {
    width: 24px;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #597786;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    border: 1.5px solid #597786;
    border-radius: 50%;
}

.step-navigation__item-number img {
    max-width: 14px;
}

.step-navigation__item-text {
    color: #597786;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.step-navigation__item-line {
    width: 56px;
    line-height: 0;
    border-bottom: 1px solid #cdd6da;
    margin: 0px 16px;
}

.step-navigation__item.active .step-navigation__item-number {
    border: 1.5px solid var(--color-primary);
    color: var(--text-color);
}

.step-navigation__item.active .step-navigation__item-text {
    font-weight: 500;
    color: var(--text-color);
}

.step-navigation__item.completed .step-navigation__item-number {
    border: 1.5px solid var(--color-primary);
    background: var(--color-primary);
}

.step-navigation__item.completed .step-navigation__item-text {
    color: var(--text-color);
}

.step-navigation__item.completed .step-navigation__item-line {
    border-bottom: 1px solid var(--text-color);
}

.freight-step-tabs {
    display: flex;
    margin: 36px 0px 34px;
}

.freight-step-tabs input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.freight-step-tabs label {
    color: #597786;
    font-size: 24px;
    font-weight: 400;
    line-height: 110%;
    margin-right: 24px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    padding-bottom: 4px;
}

.freight-step-tabs input[type="radio"]:checked+label {
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 2px solid var(--color-primary);
}

.freight-step__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.freight-step-wrapper {
    width: 626px;
}

.freight-step-wrapper .inp {
    width: 100%;
    padding: 16px;
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #cdd6da;
}

.freight-step-wrapper .inp::placeholder {
    color: #8f929b;
    font-weight: 400;
    line-height: 1;
    font-size: 16px;
}

.freight-step-wrapper .inp.error-text {
    border: 1px solid red;
}

.freight-step-wrapper .inp.error-text::placeholder {
    color: red;
}

.freight-step-wrapper .select-inp option:disabled {
    color: #8f929b;
}

.freight-step-wrapper .select-inp:required:invalid {
    color: #8f929b;
}

.freight-step-wrapper .select-inp option {
    color: #313131;
}

.freight-step-wrapper .inp:-webkit-autofill,
.freight-step-wrapper .inp:-webkit-autofill:hover,
.freight-step-wrapper .inp:-webkit-autofill:focus,
.freight-step-wrapper .inp:-webkit-autofill:active {
    border: 1px solid #fff4e8 !important;
    -webkit-text-fill-color: var(--text-color);
    -webkit-box-shadow: 0 0 0px 1000px #fffbf7 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.select-inp {
    cursor: pointer;
    position: relative;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* text-indent: 1px; */
    text-overflow: "";
}

.select-inp svg {
    position: absolute;
    top: calc(50% - 4px);
    right: 22px;
    pointer-events: none;
}

.freight-step-wrapper textarea {
    resize: vertical;
    width: 100%;
    height: 192px;
    min-height: 52px;
    resize: none;
}

.inp-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 5px;
}

.freight-inp-item {
    margin-bottom: 23px;
    position: relative;
}

.inp-wrapp {
    position: relative;
}

.freight-step-btn {
    height: auto;
    width: 230px;
    line-height: 18px;
    padding: 18px 20px 16px;
}

.freight-step-btn:hover {
    background: #ffb870;
}

.freight-step-btn:disabled,
.freight-step-btn[disabled] {
    background: #e5eaef;
    color: #8f929b;
    cursor: wait;
}

.freight-dates-wrapper {
    margin-top: 48px;
}

.freight-dates__item {
    opacity: 0;
    visibility: hidden;
}

.freight-dates__item input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.freight-dates__item label {
    display: inline-block;
    margin-bottom: 24px;
    cursor: pointer;
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
}

.freight-dates__item label::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
}

.freight-dates__item label::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: calc(50% - 4px);
    left: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    display: none;
}

.freight-dates__item label.error {
    display: none !important;
}

.freight-dates__item input[type="radio"]:checked+label::after {
    display: block;
}

.freight-dates__item input[type="radio"].error-text+label {
    color: red;
}

.freight-dates-wrapper .btn {
    margin-top: 8px;
}

.freight-shipping-dates {
    /* display: flex; */
    display: none;
    margin-bottom: 20px;
}

.freight-date {
    position: relative;
    margin-right: 8px;
}

.freight-date .inp {
    width: 230px;
    padding-left: 124px;
    cursor: pointer;
}

.freight-date label.error {
    display: none !important;
}

#pickup_date {
    padding-left: 114px;
}

.freight-date__text {
    color: #8f929b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    top: calc(50% - 8px);
    left: 16px;
    pointer-events: none;
}

.freight-datepicker-calendar {
    padding: 25px 32px 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 23px 0px rgba(89, 99, 107, 0.07);
    margin-top: 4px;
    font-family: var(--font-primary);
    width: 295px;
}

.ui-widget.ui-widget-content {
    border: none;
}

.freight-datepicker-calendar .ui-datepicker-current-day {
    background: var(--color-primary);
}

.freight-datepicker-calendar th {
    color: #8f929b;
    font-weight: 400;
    padding: 10px 0px 10px;
    text-align: center;
    border: 0;
    font-size: 12px;
}

.freight-datepicker-calendar td {
    width: 30px;
    border-radius: 50%;
}

.freight-datepicker-calendar td span,
.freight-datepicker-calendar td a {
    font-weight: 500 !important;
}

.freight-datepicker-calendar .ui-state-default,
.freight-datepicker-calendar .ui-widget-content .ui-state-default,
.freight-datepicker-calendar .ui-widget-header .ui-state-default,
.freight-datepicker-calendar .ui-button,
html .freight-datepicker-calendar .ui-button.ui-state-disabled:hover,
html .freight-datepicker-calendar .ui-button.ui-state-disabled:active {
    font-size: 13px;
    line-height: 14px;
    border: none;
    background: none;
}

.freight-datepicker-calendar .ui-state-default,
.freight-datepicker-calendar .ui-state-default,
.freight-datepicker-calendar .ui-widget-header .ui-state-default,
.freight-datepicker-calendar .ui-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 30px;
    border-radius: 50%;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    color: #8f929b;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    color: #0f1b24;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    color: #fff;
}

.freight-datepicker-calendar .ui-widget-header .ui-icon {
    background-image: url(../../images/date-arrow-gray.svg);
    width: 6px;
    height: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.freight-datepicker-calendar .ui-datepicker-prev,
.freight-datepicker-calendar .ui-datepicker-next {
    width: 6px;
    height: 100%;
    cursor: pointer;
}

.ui-state-hover,
.freight-datepicker-calendar .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.freight-datepicker-calendar .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: none;
    background: none;
    border-width: 0;
}

.freight-datepicker-calendar .ui-datepicker-next-hover {
    right: 2px;
}

.freight-datepicker-calendar .ui-datepicker-prev-hover,
.freight-datepicker-calendar .ui-datepicker-next-hover {
    top: 2px;
}

.freight-datepicker-calendar .ui-datepicker-prev-hover {
    left: 2px;
}

.freight-datepicker-calendar .ui-datepicker-prev span,
.freight-datepicker-calendar .ui-datepicker-next span {
    margin-left: 0;
    left: auto;
    right: 0;
}

.freight-datepicker-calendar .ui-datepicker-prev {
    transform: rotate(180deg);
    margin-top: -5px;
}

.freight-datepicker-calendar .ui-widget-header {
    font-weight: 400;
    padding: 0;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #0f1b24;
    background: none;
    border: none;
}

.freight-permission {
    padding-left: 32px;
    display: flex;
    position: relative;
    margin-top: 32px;
}

.freight-permission input[type="checkbox"] {
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
}

.freight-permission label {
    font-size: 14px;
    line-height: 142.857%;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    color: #313131;
    border: 1px solid transparent;
}

.freight-permission label::before {
    content: "";
    background: #fff;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: -32px;
    border-radius: 2px;
    border: 1px solid #8f929b;
    cursor: pointer;
}

.freight-permission input:checked+label::before {
    background: transparent;
    border: 1px solid var(--color-primary);
}

.freight-permission label::after {
    display: none;
    content: "";
    width: 11px;
    height: 8px;
    position: absolute;
    top: 4.5px;
    left: -29px;
    background-image: url(../../images/check-mark-orange.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.freight-permission input:checked+label::after {
    display: block;
}

.freight-use-number {
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    color: #8f929b;
    margin: 24px 0px 32px;
    max-width: 608px;
}

.freight-use-number a,
.freight-use-number span {
    color: #8f929b;
    text-decoration: underline;
}

.freight-switch {
    margin-bottom: 40px;
}

.select-rooms {
    width: 100%;
}

.switcher {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.switcher input+label {
    width: 51px;
    height: 30px;
}

.switcher input {
    display: none;
}

.switcher input+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.switcher input+label:before,
.switcher input+label:after {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    content: "";
    transition: all 0.2s ease;
}

.switcher input+label:before {
    right: 0px;
    border-radius: 60px;
    background: #cdd6da;
    border: none;
}

.switcher input+label:after {
    margin: 0;
    background: #ffffff;
    border-radius: 100%;
    width: 27px;
    height: 27px;
    left: 1.5px;
    top: calc(50% - 13.5px);
    border: none;
}

.switcher-text {
    margin-left: 16px;
    font-weight: 400;
    font-size: 14px;
    color: #313131;
}

.switcher input:checked+label:before {
    border: none;
    background: #3fa420;
}

.switcher input:checked+label:after {
    border: none;
    background-color: #fff;
    margin-left: calc(100% - 30px);
}

.freight-select {
    display: block;
    margin: 0;
    position: relative;
}

.freight-select.disabled:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(247, 248, 249, 60%);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.freight-thank {
    padding: 80px 0 120px;
}

.freight-thank-block {
    width: 679px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 64px 80px;
    background: var(--background-color);
    border-radius: 8px;
}

/* .freight-thank-block::before {
    content: '';
    width: 110px;
    height: 100px;
    position: absolute;
    bottom: -98px;
    right: 72px;
    background-image: url(../../images/thank-block-element.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} */

.freight-thank__title {
    font-size: 64px;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
}

.freight-thank__title span {
    color: var(--color-primary);
    display: block;
}

.freight-thank__subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
    margin-top: 40px;
    max-width: 512px;
}

.freight-thank__back {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    text-decoration: none;
    margin-top: 40px;
    position: relative;
    transition: var(--trans);
    margin-left: -6px;
}

.freight-thank__back:hover {
    color: var(--color-primary);
}

.freight-thank__back svg {
    content: "";
    margin-right: 13px;
}

.freight-thank__back svg path {
    transition: var(--trans);
}

.freight-thank__back:hover svg path {
    fill: var(--color-primary);
}

.freight-thank-social {
    background: #f7f8f9;
    padding: 85px 0px 90px;
    margin-top: 120px;
}

.freight-thank-social-box {
    max-width: 945px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.freight-thank-social-box h3 {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.freight-thank-social-box p {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
}

.freight-thank-social-items {
    display: flex;
    align-items: center;
}

.freight-thank-social-items .social-item {
    width: 48px;
    height: 48px;
    margin-right: 32px;
}

.freight-thank-social-items .social-item:last-child {
    margin-right: 0;
}

.freight-thank-social-items .social-item svg path {
    fill: #0f1b24;
}

.freight-thank-social-items .social-item:hover {
    border: 1px solid #0f1b24;
}

.freight-thank-social__item {
    text-decoration: none;
    line-height: 0;
    margin-left: 32px;
    width: 48px;
}

.freight-thank-social__item img {
    width: 100%;
    height: auto;
}

.freight-guides {
    margin-top: 120px;
}

.freight-guides__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
}

.freight-guides-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 40px 0px;
}

.freight-guides-video {
    width: 848px;
}

.thank-guides-video__item {
    position: relative;
    width: 100%;
    height: 580px;
}

.thank-video__darkening {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    /* background: #000; */
}

.thank-video__darkening svg {
    width: 94px;
    height: 94px;
    fill: transparent;
    transition: all 0.3s ease;
}

.thank-video__darkening:hover svg {
    fill: none;
}

.thank-guides-video__item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.freight-guides-video .slick-next,
.freight-guides-video .slick-prev {
    cursor: pointer;
    font-size: 0;
    border: none;
    outline: none;
    background: url(../../images/arrow-freight-video.svg);
    width: 18px;
    height: 36px;
    background-size: contain;
    position: absolute;
    top: calc(50% - 17px);
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
}

.freight-guides-video .slick-next {
    right: 20px;
}

.freight-guides-video .slick-prev {
    transform: rotate(180deg);
    left: 20px;
}

.freight-guides-video .slick-disabled {
    opacity: 0.4;
}

.freight-guides .btn {
    width: 227px;
    margin-left: auto;
    margin-right: auto;
}

.freight-guides-content {
    width: 418px;
}

.freight-guides-block h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 18px;
}

.freight-guides-item {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.freight-guides-item__img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 200px;
    height: 110px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.freight-guides-item:hover .freight-guides-item__img {
    opacity: 0.8;
}

.freight-guides-item-video .freight-guides-item__img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.freight-guides-item-video .freight-guides-item__img svg {
    width: 30px;
    height: 30px;
    fill: transparent;
}

.freight-guides-item-content {
    padding-top: 10px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.freight-guides-item__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.freight-guides-item-bottom {
    margin-top: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.freight-guides-item__date {
    font-size: 12px;
    font-weight: 300;
    line-height: 130%;
}

.freight-guides-item__readtime {
    font-size: 12px;
    font-weight: 300;
    line-height: 130%;
}

.freight-guides-line {
    width: 100%;
    margin-bottom: 16px;
    border-bottom: 1px solid #cdd6da;
}

/* Landing */
.landing-head {
    padding: 142px 0 138px;
}

.landing-head .drayage-head__text {
    margin-top: 38px;
}

.landing-head .drayage-head__item {
    width: auto !important;
}

.landing-head .drayage-head__item:nth-child(2) {
    max-width: none !important;
}

.landing-effortless .effortless-subtitle {
    margin: 16px auto 32px;
}

.effortless-statistics {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.statistics-item {
    max-width: 275px;
    text-align: center;
}

.statistics-item__number {
    color: var(--color-primary);
    font-size: 72px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 14px;
}

.statistics-item__text {
    color: #8f929b;
    line-height: 140%;
    font-weight: 500;
}

.ready-service {
    background: #f7f8f9;
    padding: 120px 0;
}

.ready-service-background {
    background-position: center;
    background-size: cover;
}

.ready-service .container {
    max-width: 1074px;
}

.ready-service-wrapper {
    display: flex;
    justify-content: space-between;
}

.ready-service-left {
    max-width: 498px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ready-service-background .ready-service-left {
    max-width: 522px;
}

.ready-service-background .title {
    color: #fff;
}

.ready-service-elements {
    display: flex;
    flex-wrap: wrap;
    width: 512px;
    margin-left: -16px;
    margin-top: -16px;
}

.ready-service__item {
    margin-top: 16px;
    width: calc(50% - 16px);
    margin-left: 16px;
    border-radius: 8px;
    border: 1px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.1);
    padding: 23px 40px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
}

.ready-service-background .ready-service__item {
    background: rgba(255, 255, 255, 1);
    border: 0;
}

.our-services {
    padding: 120px 0;
    margin-left: -16px;
    margin-top: -16px;
    display: flex;
    flex-wrap: wrap;
}

.our-services__item {
    width: calc(33.33% - 16px);
    min-height: 320px;
    margin-left: 16px;
    margin-top: 16px;
    text-decoration: none;
    color: #fff;
}

.services-item-title {
    padding-top: 16px;
}

.services-item-title .title {
    max-width: 327px;
    display: block;
    color: var(--text-color);
}

.services-item-background {
    background: var(--background-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 32px 28px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: var(--trans);
}

.services-item-background:hover {
    opacity: 0.8;
}

.our-services__item-content {
    position: relative;
    z-index: 1;
}

.services-item-overlay {
    width: 100%;
    height: 320px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(22, 23, 24, 0) 0%, #161718 100%);
    z-index: 0;
}

.services-item-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-services__item-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
    max-width: 300px;
}

.learn-more {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}

.learn-more::after {
    content: "";
    width: 14px;
    height: 10px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 4.99998C0 4.86737 0.0526784 4.74019 0.146447 4.64643C0.240215 4.55266 0.367392 4.49998 0.5 4.49998L12.293 4.49998L9.146 1.35398C9.05211 1.26009 8.99937 1.13275 8.99937 0.999979C8.99937 0.867204 9.05211 0.739865 9.146 0.645979C9.23989 0.552093 9.36722 0.499348 9.5 0.499348C9.63278 0.499348 9.76011 0.552093 9.854 0.645979L13.854 4.64598C13.9006 4.69242 13.9375 4.7476 13.9627 4.80835C13.9879 4.86909 14.0009 4.93421 14.0009 4.99998C14.0009 5.06575 13.9879 5.13087 13.9627 5.19161C13.9375 5.25236 13.9006 5.30753 13.854 5.35398L9.854 9.35398C9.76011 9.44787 9.63278 9.50061 9.5 9.50061C9.36722 9.50061 9.23989 9.44787 9.146 9.35398C9.05211 9.26009 8.99937 9.13275 8.99937 8.99998C8.99937 8.8672 9.05211 8.73987 9.146 8.64598L12.293 5.49998L0.5 5.49998C0.367392 5.49998 0.240215 5.4473 0.146447 5.35353C0.0526784 5.25976 0 5.13259 0 4.99998Z" fill="%23ED6B2D"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -26px;
    top: calc(50% - 5px);
}

.our-services__item .learn-more {
    margin-top: 17px;
}

.our-services__item-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    margin-top: 8px;
}

.our-services-items-3 .services-item-title,
.our-services-items-3 .services-item-btn,
.our-services-items-6 .services-item-title,
.our-services-items-6 .services-item-btn,
.our-services-items-9 .services-item-title,
.our-services-items-9 .services-item-btn {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    padding-top: 0;
}

.our-services-items-3 .services-item-title .title,
.our-services-items-6 .services-item-title .title,
.our-services-items-9 .services-item-title .title {
    max-width: 100%;
    margin-bottom: 24px;
}

.our-services-items-3 .services-item-btn,
.our-services-items-6 .services-item-btn,
.our-services-items-9 .services-item-btn {
    margin-top: 40px;
}

.ready-white {
    background-image: url(../../images/freight/ready-white-back.jpg);
    color: var(--text-color);
}

.helpful-articles {
    display: flex;
    margin-left: -46px;
    margin-bottom: 46px;
}

.article {
    display: block;
    text-decoration: none;
    color: #0f1b24;
    width: calc(33.33% - 46px);
    margin-left: 46px;
}

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

.article-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
}

.article-img img {
    border-radius: 8px;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s linear;
    display: block;
    -webkit-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    object-fit: cover;
}

.article-content {
    margin-top: 8px;
}

.article__type {
    display: inline-block;
    padding: 4px 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    border-radius: 4px;
    background: #0f1b24;
}

.article-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0px 8px;
    padding-right: 16px;
}

.article-info p {
    color: #8f929b;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.article__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
}

.article__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 8px 0px 16px;
}

.article .read {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
}

.article .read svg {
    margin-left: 8px;
    transition: all 0.2s ease;
}

.article .read:hover svg {
    transform: translate(4px);
}

.helpful .btn-transparent {
    max-width: 155px;
    min-width: auto;
    width: auto;
}

.ready-mobile-btn {
    display: none;
}

/* Quote Form */
.locations-box {
    display: flex;
}

.locations-box .freight-inp-item {
    margin-bottom: 0;
    width: calc(50% - 8px);
    max-width: 304px;
    margin-right: 16px;
}

.locations-box .freight-inp-item:last-child {
    margin-right: 0;
}

.ui-autocomplete.ui-widget-content {
    border-radius: 4px;
    border: 1px solid #cdd6da;
}

.pac-container {
    border: 0;
    margin-top: 4px;
    box-shadow: none;
    border-radius: 4px;
    border: 1px solid #cdd6da;
    font-family: var(--font-primary);
    padding: 5px 0;
}

.pac-logo:after,
.pac-icon {
    display: none !important;
}

.pac-item {
    padding: 7px 16px;
    border: none;
    color: #0f1b24;
    font-size: 16px;
    line-height: 150%;
    cursor: pointer;
}

.pac-item-query {
    font-size: 16px;
    line-height: 150%;
    color: inherit;
}

.pac-matched {
    font-weight: 400;
}

.pac-item:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.hint-location-text {
    display: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
    margin-top: 8px;
    color: red;
}

.errors {
    padding: 0;
    list-style-type: none;
    margin: -16px 0 24px;
}

.errors li {
    color: red;
    margin-bottom: 8px;
}

.inp-load {
    position: relative;
}

.inp-load::after {
    content: "";
    position: absolute;
    top: 45px;
    right: 15px;
    padding: 8px;
    border: 2px solid #ebf1fc;
    border-right-color: var(--color-primary);
    border-radius: 50%;
    -webkit-animation: rotate 0.7s infinite linear;
    z-index: 1;
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

.validation_fail {
    border: 1px solid red !important;
}

.show_inp_load input {
    opacity: 0.3;
}

.show_inp_load::before {
    content: "";
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    padding: 10px;
    border: 3px solid #cdd0e1;
    border-right-color: var(--color-primary);
    border-radius: 50%;
    -webkit-animation: rotate 0.7s infinite linear;
    z-index: 1;
}

.freight-quote-services {
    display: flex;
    margin-top: 44px;
}

.freight-quote-services input {
    opacity: 0;
    position: absolute;
}

.freight-quote-services__item {
    width: 260px;
    padding: 32px 40px;
    border-radius: 8px;
    border: 1px solid #0f1b24;
    margin-right: 24px;
    cursor: pointer;
    text-align: center;
}

.freight-quote-services__item:last-child {
    margin-right: 0;
}

.freight-quote-services__item:hover {
    border: 1px solid var(--color-primary);
}

.freight-quote-services__item p {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
}


.popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    transition: var(--trans);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
}

.popup::-webkit-scrollbar {
    display: none;
}

.popup.active {
    visibility: visible !important;
    opacity: 1;
}

.popup-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.popup-title {
    color: #0F1B24;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
}

.partner-popup-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
}

.popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px;
    cursor: pointer;
    z-index: 2;
}

.popup-close__icon {
    width: 15px;
    height: 15px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 19L19 1" stroke="%230F1B24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 1L19 19" stroke="%230F1B24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.popup.active .popup-close__icon {
    transition: all 0.3s ease;
}

.popup-close:hover .popup-close__icon {
    transform: rotate(-90deg);
}

.error-hint {
    display: inline-block;
    margin-top: 2px;
    border: none !important;
    color: #F30000;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.popup-partner .popup-wrapper {
    padding: 40px 32px;
    width: 672px;
}

.popup-partner__text {
    margin: 12px 0 32px;
    line-height: 150%;
}

.partner-form {
    width: 100%;
}

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

.partner-form__btn .btn {
    margin-left: auto;
    margin-right: auto;
}

.popup-consent {
    margin: 16px 0 32px;
}

.popup-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.popup-consent label {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    padding-left: 35px;
    position: relative;
    display: flex;
    cursor: pointer;
    border: 1px solid transparent;
}

.popup-consent label::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="23" height="23" rx="1.5" stroke="%238F929B"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0;
}

.popup-consent input:checked+label::before {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="23" height="23" rx="1.5" stroke="%23ED6B2D"/><path d="M7.07141 11.1429L10.9286 15L16.9286 9" stroke="%238F929B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.popup-consent input.error-text+label {
    border: 1px solid red;
}

.partner-form__item {
    margin-bottom: 16px;
    position: relative;
}

.partner-form textarea {
    min-height: 50px;
    height: 150px;
    resize: none;
}


.popup-thank .popup-wrapper {
    padding: calc(160px + 32px) 32px 40px;
    width: 576px;
    position: relative;
}

.popup-thank .popup-close__icon {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 19L19 1" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 1L19 19" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>')
}

.popup-thank__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.popup-thank__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    text-align: center;
}

.popup-thank__separator {
    margin: 24px 0;
    border-bottom: 1px solid #17181A;
}

.popup-thank__text {
    font-size: 14px;
    line-height: 150%;
}

.popup-thank__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.popup-thank__buttons .btn {
    width: calc(50% - 8px);
}

.error-hint {
    margin-top: 2px !important;
}

.response-output {
    display: none;
    margin-bottom: 16px;
    padding: 15px;
    margin-top: 12px;
}

.response-output.failed {
    display: block;
    border: 1px solid red;
}

.response-output.sent {
    display: block;
    border: 1px solid #46b450;
}

/* Responsive */

@media screen and (max-width: 1339px) {
    .container {
        width: 1140px;
    }

    :root {
        --width-container: 1140px;
    }

    .header-item,
    .header-item.center {
        width: auto;
    }

    .drayage-services__item {
        padding: 134px 32px 31px;
    }

    .drayage-who__img img {
        max-width: 530px;
    }

    .guide-item__img {
        min-width: 260px;
        width: 260px;
        min-height: 202px;
    }

    .helpful-guides-wrapper {
        margin-left: -24px;
    }

    .guide-item {
        width: calc(50% - 24px);
        margin-left: 24px;
    }

    .freight-guides-video {
        width: 705px;
    }

    .thank-guides-video__item {
        height: 525px;
    }

    .freight-guides-wrapper {
        align-items: center;
    }

    .helpful-articles {
        margin-left: -24px;
    }

    .article {
        width: calc(33.33% - 24px);
        margin-left: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .container {
        width: 960px;
    }

    :root {
        --width-container: 960px;
    }

    .call {
        margin-right: 20px;
    }

    .drayage-head__title {
        font-size: 50px;
        max-width: 555px;
    }

    .drayage-head__text {
        font-size: 20px;
        max-width: 400px;
    }

    .logo a img {
        width: 150px;
    }

    .effortless-item {
        margin-top: 0;
    }

    .ready-new {
        background-position: 20% center;
    }

    .title {
        font-size: 32px;
    }

    .effortless-box {
        justify-content: space-between;
    }

    .effortless-item p {
        font-size: 19px;
    }

    .drayage-services__item {
        padding: 100px 26px 30px;
        width: calc(33% - 10px);
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .drayage-services-wrapper {
        margin-left: -10px;
    }

    .drayage-who__content p {
        margin-bottom: 10px;
    }

    .drayage-who__content {
        max-width: 510px;
        margin-right: 10px;
    }

    .drayage-who__img img {
        width: 480px;
    }

    .drayage-who__img {
        width: 430px;
        overflow: hidden;
        border-radius: 8px;
        line-height: 0;
    }

    .guide-item__img {
        min-width: 200px;
        width: 200px;
        min-height: 155px;
    }

    .guide-item-content {
        margin-left: 10px;
    }

    .guide-item__text {
        margin: 8px 0px;
    }

    .drayage-services__item-title {
        font-size: 22px;
        line-height: 120%;
    }

    .freight-step__title {
        font-size: 22px;
    }

    .freight-guides-wrapper {
        flex-direction: column;
    }

    .freight-guides-video {
        width: 848px;
    }

    .thank-guides-video__item {
        height: 485px;
    }

    .freight-guides-content {
        display: flex;
        justify-content: space-between;
        width: 848px;
        margin: 40px auto 0px;
    }

    .freight-guides-item-content {
        margin-left: 16px;
    }

    .freight-guides-line {
        display: none;
    }

    .freight-thank__title {
        font-size: 44px;
    }

    .freight-thank__subtitle {
        margin-top: 20px;
    }

    .freight-thank-block {
        width: 585px;
        padding: 64px 40px;
    }

    .freight-guides {
        margin-top: 100px;
    }

    .freight-thank {
        padding: 64px 0 100px;
    }

    .header-menu li {
        margin-right: 40px;
    }

    .effortless-box {
        flex-wrap: wrap;
    }

    .footer-main-item {
        margin-right: 45px;
    }

    .ready-service-left,
    .ready-service-background .ready-service-left {
        max-width: 430px;
    }

    .our-services__item {
        width: calc(50% - 16px);
    }

    .our-services__item.services-item-title {
        width: 100%;
        min-height: auto;
        padding-top: 0;
    }

    .services-item-title .title {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .article {
        width: calc(33.33% - 16px);
        margin-left: 16px;
    }

    .helpful-articles {
        margin-left: -16px;
    }

    .article-img {
        height: 200px;
    }

    .footer-main {
        order: -1;
        width: 100%;
        justify-content: space-between;
        margin-bottom: 48px;
    }

    .footer-wrapper {
        flex-wrap: wrap;
    }


}

@media screen and (max-width: 991px) {
    .container {
        width: 720px;
    }

    :root {
        --width-container: 720px;
    }

    .header-wrapper {
        z-index: 999;
        position: fixed;
        top: 0;
        right: -1000px;
        /* right: 0; */
        width: 100%;
        height: 100%;
        background: #fff;
        transition: all 0.3s;
        flex-direction: column;
        justify-content: flex-start;
        padding: 28px 24px;
        overflow-y: scroll;
    }

    .header-wrapper.active {
        right: 0;
    }

    .header-item .logo {
        display: none;
    }

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

    .mobile-menu {
        width: 34px;
        cursor: pointer;
        z-index: 3;
    }

    .mobile-menu span {
        display: block;
        border-bottom: 2px solid var(--text-color);
        border-radius: 10px;
        margin-left: auto;
    }

    .mobile-menu span:nth-child(1) {
        width: 24px;
    }

    .mobile-menu span:nth-child(2) {
        margin: 10.5px 0px;
    }

    .mobile-menu span:nth-child(3) {
        width: 16px;
    }

    .mobile-menu-close {
        display: block;
        margin-left: auto;
    }

    .mobile-menu-close img {
        max-width: 18px;
        height: auto;
    }

    .header-item,
    .header-item.center {
        width: 100%;
    }

    .header-item.center {
        margin-top: 64px;
    }

    .header-menu {
        display: flex;
        flex-direction: column;
    }

    .header-menu>li,
    .call-buttons-active .header-menu>li {
        margin-right: 0;
        margin-left: 0;
    }

    .header-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .header-menu li a {
        font-size: 16px;
        line-height: 130%;
    }

    .header-menu li {
        margin-bottom: 40px;
    }

    .header-item.end {
        flex-direction: column;
        justify-content: center;
    }

    .call {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 54px;
    }

    .header-social {
        margin-top: 80px;
        padding-top: 80px;
        display: flex;
        justify-content: center;
        max-width: 568px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        border-top: 1px solid #cdd6da;
    }

    .header-social__item {
        margin-right: 32px;
    }

    .header-social__item:last-child {
        margin-right: 0;
    }

    .header-social__item img {
        max-width: 32px;
        height: auto;
    }

    .logo a img,
    .footer .logo img {
        width: 122.5px;
    }

    .drayage-head__title {
        font-size: 35px;
        line-height: 110%;
        text-align: center;
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
    }

    .drayage-head__text {
        font-size: 16px;
        line-height: 140%;
        text-align: center;
        max-width: 384px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 24px;
    }

    .drayage-head .btn {
        width: 195px;
        min-width: 195px;
        margin-left: auto;
        margin-right: auto;
    }

    .drayage-head-box {
        max-width: none;
        margin: 56px auto 80px;
        justify-content: center;
    }

    .drayage-head__item {
        width: calc(118px + 24px);
        margin-right: 24px;
        padding-right: 24px;
    }

    .drayage-head__item:nth-child(2) {
        max-width: calc(93px + 24px);
    }

    .drayage-head {
        padding: 144px 0px 140px;
        background-position: 38% center;
    }

    .landing-head {
        background-position: center !important;
    }

    .title {
        font-size: 24px;
    }

    .effortless {
        padding: 100px 0px;
    }

    .effortless-item {
        width: 154px;
    }

    .effortless-item p {
        font-size: 16px;
        line-height: 140%;
        font-weight: 500;
        margin-top: 12px;
    }

    .effortless-item img {
        max-width: 80px;
    }

    .ready-new {
        min-height: 212px;
    }

    .ready-new-wrapper {
        justify-content: center;
    }

    .ready-new__text {
        font-size: 20px;
        line-height: 120%;
        max-width: 335px;
        margin-right: 24px;
        font-weight: 500;
    }

    .ready-new-wrapper .btn {
        width: 191px;
        min-width: 191px;
    }

    .ready-phone::after {
        display: none;
    }

    .drayage-services {
        padding: 100px 0px 84px;
    }

    .drayage-services__item {
        width: calc(50% - 14px);
        margin-left: 14px;
        margin-bottom: 14px;
        padding: 38px 22px 31px;
    }

    .drayage-services-wrapper {
        margin-left: -14px;
        margin-top: 24px;
    }

    .drayage-services__item-title {
        font-size: 20px;
        font-weight: 500;
    }

    .drayage-services__item-text {
        margin: 4px 0px 13px;
    }

    .drayage-who__content {
        width: 350px;
        position: relative;
    }

    .drayage-who__content {
        max-height: 450px;
    }

    .drayage-who__content.show {
        max-height: 100%;
    }

    .drayage-who__content.hide {
        overflow: hidden;
    }

    .show-more {
        position: absolute;
        bottom: 0px;
        left: 0;
        bottom: -20px;
        color: var(--text-color);
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
        text-transform: capitalize;
    }

    .show-more.active {
        display: block;
    }

    .drayage-who__content.show .show-more,
    .feedbacks-item__text.show .show-more {
        position: static;
    }

    .drayage-who__content.show .show-more {
        margin-top: 20px;
    }

    .read-more-wrapp {
        position: relative;
    }

    .read-more-wrapp.hide::before {
        content: "";
        width: 100%;
        height: 70px;
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 45%);
    }

    .read-more-wrapp.hide .show-more {
        bottom: 0px;
    }

    .drayage-who__content .show-more {
        margin-bottom: 0;
    }

    .drayage-who__img {
        width: 356px;
    }

    .drayage-who {
        padding-bottom: 90px;
    }

    .drayage-who__content h2,
    .drayage-who__content h3,
    .drayage-who__content h4,
    .drayage-who__content h5,
    .drayage-who__content h6 {
        font-size: 20px;
        font-weight: 500;
        line-height: 120%;
    }

    .feedbacks {
        padding: 100px 0px;
    }

    .drayage-who-wrapper,
    .feedbacks .feedbacks-slider,
    .slick-dots {
        margin-top: 24px;
    }

    .feedbacks-item__text {
        max-height: 150px;
    }

    .feedbacks-item__text.show {
        max-height: 100%;
    }

    .feedbacks-item__text.hide {
        overflow: hidden;
    }

    .feedbacks-item__text.hide::before {
        height: 60px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f7f8f9 40%);
    }

    .feedbacks-item__text.show .show-more {
        margin-top: 10px;
    }

    .helpful-tabs {
        margin: 28px 0px;
    }

    .helpful-tabs .tab {
        font-size: 20px;
    }

    .questions-details {
        padding: 24px 0px;
    }

    .helpful {
        padding-bottom: 100px;
    }

    .guide-item {
        flex-direction: column;
        width: calc(50% - 16px);
        margin-left: 16px;
    }

    .guide-item-content {
        padding: 0;
        padding-top: 16px;
        margin-left: 0;
    }

    .guide-item__img {
        width: 100%;
        min-height: 230px;
    }

    .helpful-guides-wrapper {
        margin-bottom: 0;
    }

    .helpful-guides-wrapper {
        margin-left: -16px;
    }

    .footer-wrapper {
        flex-wrap: wrap;
    }

    .footer-social-wrapper {
        margin-left: 195px;
        margin-top: 30px;
    }

    .social-item {
        width: 40px;
        height: 40px;
    }

    .footer-social__item {
        margin-right: 24px;
    }

    .effortless .title {
        max-width: 335px;
    }

    .effortless-subtitle {
        max-width: 411px;
    }

    .step-navigation__item-line {
        width: 16px;
    }

    .freight-step__title {
        font-size: 20px;
    }

    .freight-guides-video,
    .freight-guides-content {
        width: 100%;
    }

    .freight-thank__title {
        font-size: 24px;
        font-weight: 500;
        line-height: 110%;
    }

    .freight-thank__subtitle {
        line-height: 130%;
        margin-top: 16px;
        text-transform: none;
        font-size: 18px;
    }

    .freight-thank-block {
        width: 448px;
        padding: 48px 40px;
        border-radius: 8px;
    }

    .freight-thank {
        padding: 32px 0px 80px;
    }

    .freight-thank-block::before {
        width: 55px;
        height: 52px;
        bottom: -50px;
        right: 50px;
    }

    .freight-thank-social {
        margin-top: 64px;
        padding: 66px 0px;
    }

    .freight-thank-social-box h3 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 120%;
    }

    .freight-thank-social__item {
        margin-left: 24px;
        width: 32px;
    }

    .freight-thank-social-box {
        max-width: 573px;
    }

    .freight-thank-social-items .social-item {
        margin-right: 24px;
        width: 32px;
        height: 32px;
    }

    .freight-thank-social-box div {
        max-width: 293px;
    }

    .freight-guides__title {
        font-size: 24px;
    }

    .freight-guides {
        margin-top: 80px;
    }

    .thank-guides-video__item {
        height: 400px;
    }

    .freight-guides-wrapper {
        margin: 24px 0px;
    }

    .freight-guides-item__img {
        width: 170px;
        height: 95px;
    }

    .freight-guides-item-content {
        padding-top: 0;
        width: 158px;
    }

    .freight-guides-item-bottom {
        margin-top: 8px;
    }

    .footer-left__text {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .statistics-item__number {
        font-size: 48px;
        margin-bottom: 8px;
    }

    .ready-service-left,
    .ready-service-background .ready-service-left {
        max-width: 300px;
    }

    .ready-service-elements {
        width: 385px;
    }

    .ready-service__item {
        font-size: 16px;
        line-height: 140%;
        padding: 16px 22px;
    }

    .ready-service {
        padding: 80px 0;
    }

    .our-services {
        padding: 100px 0;
    }

    .services-item-title .title {
        margin-bottom: 8px;
    }

    .our-services__item {
        min-height: 180px;
    }

    .our-services__item-title {
        font-size: 20px;
        line-height: 120%;
    }

    .our-services__item .learn-more {
        margin-top: 13px;
    }

    .services-item-background {
        padding: 24px 22px;
    }

    .services-item-overlay {
        height: 100%;
        background: linear-gradient(180deg,
                rgba(22, 23, 24, 0) 0%,
                rgba(22, 23, 24, 0.8) 100%);
    }

    .our-services__item-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 150%;
        margin-top: 4px;
    }

    .helpful-articles {
        flex-direction: column;
        margin-left: 0;
        margin-top: 0;
    }

    .article {
        margin-top: 24px;
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .article:first-child {
        margin-top: 0;
    }

    .article-img {
        width: 350px;
        height: 240px;
    }

    .article-content {
        margin-top: 0;
        width: 350px;
    }

    .article-info {
        margin: 8px 0;
    }

    .article__text {
        margin: 8px 0px 13px;
    }

    .logo-img {
        max-width: 34px;
        height: auto;
    }

    .logo-text {
        max-width: 82px;
        height: auto;
    }

    .footer-left__text {
        font-size: 12px;
        line-height: 150%;
        margin-top: 8px;
    }

    .social-item {
        margin-right: 24px;
    }

    .header-social .social-item svg path {
        fill: #0f1b24;
    }

    .landing-head .drayage-head__text {
        margin-top: 24px;
    }

    .footer-social {
        margin-top: 32px;
    }

    .freight-quote-services__item {
        width: calc(33.33% - (16px * 2) / 3);
        margin-right: 16px;
        padding: 32px 20px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        width: 540px;
    }

    :root {
        --width-container: 540px;
    }

    .drayage-head {
        padding: 98px 0px 120px;
    }

    .effortless-item {
        width: 45%;
        margin-bottom: 40px;
    }

    .effortless-box {
        justify-content: space-around;
    }

    .effortless {
        padding: 100px 0px 60px;
    }

    .effortless-item p {
        max-width: 160px;
    }

    .drayage-services__item {
        padding: 38px 18px 31px;
    }

    .drayage-services__item {
        width: calc(50% - 10px);
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .drayage-services-wrapper {
        margin-left: -10px;
    }

    .drayage-who__img {
        display: none;
    }

    .drayage-who__content {
        width: 100%;
        margin-right: 0;
    }

    .footer-social-wrapper {
        margin-left: 0;
    }

    .footer-logo {
        margin-right: 0;
    }

    .feedbacks .feedbacks-slider {
        margin-left: 0;
    }

    .freight-page-step-title {
        font-size: 28px;
    }

    .freight-step-tabs label {
        font-size: 22px;
    }

    .freight-step-wrapper {
        width: 100%;
    }

    .step-navigation {
        justify-content: space-between;
        position: relative;
    }

    .step-navigation::before,
    .step-navigation::after {
        content: "";
        width: 56px;
        border-bottom: 1px solid #cdd6da;
        position: absolute;
        top: 12px;
    }

    .step-navigation::before {
        left: 132px;
    }

    .step-navigation::after {
        right: 132px;
    }

    .step-navigation-second::after {
        right: 120px;
    }

    .step-navigation-second::before {
        left: 155px;
    }

    .step-navigation__item {
        flex-direction: column;
        max-width: 30%;
        text-align: center;
    }

    .step-navigation__item-text {
        line-height: 120%;
        font-size: 19px;
    }

    .step-navigation__item-line {
        display: none;
    }

    .step-navigation__item-number {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .freight-guides-content {
        flex-direction: column;
        width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .freight-guides-item-content {
        width: 200px;
    }

    .freight-guides-item__img {
        width: 200px;
        height: 110px;
    }

    .freight-guides-line {
        display: block;
    }

    .thank-guides-video__item {
        height: 304px;
    }

    .footer-main-item {
        margin-bottom: 16px;
        margin-right: 50px;
    }

    .footer-main {
        margin-bottom: 24px;
    }

    /* .footer-logo {
        display: flex;
        align-items: center;
        width: 100%;
    } */

    /* .footer-left__text {
        margin-left: 30px;
        margin-top: 0;
    } */

    .statistics-item {
        width: 49%;
        margin-top: 24px;
    }

    .effortless-statistics {
        flex-wrap: wrap;
        max-width: 430px;
    }

    .landing-effortless .effortless-subtitle {
        margin: 16px auto 16px;
    }

    .landing-effortless {
        padding: 100px 0;
    }

    .ready-service-wrapper {
        flex-direction: column;
    }

    .ready-service-left .btn {
        display: none;
    }

    .ready-service-left,
    .ready-service-background .ready-service-left {
        max-width: 385px;
    }

    .ready-service-elements {
        width: 100%;
        max-width: 512px;
        margin-top: 8px;
        margin-bottom: 32px;
    }

    .ready-mobile-btn {
        display: flex;
    }

    .ready-service__item {
        padding: 23px 40px;
        font-size: 20px;
        line-height: 120%;
    }

    .article {
        flex-direction: column;
        max-width: 410px;
        margin-left: auto;
        margin-right: auto;
    }

    .article-img,
    .article-content {
        width: 100%;
    }

    .article-content {
        margin-top: 4px;
    }

    .freight-quote-services {
        flex-wrap: wrap;
        justify-content: center;
    }

    .freight-quote-services__item {
        width: 48%;
        margin-left: 1%;
        margin-right: 1%;
        margin-bottom: 16px;
    }

    .freight-quote-services__item:last-child:last-child {
        margin-bottom: 0;
    }

    .popup-partner .popup-wrapper {
        width: 96%;
        max-width: 648px;
        padding: 40px 20px;
    }

    .partner-popup-title {
        font-size: 24px;
    }

    .popup-thank .popup-wrapper {
        width: 96%;
        max-width: 576px;
    }
}

@media screen and (max-width: 575px) {
    .container {
        width: 380px;
    }

    :root {
        --width-container: 380px;
    }

    .drayage-head__title,
    .drayage-head__text {
        text-align: left;
    }

    .drayage-head__item {
        width: auto;
        max-width: calc(113px + 12px);
        margin-right: 12px;
        padding-right: 12px;
    }

    .drayage-head__item:nth-child(2) {
        max-width: calc(90px + 12px);
    }

    .drayage-head__item:last-child {
        width: 100%;
    }

    .drayage-head .btn,
    .ready-new-wrapper .btn,
    .helpful .btn,
    .header-btn {
        width: 100%;
        /* min-width: 335px; */
        /* max-width: 335px; */
    }

    .effortless {
        padding: 64px 0px 22px;
    }

    .ready-new-wrapper {
        flex-direction: column;
    }

    .ready-new__text {
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }

    .drayage-services {
        padding: 64px 0px 56px;
    }

    .drayage-services__item {
        width: 100%;
        margin-left: 0;
        margin-bottom: 8px;
        padding: 38px 20px 24px;
        min-height: 190px;
    }

    .drayage-services-wrapper {
        margin-left: 0;
    }

    .drayage-who {
        padding-bottom: 64px;
    }

    .feedbacks {
        padding: 64px 0px;
    }

    .helpful-guides-wrapper {
        margin-left: 0;
    }

    .guide-item {
        width: 100%;
        margin-left: 0;
    }

    .helpful {
        padding-bottom: 64px;
    }

    .faq-btn {
        margin-top: 32px;
    }

    .freight-page-step-title {
        font-size: 25px;
    }

    .step-navigation__item {
        max-width: 75px;
    }

    .step-navigation__item:nth-child(2),
    .step-navigation-second .step-navigation__item:nth-child(1) {
        max-width: 125px;
    }

    .step-navigation-second .step-navigation__item:nth-child(2) {
        max-width: 75px;
    }

    .step-navigation__item-text {
        font-size: 17px;
    }

    .step-navigation::after {
        right: 85px;
    }

    .step-navigation::before {
        left: 85px;
    }

    .step-navigation-second::after {
        right: 75px;
    }

    .step-navigation-second::before {
        left: 105px;
    }

    .freight-step-btn {
        width: 100%;
        /* max-width: 340px;
        margin-left: auto;
        margin-right: auto; */
    }

    .freight-shipping-dates {
        flex-direction: column;
    }

    .freight-date .inp {
        width: 100%;
    }

    .freight-date {
        margin-bottom: 16px;
        margin-right: 0;
    }

    .freight-shipping-dates {
        margin-bottom: 8px;
    }

    .freight-select {
        margin-top: 0;
    }

    .freight-step-wrapper textarea {
        height: 132px;
    }

    .freight-thank-block {
        width: 100%;
    }

    .freight-thank__title {
        font-weight: 500;
    }

    .freight-thank-block {
        padding: 40px 20px;
    }

    .freight-thank-social {
        padding: 38px 0px;
    }

    .freight-thank-social-box {
        flex-direction: column;
    }

    .freight-thank-social-box div {
        max-width: 100%;
    }

    .freight-thank-social-items {
        margin-top: 24px;
        width: 100%;
    }

    .freight-thank-social__item:first-child {
        margin-left: 0;
    }

    .freight-guides-video {
        display: none;
    }

    .freight-guides {
        margin-top: 64px;
    }

    .freight-guides-content {
        margin-top: 0;
        width: 100%;
    }

    .freight-guides-wrapper {
        margin: 40px 0px;
    }

    .freight-guides-item__img {
        width: 175px;
        height: 100px;
    }

    .freight-guides-item-content {
        width: 189px;
    }

    .footer-main-item {
        margin-right: 0;
    }

    .footer-main-item:first-child {
        margin-right: 16px;
    }

    .footer-main-item h3 {
        margin-bottom: 8px;
    }

    .footer-main {
        margin-bottom: 0;
    }

    .btn-footer {
        width: 100%;
    }

    .footer-logo {
        width: 100%;
        order: 1;
        margin-top: 48px;
    }

    .footer-social {
        justify-content: space-between;
    }

    .social-item {
        margin-right: 0;
    }

    .footer-left__text {
        max-width: none;
    }

    .footer-left__text span {
        display: inline;
    }

    .effortless-subtitle {
        max-width: 100%;
    }

    .freight-datepicker-calendar {
        width: 300px;
    }

    .landing-head .drayage-head__text {
        max-width: 278px;
        margin-left: 0;
    }

    .landing-head .drayage-head__item {
        opacity: 0.85;
    }

    .landing-effortless {
        padding: 64px 0px;
    }

    .ready-service__item {
        font-size: 16px;
        line-height: 140%;
        padding: 16px 22px;
    }

    .ready-mobile-btn,
    .services-item-btn .btn {
        width: 100%;
        /* min-width: 335px; */
        /* max-width: 335px; */
        margin-left: auto;
        margin-right: auto;
    }

    .our-services {
        flex-direction: column;
        margin-left: 0;
        margin-top: 0;
        padding: 64px 0;
    }

    .our-services__item {
        width: 100%;
        margin-left: 0;
    }

    .our-services__item.services-item-btn {
        min-height: auto;
        margin-top: 24px;
    }

    .drayage-head-box {
        justify-content: flex-start;
    }

    .ready-new-wrapper {
        align-items: flex-start;
    }

    .locations-box {
        flex-direction: column;
    }

    .locations-box .freight-inp-item {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .locations-box .freight-inp-item:last-child {
        margin-top: 24px;
    }

    .freight-quote-services {
        flex-direction: column;
    }

    .freight-quote-services__item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 16px 20px;
    }

    .freight-quote-services {
        margin-top: 32px;
    }

    .popup-close {
        top: 20px;
    }

    .popup-category .popup-wrapper {
        padding: 60px 24px;
        width: 100%;
    }

    .popup-wrapper {
        width: 100%;
        margin-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        animation: slideOut 0.3s ease forwards;
    }

    .popup.active .popup-wrapper {
        animation: slideIn 0.3s ease forwards;

    }

    @keyframes slideIn {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    @keyframes slideOut {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(100%);
        }
    }

    .popup {
        padding: 0;
    }

    .popup-partner .popup-wrapper {
        width: 100%;
        padding: 48px 20px;
    }

    .popup-thank .popup-wrapper {
        width: 100%;
        padding: calc(160px + 32px) 20px 40px;
    }

    .popup-thank__title {
        font-size: 24px;
    }

    .popup-thank__buttons {
        flex-direction: column;
    }

    .popup-thank__buttons .btn {
        width: 100%;
    }

    .popup-thank__buttons .btn:last-child {
        margin-top: 16px;
    }

    .popup-thank__img img {
        width: 100%;
    }

    .partner-popup-title {
        max-width: 350px;
    }

    .partner-form__btn .btn {
        width: 100%;
    }
}

@media screen and (max-width: 410px) {
    .container {
        width: 340px;
    }

    :root {
        --width-container: 340px;
    }

    .drayage-head__item {
        width: calc(86px + 12px);
    }

    .drayage-head__item:first-child {
        width: calc(113px + 12px);
    }

    .drayage-head__item:nth-child(2) {
        max-width: calc(86px + 12px);
    }

    .drayage-head__item:last-child {
        width: auto;
    }

    .effortless-box {
        justify-content: space-between;
    }

    .drayage-services__item {
        min-height: 182px;
    }

    .questions-details summary {
        font-size: 18px;
    }

    .guide-item__img {
        min-height: 178px;
    }

    .header-social {
        margin-top: 56px;
        padding-top: 56px;
    }

    .drayage-head .btn,
    .ready-new-wrapper .btn,
    .helpful .btn,
    .header-btn {
        min-width: 100%;
        max-width: 100%;
    }

    .freight-page-step-title {
        font-size: 24px;
    }

    .freight-step-tabs label {
        font-size: 20px;
    }

    .step-navigation__item-text {
        font-size: 16px;
    }

    .step-navigation::after {
        right: 75px;
    }

    .step-navigation::before {
        left: 75px;
    }

    .inp-name {
        margin-bottom: 4px;
    }

    .freight-step-btn {
        margin-top: 32px;
    }

    .freight-step {
        padding: 16px 0px 66px;
    }

    .freight-page-step-title {
        margin-top: 16px;
    }

    .step-navigation__item,
    .step-navigation-second .step-navigation__item:nth-child(2) {
        max-width: 70px;
    }

    .freight-switch {
        margin-bottom: 32px;
    }

    .step-navigation-second::after {
        right: 60px;
    }

    .step-navigation-second::before {
        left: 97px;
    }

    .step-navigation-second .step-navigation__item:nth-child(1) {
        max-width: 115px;
    }

    .freight-thank__title {
        line-height: 130%;
    }

    .freight-thank__subtitle {
        font-size: 16px;
        line-height: 140%;
    }

    .freight-thank-block {
        padding: 40px 20px;
    }

    .freight-thank__back {
        margin-top: 32px;
    }

    .freight-thank-block::before {
        width: 40px;
        height: 36px;
        bottom: -34px;
        right: 40px;
    }

    .freight-thank-social {
        margin-top: 64px;
    }

    .freight-thank-social__item {
        margin-left: 32px;
    }

    .freight-guides-item__img {
        width: 161px;
        height: 88px;
    }

    .freight-guides-item-content {
        width: 163px;
    }

    .freight-guides .btn {
        width: 100%;
    }

    .footer-left__text {
        margin-left: 0;
        font-size: 12px;
        margin-top: 8px;
    }

    .footer-main-item {
        max-width: 160px;
    }

    .footer-social-wrapper {
        margin-top: 22px;
    }

    .footer-wrapper {
        padding: 40px 0px 24px;
    }

    .copyright {
        padding: 15px 0px 24px;
    }

    .landing-head .drayage-head__item {
        margin-right: 16px;
        padding-right: 16px;
    }

    .landing-head .drayage-head__item:last-child {
        margin-right: 0;
        padding-right: 0;
    }

    .effortless-statistics {
        flex-direction: column;
    }

    .statistics-item {
        width: 100%;
        max-width: 100%;
    }

    .freight-quote-services__item svg {
        max-width: 120px;
        height: auto;
    }

    .freight-quote-services__item p {
        margin-top: 8px;
    }

    .popup-partner .popup-wrapper {
        padding: 40px 24px;
    }

    .popup-thank .popup-wrapper {
        padding: calc(160px + 32px) 16px 40px;
    }

    .popup-thank__title {
        font-size: 22px;
    }

    .popup-title {
        font-size: 24px;
    }

    .popup-partner__text {
        margin: 16px 0 32px;
    }

    .partner-form__item {
        margin-bottom: 12px;
    }

    .partner-form textarea {
        height: 110px;
    }

    .response-output {
        padding: 10px;
    }
}

@media screen and (max-width: 359px) {
    .container {
        width: 300px;
    }

    :root {
        --width-container: 300px;
    }

    .drayage-head__item {
        width: calc(80px + 12px);
        font-size: 14px;
    }

    .drayage-head__item:first-child {
        width: calc(95px + 12px);
    }

    .drayage-head__item:nth-child(2) {
        width: calc(80px + 12px);
    }

    .drayage-head {
        padding: 55px 0px;
    }

    .drayage-head-box {
        margin: 40px 0px 50px;
    }

    .header-item.center {
        margin-top: 50px;
    }

    .header-menu li,
    .call {
        margin-bottom: 35px;
    }

    .header-social {
        margin-top: 50px;
        padding-top: 45px;
    }

    .effortless-item img {
        max-width: 70px;
    }

    .effortless-item {
        width: 48%;
    }

    .effortless-item p {
        font-size: 15px;
    }

    .ready-new__text {
        font-size: 19px;
    }

    .drayage-services__item-title {
        font-size: 18px;
    }

    .drayage-services__item-text {
        font-size: 15px;
    }

    .drayage-who__content p {
        font-size: 15px;
    }

    .feedbacks-item__img img {
        max-width: 70px;
    }

    .feedbacks-slider__item {
        padding: 24px 20px;
        margin-right: 10px;
    }

    .feedbacks-item__text {
        font-size: 15px;
    }

    .questions-details summary {
        font-size: 17px;
    }

    .questions-details p {
        font-size: 15px;
    }

    .guide-item__title {
        font-size: 18px;
    }

    .guide-item__text {
        font-size: 15px;
    }

    .guide-item__img {
        min-height: 165px;
    }

    .freight-page-step-title {
        font-size: 22px;
    }

    .step-navigation__item-text {
        font-size: 15px;
    }

    .step-navigation__item,
    .step-navigation-second .step-navigation__item:nth-child(2) {
        max-width: 60px;
    }

    .step-navigation::after {
        right: 64px;
    }

    .step-navigation::before {
        left: 64px;
    }

    .step-navigation-second::after {
        right: 55px;
    }

    .step-navigation-second::before {
        left: 100px;
    }

    .step-navigation-second::after,
    .step-navigation-second::before {
        width: 40px;
    }

    .freight-step__title {
        font-size: 18px;
    }

    .freight-dates__item label {
        font-size: 15px;
    }

    .freight-permission label {
        font-size: 13px;
    }

    .freight-thank__subtitle {
        font-size: 15px;
    }

    .freight-thank-block {
        padding: 30px 10px;
    }

    .freight-guides-item__title {
        font-size: 13px;
    }

    .freight-guides-item-content {
        margin-left: 10px;
    }

    .freight-guides-item__date,
    .freight-guides-item__readtime {
        font-size: 11px;
    }

    .footer-main {
        width: 100%;
        margin-left: 0px;
        flex-direction: column;
    }

    .footer-main-item {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-left: 0px;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-social-wrapper {
        width: 100%;
        text-align: center;
    }

    .ready-service__item {
        margin-top: 12px;
        width: calc(50% - 12px);
        margin-left: 12px;
        padding: 12px;
    }

    .footer-logo {
        width: 100%;
        text-align: center;
    }

    .footer-logo .logo {
        justify-content: center;
    }

    .popup-partner .popup-wrapper {
        padding: 48px 16px 40px;
    }

    .popup-partner__text {
        font-size: 14px;
    }

    .popup-thank .popup-wrapper {
        padding: calc(160px + 32px) 20px 32px;
    }

    .popup-thank__title {
        font-size: 20px;
    }

    .popup-thank__img {
        margin-bottom: 24px;
    }

    .popup-thank__buttons {
        margin-top: 28px;
    }

    .popup-thank__separator {
        margin: 20px 0;
    }
}

.freight-form-box__title_second {
    font-size: 16px;
    color: #8f929b;
    position: relative;
    padding-left: 26px;
    margin-top: -14px;
    margin-bottom: 24px;
    line-height: 150%;
}

.freight-form-box__title_second.mb {
    margin-top: -10px;
}

.freight-form-box__title_second.x2 {
    margin-bottom: 24px;
}

.freight-form-box__title_second i {
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
}

.freight-form-box__title_second i svg {
    vertical-align: top;
}

.freight-choice-date__label.mr-min {
    margin-right: 10px;
}