/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider .item {
    position: relative;
    padding-top: 251px;
    padding-bottom: 260px;
    z-index: 10;
}

.main-slider__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider__bg:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(2, 2, 34, .40);
    z-index: -1;
}

.active .main-slider__bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


.main-slider__shape-1 {
    position: absolute;
    top: 0;
    left: 102px;
    z-index: 1;
}

.main-slider__shape-1 img {
    width: auto !important;
}

.main-slider__shape-2 {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: .40;
    z-index: 1;
}

.main-slider__shape-2 img {
    width: auto !important;
}

.main-slider__shape-3 {
    position: absolute;
    top: 0;
    left: 229px;
    opacity: 0.04;
    z-index: 1;
}

.main-slider__shape-3 img {
    width: auto !important;
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider__sub-title {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    color: var(--tecture-primary);
    text-transform: uppercase;
    letter-spacing: -0.016em;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(-200px);
}

.main-slider__title {
    position: relative;
    font-size: 80px;
    color: var(--tecture-white);
    font-weight: 700;
    line-height: 86px;
    letter-spacing: -0.04em;
    margin-top: 10px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-200px);
}

.main-slider__btn-and-video-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 37px;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.main-slider__btn-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-slider__btn {
    background-color: var(--tecture-primary);
    color: var(--tecture-black);
}

.main-slider__btn:hover {
    color: var(--tecture-base);
}

.main-slider__btn:before {
    background-color: var(--tecture-base);
}

.main-slider__btn:after {
    background-color: var(--tecture-white);
}

.main-slider__video-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 35px;
}

.main-slider__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 17px;
    color: var(--tecture-white);
    background-color: var(--tecture-base);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.main-slider__video-icon:hover {
    background-color: var(--tecture-white);
    color: var(--tecture-base);
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--tecture-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.main-slider__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.main-slider__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.main-slider__video-text {
    position: relative;
    display: block;
    font-size: 18px;
    color: var(--tecture-white);
    line-height: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-left: 20px;
}

.active .main-slider__sub-title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

.active .main-slider__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1500ms;
}

.active .main-slider__btn-and-video-box {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}

.main-slider .owl-theme .owl-dots {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    position: absolute;
    top: 56%;
    left: 0;
    right: 0;
    padding: 0 80px;
    margin: 0 auto !important;
    height: 0;
    line-height: 0;
    transform: translateY(-50%);
}

.main-slider .owl-theme .owl-dots .owl-dot+.owl-dot {
    margin-top: 15px;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(var(--tecture-white-rgb), 1);
    border: 2px solid transparent;
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
    background-color: rgba(var(--tecture-white-rgb), 0);
    border: 2px solid var(--tecture-white);
}


.main-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
}

.main-slider .owl-nav .owl-next {
    position: absolute;
    right: 30px;
    top: 0;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 3px solid #ffffff !important;
    text-align: center;
    color: #ffffff;
    color: #ffffff !important;
    line-height: 60px !important;
    font-weight: 700;
    opacity: 1;
    margin: 0;
    padding: 0 !important;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-nav .owl-prev {
    position: absolute;
    left: 30px;
    top: 0;
    height: 62px;
    width: 62px;
    border-radius: 50%;
    border: 3px solid #ffffff !important;
    text-align: center;
    color: #ffffff !important;
    line-height: 60px !important;
    opacity: 1;
    margin: 0;
    padding: 0 !important;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-nav .owl-next span,
.main-slider .owl-nav .owl-prev span {
    display: block;
}

.main-slider .owl-nav .owl-next span,
.main-slider .owl-nav .owl-prev span:before,
.main-slider .owl-nav .owl-next span:before {
    color: #ffffff;
}

.main-slider .owl-nav .owl-next span.right-arrow {
    position: relative;
    transform: rotate(180deg);
}

.main-slider .owl-nav .owl-next:hover,
.main-slider .owl-nav .owl-prev:hover {
    background: var(--tecture-primary);
    border-color: var(--tecture-primary) !important;
}






/*--------------------------------------------------------------
  # Main Slider Two
  --------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
    background-color: #0a0c09;
    padding-left: 100px;
    z-index: 10;
}

.main-slider-two .item {
    position: relative;
    padding-top: 214px;
    padding-bottom: 240px;
    background-color: var(--tecture-black);
    z-index: 10;
}

.main-slider-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider-two__bg:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 10, 7, .60);
    z-index: -1;
}

.active .main-slider-two__bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.main-slider-two__content {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider-two__title {
    position: relative;
    font-size: 100px;
    color: var(--tecture-white);
    font-weight: 700;
    line-height: 120px;
    font-style: italic;
    text-transform: capitalize;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-200px);
}

.active .main-slider-two__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

.main-slider-two__text {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--tecture-white);
    margin-top: 29px;
    margin-bottom: 51px;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateX(-200px);
}

.active .main-slider-two__text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1500ms;
}

.main-slider-two__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.active .main-slider-two__btn-box {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}

.main-slider-two .owl-nav {
    position: absolute;
    top: 50%;
    right: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(-50%);
    margin: 0 !important;
    z-index: 100;
}

.main-slider-two .owl-nav .owl-next,
.main-slider-two .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 60px;
    height: 60px;
    font-size: 20px !important;
    color: rgba(var(--tecture-white-rgb), .30) !important;
    opacity: 1;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
    background-color: transparent !important;
    border: 2px solid rgba(var(--tecture-white-rgb), .30) !important;
}

.main-slider-two .owl-nav .owl-prev {
    margin-bottom: 10px;
}

.main-slider-two .owl-nav .owl-next span,
.main-slider-two .owl-nav .owl-prev span {
    display: block;
    transition: all 500ms ease;
}

.main-slider-two .owl-nav .owl-next span,
.main-slider-two .owl-nav .owl-prev span,
.main-slider-two .owl-nav .owl-prev span:before,
.main-slider-two .owl-nav .owl-next span:before {
    color: rgba(var(--tecture-white-rgb), .30) !important;
    transition: all 500ms ease;
}

.main-slider-two .owl-nav .owl-next:hover span,
.main-slider-two .owl-nav .owl-prev:hover span,
.main-slider-two .owl-nav .owl-prev:hover span:before,
.main-slider-two .owl-nav .owl-next:hover span:before {
    color: rgba(var(--tecture-white-rgb), 1) !important;
}

.main-slider-two .owl-nav .owl-next:hover,
.main-slider-two .owl-nav .owl-prev:hover {
    border: 2px solid rgba(var(--tecture-white-rgb), 1) !important;
}


.main-slider-two .owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0 auto !important;
    height: 0;
    line-height: 0;
}

.main-slider-two .owl-theme .owl-dots .owl-dot+.owl-dot {
    margin-left: 10px;
}

.main-slider-two .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(var(--tecture-white-rgb), 1);
    border: 2px solid transparent;
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-two .owl-theme .owl-dots .owl-dot:hover span,
.main-slider-two .owl-theme .owl-dots .owl-dot.active span {
    background-color: rgba(var(--tecture-white-rgb), 0);
    border: 2px solid var(--tecture-white);
}

/*--------------------------------------------------------------
  # Main Slider Three
  --------------------------------------------------------------*/



  /***
=============================================
About One
=============================================
***/
.about-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 90px 0px !important;
    z-index: 1;
}

.about-one__content {
    position: relative;
    display: block;
    max-width: 655px;
    width: 100%;
}

.about-one__content .sec-title {
    padding-bottom: 31px;
}

.about-one__content-text2 {
    position: relative;
    display: block;
    margin-top: 45px;
}

.about-one__content-text2 .row {
    --bs-gutter-x: 20px;
}

.about-one__content-text2-single {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    border-left: 2px solid var(--logistiq-base);
    padding: 25px 25px 21px;
    margin-bottom: 30px;
}
.about-one__content-text2-single-ar {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    border-right: 2px solid var(--logistiq-base);
    padding: 25px 25px 21px;
    margin-bottom: 30px;
}
.about-one__content-text2-single-ar {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    border-right: 2px solid var(--logistiq-base);
    padding: 25px 25px 21px;
    margin-bottom: 30px;
}

.about-one__content-text2-single-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1px;
}
.about-one__content-text2-single-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1px;
}

.about-one__content-text2-single-top .icon {
    position: relative;
    display: block;
    padding-right: 20px;
}
.about-one__content-text2-single-top .icon-ar {
    position: relative;
    display: block;
    padding-left: 10px;
}

.about-one__content-text2-single-top .icon::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 6px;
    width: 1px;
    background: #E4E4E4;
    content: "";
}
.about-one__content-text2-single-top .icon-ar::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 6px;
    width: 1px;
    background: #E4E4E4;
    content: "";
}

.about-one__content-text2-single-top .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 30px;
    line-height: 30px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}
.about-one__content-text2-single-top .icon-ar span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 30px;
    line-height: 30px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.about-one__content-text2-single:hover .about-one__content-text2-single-top .icon span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}
.about-one__content-text2-single:hover .about-one__content-text2-single-top .icon-ar span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.about-one__content-text2-single-top .title-box {
    position: relative;
    display: block;
    margin-left: 10px;
    flex: 1;
}

.about-one__content-text2-single-top .title-box h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.about-one__content-text2-single p {
    font-size: 16px;
    margin: 0;
}

.about-one__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.about-one__content-bottom .btn-box {
    position: relative;
    display: block;
    line-height: 0px;
}

.about-one__content-bottom .contact-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 85px;
}

.about-one__content-bottom .contact-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.about-one__content-bottom .contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 15px;
    line-height: 15px;
}

.about-one__content-bottom .contact-box .text-box {
    position: relative;
    display: block;
    margin-left: 15px;
    flex: 1;
}

.about-one__content-bottom .contact-box .text-box p {
    font-size: 16px;
    color: var(--logistiq-base);
}

.about-one__content-bottom .contact-box .text-box h4 {
    font-size: 17px;
    line-height: 27px;
    font-weight: 700;
}

.about-one__content-bottom .contact-box .text-box h4 a {
    color: var(--logistiq-black);
}

.about-one__content-bottom .contact-box .text-box h4 a:hover {
    color: var(--logistiq-base);
}

.about-one__img {
    position: relative;
    display: block;
    max-width: 425px;
    width: 100%;
}

.about-one__img .shape1 {
    position: absolute;
    top: -30px;
    right: -26px;
    z-index: -1;
}

.about-one__img .shape2 {
    position: absolute;
    top: 120px;
    right: -115px;
    z-index: -1;
}
.about-one__img .shape2_ar {
    position: absolute;
    top: 120px;
    right: -115px;
    z-index: -1;
}

.about-one__img1 {
    position: relative;
    display: block;
    /* max-width: 360px; */
    width: 100%;
    /* border: 20px dashed #EF0039; */
}

.about-one__img1 img {
    width: 100%;
}

.about-one__img2 {
    position: absolute;
    width: 80%;
    top: 250px;
    left: 100px;
    border: 20px dashed #EF0039;
    z-index: 2;
}

.about-one__img2 .shape3 {
    position: absolute;
    left: -90px;
    bottom: -30px;
    z-index: -1;
}
.about-one__img2 .shape3-ar {
    position: absolute;
    right: 0px;
    bottom: 30px;
    z-index: -1;
}

/* .about-one__img2::before {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: 0px;
    right: 0px;
    background: var(--logistiq-white);
    content: "";
    z-index: -1;
} */

.about-one__round-text-box {
    position: absolute;
    bottom: 80px;
    left: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--logistiq-base);
    z-index: 5;
}

.about-one__round-text-box .inner {
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
}

.about-one__curved-circle {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    color: var(--logistiq-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0px;
    word-spacing: 2px;
    transform: rotate(0deg);
    height: 150px !important;
}

.about-one__round-text-box .overlay-icon-box {
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    background-color: var(--logistiq-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-one__round-text-box .overlay-icon-box a {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 40px;
}



.about-one__img2-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.about-one__img2-inner img {
    width: 100%;
}



/***
=============================================
About Two
=============================================
***/
.about-two {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 138px;
    z-index: 1;
}

.about-two .shape5 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

.about-two__img {
    position: relative;
    display: block;
    max-width: 425px;
    width: 100%;
    margin-left: 110px;
}

.about-two__img .shape2 {
    position: absolute;
    top: 5px;
    right: 15px;
    z-index: -1;
}

.about-two__img .shape3 {
    position: absolute;
    left: -55px;
    bottom: -80px;
    z-index: -1;
}

.about-two__img .shape4 {
    position: absolute;
    left: -55px;
    bottom: -170px;
    z-index: -1;
}

.about-two__img1 {
    position: relative;
    display: block;
    max-width: 300px;
    width: 100%;
    z-index: 2;
}

.about-two__img1::before {
    position: absolute;
    top: 0px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    z-index: -10px;
    background: var(--logistiq-white);
    content: "";
    z-index: -1;
}

.about-two__img1 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-two__img1 .inner img {
    width: 100%;
}

.about-two__counter {
    position: absolute;
    top: 60px;
    right: -40px;
    background: var(--logistiq-base);
    padding: 25px 20px 29px;
    z-index: 5;
}

.about-two__counter .shape1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.about-two__counter::before {
    position: absolute;
    top: -15px;
    right: 0px;
    width: 25px;
    border-bottom: 15px solid #7f2b11;
    border-left: 0px solid transparent;
    border-right: 70px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.about-two__counter .count-text-box {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__counter .count-text-box h2 {
    color: var(--logistiq-white);
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
}

.about-two__counter .count-text-box .plus {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 30px;
    font-weight: 700;
    margin-left: 2px;
}

.about-two__counter p {
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

.about-two__img2 {
    position: absolute;
    bottom: -185px;
    right: 0px;
}

.about-two__content {
    position: relative;
    display: block;
    margin-top: 25px;
}

.about-two__content .sec-title {
    padding-bottom: 31px;
}

.about-two__content-text1 {
    position: relative;
    display: block;
}

.about-two__content-text1 p {
    margin: 0;
}

.about-two__content-text2 {
    position: relative;
    display: block;
    margin-top: 34px;
}

.about-two__content-text2-list {
    position: relative;
    display: block;
}

.about-two__content-text2-list li {
    position: relative;
    display: block;
    margin-bottom: 9px;
}

.about-two__content-text2-list li:last-child {
    margin-bottom: 0px;
}

.about-two__content-text2-list li p {
    color: var(--logistiq-black);
    margin: 0;
}

.about-two__content-text2-list li p span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 15px;
    line-height: 15px;
    margin-right: 4px;
    top: 1px;
}

.about-two__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 49px;
}

.about-two__content-bottom .btn-box {
    position: relative;
    display: block;
}

.about-two__content-bottom .author-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 60px;
}

.about-two__content-bottom .author-info .img-box {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.about-two__content-bottom .author-info .img-box img {
    width: 100%;
}

.about-two__content-bottom .author-info .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.about-two__content-bottom .author-info .text-box h3 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.about-two__content-bottom .author-info .text-box p {
    color: var(--logistiq-black);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/***
=============================================
About Three
=============================================
***/
.about-three {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.about-three__img {
    position: relative;
    display: block;
}

.about-three__img .shape1 {
    position: absolute;
    top: 15px;
    right: -15px;
    z-index: -1;
}

.about-three__img::before {
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    width: 10px;
    background: var(--logistiq-base);
    content: "";
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img-box ul {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__img-box ul li {
    position: relative;
    display: block;
}

.about-three__img-box ul li+li {
    margin-left: 15px;
}

.about-three__img-box ul li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.about-three__img-box ul li .img-box img {
    width: 100%;
}

.about-three__experience-box {
    position: relative;
    display: block;
    padding: 43px 35px 42px;
    margin-bottom: 16px;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    margin-left: -60px;
    margin-right: 95px;
    top: -1px;
    z-index: 1;
}

.about-three__experience-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--logistiq-base);
    content: "";
}

.about-three__experience-box .count-text-box {
    position: relative;
    display: block;
}

.about-three__experience-box .count-number {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__experience-box .count-number h3 {
    font-size: 50px;
    line-height: 1em;
    font-weight: 700;
}

.about-three__experience-box .count-number span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 50px;
    line-height: 1em;
    font-weight: 700;
    top: -2px;
}

.about-three__experience-box h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-top: 5px;
}

.about-three__content {
    position: relative;
    display: block;
    margin-left: 20px;
}

.about-three .sec-title {
    padding-bottom: 28px;
}

.about-three__content-text {
    position: relative;
    display: block;
}

.about-three__content-text p {
    margin: 0px;
}

.about-three__content-list {
    position: relative;
    display: block;
    margin-top: 32px;
}

.about-three__content-list ul {
    position: relative;
    display: block;
}

.about-three__content-list ul li {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    padding: 22px 30px 22px;
    overflow: hidden;
}

.about-three__content-list ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: var(--logistiq-base);
    content: "";
}

.about-three__content-list ul li+li {
    margin-top: 20px;
}

.about-three__content-list ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--logistiq-base);
    border-radius: 5px;
}

.about-three__content-list ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 30px;
    line-height: 30px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.about-three__content-list ul li:hover .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.about-three__content-list ul li .content-box {
    position: relative;
    display: block;
    margin-left: 25px;
    flex: 1;
}

.about-three__content-list ul li .content-box h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.about-three__content-list ul li .content-box p {
    margin: 0;
}

.about-three__content-btn {
    position: relative;
    display: block;
    margin-top: 31px;
    line-height: 0px;
}




/* servicess-css------------ */
.service-one {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.service-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.service-one__single {
    position: relative;
    display: block;
}

.service-one__single-inner {
    position: relative;
    display: block;
    margin-right: 25px;
}

.service-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.service-one__single-img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--logistiq-base-rgb), 0.2);
    opacity: 0;
    z-index: 1;
    content: "";
}

.service-one__single:hover .service-one__single-img::before {
    opacity: 1;
}

.service-one__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.service-one__single:hover .service-one__single-img img {
    transform: scale(1);
}

.service-one__single-content {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    margin-top: -160px;
    margin-left: 30px;
    padding: 33px 40px 32px;
    z-index: 5;
    height: 300px;
}

.service-one__single-content::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: var(--logistiq-black);
    content: "";
}

.service-one__single-content::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: var(--logistiq-base);
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 1;
    content: "";
}

.service-one__single:hover .service-one__single-content::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-one__single-content h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.service-one__single-content h2 a {
    color: var(--logistiq-black);
}

.service-one__single-content h2 a:hover {
    color: var(--logistiq-base);
}

.service-one__single-content p {
    font-size: 16px;
    margin: 0;
}

.service-one__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 13px;
}

.service-one__single-content .btn-box a {
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.service-one__single-content .btn-box a:hover {
    color: var(--logistiq-base);
}

.service-one__single-content .btn-box a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    top: 2px;
    margin-left: 5px;
}

.service-one__single .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--logistiq-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 5;
}

.service-one__single:hover .icon {
    background: var(--logistiq-base);
}

.service-one__single .icon::before {
    position: absolute;
    top: -20px;
    right: 0px;
    width: 25px;
    border-bottom: 20px solid #04171d;
    border-left: 0px solid transparent;
    border-right: 25px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.service-one__single:hover .icon::before {
    border-bottom: 20px solid #7f2b11;
}

.service-one__single .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 45px;
    line-height: 45px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.service-one__single:hover .icon span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

/***
=============================================
Service Two
=============================================
***/
.service-two {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 120px 0px 120px;
    z-index: 1;
}

.service-two__single {
    position: relative;
    display: block;
}

.service-two__single-img {
    position: relative;
    display: block;
    margin-right: 25px;
}

.service-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 210px;
    border-top-right-radius: 210px;
    background: var(--logistiq-black);
    z-index: 1;
}

.service-two__single-img .inner::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 5px;
    background: rgba(var(--logistiq-base-rgb), 0.3);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
    z-index: 1;
}

.service-two__single:hover .service-two__single-img .inner::before {
    background: var(--logistiq-base);
}

.service-two__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.service-two__single:hover .service-two__single-img .inner img {
    opacity: 0.5;
    transform: scale(1);
}

.service-two__single-content {
    position: relative;
    display: block;
    padding-top: 40px;
    margin-top: -245px;
    margin-left: 60px;
    z-index: 5;
}

.service-two__single-content::before {
    position: absolute;
    left: 55px;
    bottom: 0px;
    right: 55px;
    height: 3px;
    background: rgba(var(--logistiq-base-rgb), 0.3);
    content: "";
    z-index: 2;
}

.service-two__single-content::after {
    position: absolute;
    left: 55px;
    bottom: 0px;
    right: 55px;
    height: 3px;
    background: var(--logistiq-base);
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transform: scalex(0.5) translateZ(100px);
    transform: scalex(0.5) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    content: "";
    z-index: 2;
}

.service-two__single:hover .service-two__single-content::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scalex(1) translateZ(1px);
    transform: scalex(1) translateZ(1px);
}

.service-two__single-content .icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--logistiq-base);
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
}

.service-two__single-content .icon span {
    position: relative;
    display: block;
    color: var(--logistiq-white);
    font-size: 35px;
    line-height: 35px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.service-two__single:hover .service-two__single-content .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.service-two__single-content-inner {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 58px 40px 37px;
    z-index: 1;
}

.service-two__single-content-inner h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 9px;
}

.service-two__single-content-inner h2 a {
    color: var(--logistiq-black);
}

.service-two__single-content-inner h2 a:hover {
    color: var(--logistiq-base);
}

.service-two__single-content-inner p {
    margin: 0;
}

.service-two__single-content-inner .btn-box {
    position: relative;
    display: block;
    margin-top: 8px;
}

.service-two__single-content-inner .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.service-two__single-content-inner .btn-box a:hover {
    color: var(--logistiq-base);
}

.service-two__single-content-inner .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    margin-left: 1px;
    top: 2px;
}

/***
=============================================
Service One Service
=============================================
***/
.service-one--service {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding-bottom: 150px;
}

.service-one--service .service-one__single {
    margin-bottom: 30px;
}

/***
=============================================
Service Details
=============================================
***/
.service-details {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__sidebar-single {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 43px 35px 50px;
    z-index: 1;
}

.service-details__sidebar-single+.service-details__sidebar-single {
    margin-top: 50px;
}

.service-details__sidebar-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.service-details__sidebar-single .title-box h2 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.service-details__sidebar-single-service {
    position: relative;
    display: block;
}

.service-details__sidebar-single-service ul {
    position: relative;
    display: block;
}

.service-details__sidebar-single-service ul li {
    position: relative;
    display: block;
    line-height: 0;
}

.service-details__sidebar-single-service ul li+li {
    margin-top: 20px;
}

.service-details__sidebar-single-service ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    background: #dce1e5;
    padding-left: 20px;
    transition: .3s;
    line-height: 50px;
    width: 100%;
    overflow: hidden;
}

.service-details__sidebar-single-service ul li a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
    background: var(--logistiq-base);
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    color: var(--logistiq-white);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    z-index: 2;
}

.service-details__sidebar-single-service ul li a:hover,
.service-details__sidebar-single-service ul li a.active {
    transform: translateY(-3px) scale(1.01);
    background: var(--logistiq-black);
    color: var(--logistiq-white);
}

.service-details__sidebar-single-download {
    position: relative;
    display: block;
}

.service-details__sidebar-single-download ul {
    position: relative;
    display: block;
}

.service-details__sidebar-single-download ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(228, 228, 228, 0.5);
    padding: 14px 0px 14px;
    line-height: 0;
}

.service-details__sidebar-single-download ul li:first-child {
    padding-top: 0px;
}

.service-details__sidebar-single-download ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.service-details__sidebar-single-download ul li .content-box {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__sidebar-single-download ul li .content-box .icon {
    position: relative;
    display: block;
}

.service-details__sidebar-single-download ul li .content-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 45px;
    line-height: 45px;
}

.service-details__sidebar-single-download ul li .content-box .text-box {
    position: relative;
    display: block;
    margin-left: 17px;
    flex: 1;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a {
    color: var(--logistiq-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a:hover {
    color: var(--logistiq-base);
}

.service-details__sidebar-single-download ul li .content-box .text-box p {
    color: var(--logistiq-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box p a {
    color: var(--logistiq-black);
}

.service-details__sidebar-single-download ul li .content-box .text-box p a:hover {
    color: var(--logistiq-base);
}

.service-details__sidebar-single-download ul li .btn-box {
    position: relative;
    display: block;
}

.service-details__sidebar-single-download ul li .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--logistiq-base);
    border-radius: 2px;
    overflow: hidden;
}

.service-details__sidebar-single-download ul li .btn-box a:hover {
    background: var(--logistiq-black);
}

.service-details__sidebar-single-download ul li .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 20px;
    line-height: 20px;
}

.service-details__sidebar-contact {
    position: relative;
    display: block;
    margin-top: 50px;
    padding-top: 18px;
    padding-bottom: 47px;
    background: var(--logistiq-gray-bg);
    z-index: 1;
}

.service-details__sidebar-contact::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--logistiq-base);
    height: 305px;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    content: "";
    z-index: -2;
}

.service-details__sidebar-contact::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--logistiq-black);
    height: 295px;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    content: "";
    z-index: -1;
}

.service-details__sidebar-contact-img {
    position: relative;
    display: block;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    z-index: 1;
}

.service-details__sidebar-contact-img .inner {
    position: relative;
    display: block;
}

.service-details__sidebar-contact-img .inner img {
    width: auto;
}

.service-details__sidebar-contact-content {
    position: relative;
    display: block;
    margin-top: -65px;
    z-index: 2;
}

.service-details__sidebar-contact-content .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--logistiq-black);
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-details__sidebar-contact-content .icon span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 20px;
    line-height: 20px;
}

.service-details__sidebar-contact-content h2 {
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 13px;
}

.service-details__sidebar-contact-content h2 a {
    color: var(--logistiq-black);
}

.service-details__sidebar-contact-content h2 a:hover {
    color: var(--logistiq-base);
}

.service-details__sidebar-contact-content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.service-details__content {
    position: relative;
    display: block;
    margin-left: 30px;
}

.service-details__content-img1 {
    position: relative;
    display: block;
}

.service-details__content-img1 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-details__content-img1 .inner img {
    width: 100%;
}

.service-details__content-text1 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.service-details__content-text1 h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 28px;
}

.service-details__content-text1 p {
    margin: 0;
}

.service-details__content-text2 {
    position: relative;
    display: block;
    margin-top: 32px;
}

.service-details__content-text2 h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 31px;
}

.service-details__content-text2 p {
    margin: 0;
}

.service-details__content-img2 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.service-details__content-img2 .row {
    --bs-gutter-x: 60px;
}

.service-details__content-img2 .single-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-details__content-img2 .single-img img {
    width: 100%;
}

.service-details__content-img2 p {
    margin: 0;
    margin-top: 12px;
}

.service-details__content-img3 {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 42px;
}

.service-details__content-img3 img {
    width: 100%;
}

.service-details__faq {
    position: relative;
    display: block;
    margin-top: 50px;
}

.service-details__faq .faq-one-accrodion {
    border-top: none;
}

.service-details__faq .faq-one-accrodion .accrodion {
    border-bottom: none;
    margin-bottom: 30px;
}

.service-details__faq .faq-one-accrodion .accrodion.mb0 {
    margin-bottom: 0px;
}

.service-details__faq .faq-one-accrodion .accrodion-title {
    padding: 14px 25px 13px;
    background: var(--logistiq-gray-bg);
}

.service-details__faq .faq-one-accrodion .accrodion-content {
    padding: 27px 40px 27px;
    margin-top: 0px;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
    background: var(--logistiq-white);
}

/***
=============================================
Testimonial One
=============================================
***/
.testimonial-one {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 120px 0px 120px;
    z-index: 1;
}

.testimonial-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.40;
    z-index: -1;
}

.testimonial-one__content {
    position: relative;
    display: block;
}

.testimonial-one__content .big-title {
    position: absolute;
    left: 0;
    bottom: -140px;
    right: 0;
    text-align: center;
    z-index: 1;
}

.testimonial-one__content .big-title h2 {
    color: transparent;
    -webkit-text-stroke: 1px #E4E4E4;
    font-size: 98px;
    line-height: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-one__content .sec-title {
    padding-bottom: 39px;
}

.testimonial-one__carousel {}

.testimonial-one__single {
    position: relative;
    display: block;
    padding-top: 10px;
}

.testimonial-one__single .icon {
    position: absolute;
    top: 0;
    right: 45px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logistiq-base);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 5;
}

.testimonial-one__single .icon::before {
    position: absolute;
    top: 0px;
    left: -15px;
    width: 15px;
    border-bottom: 10px solid #9d0c13;
    border-left: 15px solid transparent;
    border-right: 0px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.testimonial-one__single .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 22px;
}

.testimonial-one__single-inner {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    border-left: 5px solid var(--logistiq-base);
    padding: 50px 45px 42px;
    webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.02);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    z-index: 1;
}

.testimonial-one__single-inner .shape1 {
    position: absolute;
    bottom: -10px;
    right: -7px;
    z-index: -1;
}

.testimonial-one__single-inner .author-box {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-one__single-inner .author-box .img-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-one__single-inner .author-box .img-box img {
    width: 100%;
}

.testimonial-one__single-inner .author-box .author-info {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.testimonial-one__single-inner .author-box .author-info h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.testimonial-one__single-inner .author-box .author-info .bottom-text {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-one__single-inner .author-box .author-info .bottom-text p {
    color: var(--logistiq-black);
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-one__single-inner .author-box .author-info .bottom-text .rating-box {
    position: relative;
    display: block;
    margin-left: 6px;
}

.testimonial-one__single-inner .text-box {
    position: relative;
    display: block;
    margin-top: 17px;
}

.testimonial-one__single-inner .text-box p {
    margin: 0;
}

.testimonial-one__img {
    position: relative;
    display: block;
    max-width: 540px;
    width: 100%;
    margin-left: 35px;
}

.testimonial-one__img-author {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 60px;
    z-index: 2;
}

.testimonial-one__img-author ul {
    position: relative;
    display: block;
}

.testimonial-one__img-author ul li {
    position: relative;
    display: block;
    float: left;
}

.testimonial-one__img-author ul li+li {
    margin-left: -20px;
}

.testimonial-one__img-author ul li .img-box {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--logistiq-base);
}

.testimonial-one__img-author ul li .img-box img {
    width: 100%;
}

.testimonial-one__img-author .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
    flex: 1;
}

.testimonial-one__img-author .text-box h2 {
    color: var(--logistiq-black);
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
}

.testimonial-one__img-author .text-box p {
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.testimonial-one__img1 {
    position: relative;
    display: block;
    overflow: hidden;
}

.testimonial-one__img1 img {
    width: 100%;
}

/***
=============================================
Testimonial Two
=============================================
***/
.testimonial-two {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.testimonial-two__content {
    position: relative;
    display: block;
    max-width: 360px;
    width: 100%;
    z-index: 5;
}

.testimonial-two__content .sec-title {
    padding-bottom: 31px;
}

.testimonial-two__content-text {
    position: relative;
    display: block;
}

.testimonial-two__content-btn {
    position: relative;
    display: block;
    margin-top: 42px;
    line-height: 0px;
}


.testimonial-two__right {
    position: relative;
    display: block;
}

.testimonial-two__single {
    position: relative;
    display: block;
    padding: 0px 35px 0px;
    z-index: 1;
}

.testimonial-two__single::before {
    position: absolute;
    top: 20px;
    left: 0;
    bottom: 15px;
    right: 0;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    content: "";
    z-index: -1;
}

.testimonial-two__single-inner {
    position: relative;
    display: block;
}

.testimonial-two__single-top {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 28px;
}

.testimonial-two__single-top .img-box {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--logistiq-base);
}

.testimonial-two__single-top .img-box img {
    width: 100%;
}

.testimonial-two__single-top .title-box {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-bottom: -8px;
    flex: 1;
}

.testimonial-two__single-top .title-box h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.testimonial-two__single-top .title-box span {
    color: var(--logistiq-base);
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.testimonial-two__single-text {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.testimonial-two__single-text p {
    margin: 0;
}

.testimonial-two__single .rating-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 135px;
    width: 100%;
    background: var(--logistiq-base);
    padding: 10px 0px 10px;
}

.testimonial-two__single .rating-box::before {
    position: absolute;
    top: 20px;
    right: -15px;
    width: 15px;
    border-top: 15px solid #a94020;
    border-left: 0px solid transparent;
    border-right: 15px solid transparent;
    content: "";
}

.testimonial-two__single .rating-box i {
    color: var(--logistiq-white);
}


.testimonial-two__single .rating-box i+i {
    margin-left: 5px;
}

.testimonial-two__carousel.owl-dot-style1.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    position: absolute;
    top: 50%;
    right: -110px;
    transform: translateY(-50%);
}

.testimonial-two__carousel.owl-dot-style1.owl-theme .owl-dots .owl-dot {
    display: block;
}

.testimonial-two__carousel.owl-dot-style1.owl-theme .owl-dots .owl-dot span {
    margin: 12.5px 0px;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transform: perspective(400px) rotateX(0deg) scaleY(1.2);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
}

/***
=============================================
Testimonial Two Testimonial
=============================================
***/
.testimonial-two--testimonial {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding-bottom: 90px;
    z-index: 1;
}

.testimonial-two--testimonial .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: -1;
}

.testimonial-two--testimonial .testimonial-two__single {
    margin-bottom: 30px;
}

/***
=============================================
Testimonial Three
=============================================
***/
.testimonial-three {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.testimonial-three .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.testimonial-three__inner {
    position: relative;
    display: block;
    padding-left: 300px;
    padding-right: 300px;
}

.testimonial-three__img1 {
    position: absolute;
    top: 0;
    left: 250px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__img1 img {
    width: 100%;
}

.testimonial-three__img2 {
    position: absolute;
    top: 230px;
    left: 85px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__img2 img {
    width: 100%;
}

.testimonial-three__img3 {
    position: absolute;
    top: 55px;
    left: 45px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__img3 img {
    width: 100%;
}

.testimonial-three__img4 {
    position: absolute;
    top: 0;
    right: 80px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__img4 img {
    width: 100%;
}

.testimonial-three__img5 {
    position: absolute;
    top: 230px;
    right: 85px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__img5 img {
    width: 100%;
}

.testimonial-three__img6 {
    position: absolute;
    top: 80px;
    right: 240px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-three__img6 img {
    width: 100%;
}

.testimonial-three__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    width: 580px;
    height: 580px;
    background: var(--logistiq-gray-bg);
    border-radius: 50%;
    padding: 0px 55px 0px;
    margin: 0 auto;
    border: 0px solid var(--logistiq-black);
    z-index: 10;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.testimonial-three__single-img {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 40px;
    overflow: hidden;
}

.testimonial-three__single-title {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.testimonial-three__single-title h2 {
    font-size: 20px;
    line-height: 34px;
    font-weight: 700;
    text-transform: uppercase;
}


.testimonial-three__single-author {
    position: relative;
    display: block;
}

.testimonial-three__single-author h2 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-three__single-author p {
    font-weight: 700;
    margin: 0;
}

.testimonial-three__single-rating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--logistiq-black-rgb), 0.3);
    border-radius: 15px;
    padding: 1px 25px 1px;
    margin-top: 22px;
}

.testimonial-three__single-rating .icon {
    position: relative;
    display: block;
}

.testimonial-three__single-rating .icon span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 15px;
    line-height: 15px;
}

.testimonial-three__single-rating h4 {
    color: var(--logistiq-black);
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 4px;
}

.testimonial-three__bottom {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 0px;
    bottom: 0;
    right: 0;
}

.testimonial-three__bottom-left {
    position: relative;
    display: block;
    padding-left: 30px;
}

.testimonial-three__bottom-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 6px;
    width: 1px;
    background-color: #dddbdb;
}

.testimonial-three__bottom-left .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #dddbdb;
}

.testimonial-three__bottom-left .icon img {
    width: auto;
}

.testimonial-three__bottom-left .title {
    position: relative;
    display: block;
    padding-top: 12px;
}

.testimonial-three__bottom-left .title h4 {
    color: var(--logistiq-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-three__bottom-left .rating-box1 {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 3px;
}

.testimonial-three__bottom-left .rating-box1 h2 {
    font-size: 55px;
    line-height: 1.0em;
}

.testimonial-three__bottom-left .rating-box1 .rating-star {
    position: relative;
    display: block;
    padding-left: 15px;
}

.testimonial-three__bottom-left .rating-box1 .rating-star h4 {
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}

.testimonial-three__bottom-left .rating-box1 .rating-star .rating-box {
    position: relative;
    display: block;
}

.testimonial-three__bottom-right {
    position: relative;
    display: block;
}

.testimonial-three__bottom-right .btn-box {
    position: relative;
    display: block;
    height: 140px;
    padding-top: 85px;
}

.testimonial-three__bottom-right .btn-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 1px rgba(var(--logistiq-gray-rgb), 0.3);
    font-size: 150px;
    line-height: 1.0em;
}

.testimonial-three__bottom-right .btn-box .icon span {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}

.testimonial-three__bottom-right .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--logistiq-font);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonial-three__bottom-right .btn-box a:hover {
    color: var(--logistiq-base);
}

.testimonial-three__bottom-right .btn-box a i {
    margin-right: 10px;
    font-size: 20px;
    line-height: 0;
    font-weight: 700;
}

.testimonial-three__carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -50px;
    right: -50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    z-index: 10;
    height: 0;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev,
.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: var(--logistiq-black);
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
    background: var(--logistiq-gray-bg);
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev::before,
.testimonial-three__carousel.owl-theme .owl-nav .owl-next::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--logistiq-base);
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.7);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    opacity: 0;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev:hover::before,
.testimonial-three__carousel.owl-theme .owl-nav .owl-next:hover:before {
    transform: scaleX(1.0);
    opacity: 1;
}

.testimonial-three__carousel.owl-theme .owl-prev span:before,
.testimonial-three__carousel.owl-theme .owl-next span:before {
    position: relative;
    display: inline-block;
    line-height: 60px;
    font-weight: 700;
    transition: all 100ms ease;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev:hover,
.testimonial-three__carousel.owl-theme .owl-nav .owl-next:hover {
    color: var(--logistiq-white);
}

/***
=============================================
Team One
=============================================
***/
.team-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.team-one__single {
    position: relative;
    display: block;
}

.team-one__single-img {
    position: relative;
    display: block;
    max-width: 355px;
    width: 100%;
    z-index: 3;
}

.team-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--logistiq-black);
    border-radius: 50%;
    border-bottom-left-radius: 0px;
}

.team-one__single-img .inner img {
    width: 100%;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__single-img .inner img {
    opacity: 0.5;
    transform: scaleX(1.05);
}

.team-one__single-content {
    position: relative;
    display: block;
    padding: 304px 40px 32px;
    margin-top: -275px;
    z-index: 1;
}

.team-one__single-content::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--logistiq-gray-bg);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    border-radius: 10px;
    content: "";
    z-index: -1;
}

.team-one__single-content .social-links {
    position: absolute;
    top: 60px;
    right: 25px;
    z-index: 5;
}

.team-one__single-content .social-links>li {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.team-one__single-content .social-links>li:last-child {
    margin-bottom: 0px;
}

.team-one__single-content .social-links>li>a {
    position: relative;
    display: block;
    color: var(--logistiq-black);
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-content .social-links>li>a:hover {
    color: var(--logistiq-base);
}

.team-one__single-content .social-links>li>a>span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 15px;
    line-height: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-content .social-links>li>a:hover>span {
    color: var(--logistiq-base);
}

.team-one__single-content span {
    color: var(--logistiq-base);
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.team-one__single-content h2 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.team-one__single-content h2 a {
    color: var(--logistiq-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single-content h2 a:hover {
    color: var(--logistiq-base);
}

.team-one__single-content p {
    margin: 0px;
}

.team-one__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 13px;
}

.team-one__single-content .btn-box a {
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-one__single-content .btn-box a:hover {
    color: var(--logistiq-base);
}

.team-one__single-content .btn-box a i {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    top: 2px;
    margin-left: 2px;
}

.owl-dot-style1.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 58px;
}

.owl-dot-style1.owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0px 12.5px;
    background: var(--logistiq-black);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-dot-style1.owl-theme .owl-dots .owl-dot.active span,
.owl-dot-style1.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--logistiq-base)
}

.owl-dot-style1.owl-theme .owl-dots .owl-dot span::before {
    position: absolute;
    top: -8px;
    left: -8px;
    bottom: -8px;
    right: -8px;
    border: 1px solid var(--logistiq-base);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.owl-dot-style1.owl-theme .owl-dots .owl-dot.active span::before,
.owl-dot-style1.owl-theme .owl-dots .owl-dot:hover span::before {
    transform: scaleX(1.0);
}



/***
=============================================
Team Two
=============================================
***/
.team-one--two {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    z-index: 1;
}

.team-one--two__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.05;
    text-align: center;
    z-index: -1;
}

.team-one--two .team-one__single-content::before {
    border: 1px solid #e4e4e4;
}

/***
=============================================
Team Two Team
=============================================
***/
.team-one--two--team {
    position: relative;
    display: block;
    padding-bottom: 90px;
    z-index: 1;
}

.team-one--two--team .shape1 {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    opacity: 0.2;
    text-align: center;
    z-index: -1;
}

.team-one--two--team .team-one__single {
    margin-bottom: 30px;
}

.team-one--two--team .team-one__single-content::before {
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
}

/***
=============================================
Team Details
=============================================
***/
.team-details {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 0px;
    z-index: 1;
}

.team-details__top {
    position: relative;
    display: block;
}

.team-details__top-img {
    position: relative;
    display: block;
    max-width: 610px;
    width: 100%;
}

.team-details__top-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.team-details__top-content {
    position: relative;
    display: block;
}

.team-details__top-content .title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
    margin-top: -7px;
}

.team-details__top-content .title-box .tagline {
    position: relative;
    display: flex;
    align-items: center;
}

.team-details__top-content .title-box .tagline .text {
    position: relative;
    display: block;
}

.team-details__top-content .title-box .tagline .text p {
    color: var(--logistiq-base);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.team-details__top-content .title-box .tagline .line {
    position: relative;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--logistiq-base);
    margin-left: 20px;
}

.team-details__top-content .title-box h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 2px;
}

.team-details__top-content-text {
    position: relative;
    display: block;
}

.team-details__top-content-text p {
    margin: 0;
}

.team-details__top-content-contact {
    position: relative;
    display: block;
    margin-top: 25px;
}

.team-details__top-content-contact ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.team-details__top-content-contact ul li {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.team-details__top-content-contact ul li:last-child {
    margin-bottom: 0px;
}

.team-details__top-content-contact ul li h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-details__top-content-contact ul li p {
    margin: 0;
}

.team-details__top-content-contact ul li p a {
    color: var(--logistiq-gray);
}

.team-details__top-content-contact ul li p a:hover {
    color: var(--logistiq-base);
}

.team-details__top-social-links {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 27px;
}

.team-details__top-social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(var(--logistiq-gray-rgb), 0.1);
    color: var(--logistiq-black);
}

.team-details__top-social-links a+a {
    margin-left: 10px;
}

.team-details__top-social-links a:hover {
    color: var(--logistiq-white);
    background: var(--logistiq-base);
}

.team-details__top-social-links a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.team-details__bottom {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 120px 0px 120px;
    margin-top: 120px;
    z-index: 1;
}

.team-details__bottom-pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.team-details__bottom-progress {
    position: relative;
    display: block;
    max-width: 595px;
    width: 100%;
}

.team-details__bottom-progress .skill-one__progress li+li {
    margin-top: 33px;
}

.team-details__bottom-progress h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 31px;
}

.team-details__bottom-progress p {
    margin: 0;
}

.team-details__bottom-contact {
    position: relative;
    display: block;
    max-width: 530px;
    width: 100%;
    margin-left: 70px;
}

.team-details__bottom-contact .title-box {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.team-details__bottom-contact .title-box h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 31px;
}

.team-details__bottom-contact .title-box p {
    margin: 0;
}

.team-details__bottom-contact .why-choose-one__form .input-box input[type="text"],
.team-details__bottom-contact .why-choose-one__form .input-box input[type="email"] {
    background-color: transparent;
}

.team-details__bottom-contact .why-choose-one__form .input-box .nice-select {
    background-color: transparent;
}

.team-details__bottom-contact .why-choose-one__form .input-box textarea {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--logistiq-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--logistiq-gray);
    border-radius: 2px;
    font-family: var(--logistiq-font);
    width: 100%;
    height: 120px;
    padding-top: 11px;
    outline: none;
    resize: none;
}

.team-details__bottom-contact .why-choose-one__form .input-box .icon.style2 {
    top: 11%;
    transform: translateY(0%);
}

/***
=============================================
Blog One
=============================================
***/
.blog-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 0px 0px 90px;
    z-index: 1;
}

.blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-one__single-img::before {
    background: rgba(255, 255, 255, 0.4);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.blog-one__single:hover .blog-one__single-img::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.blog-one__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img img {
    transform: scale(1);
}

.blog-one__single-content {
    position: relative;
    display: block;
    padding-top: 20px;
    margin-top: -77px;
    margin-right: 15px;
    z-index: 1;
}

.blog-one__single-content .date-box {
    position: absolute;
    top: 0;
    right: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--logistiq-base);
    z-index: 5;
}

.blog-one__single-content .date-box::before {
    position: absolute;
    top: 0px;
    left: -15px;
    width: 15px;
    border-bottom: 20px solid #9c0d11;
    border-left: 15px solid transparent;
    border-right: 0px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.blog-one__single-content .date-box h2 {
    color: var(--logistiq-white);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.blog-one__single-content .date-box p {
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-one__single-content-inner {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    padding: 16px 35px 40px;
    z-index: 2;
}

.blog-one__single-content-inner .meta-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 33px;
}

.blog-one__single-content-inner .meta-box::before {
    position: absolute;
    left: -35px;
    bottom: 0;
    right: -35px;
    height: 2px;
    background: #f6f6f8;
    content: "";
}

.blog-one__single-content-inner .meta-box li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.blog-one__single-content-inner .meta-box li:last-child {
    margin-right: 0px;
}

.blog-one__single-content-inner .meta-box li .icon {
    position: relative;
    display: block;
}

.blog-one__single-content-inner .meta-box li .icon span {
    position: relative;
    display: inline-block;
}

.blog-one__single-content-inner .meta-box li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 15px;
    line-height: 15px;
}

.blog-one__single-content-inner .meta-box li .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
}

.blog-one__single-content-inner .meta-box li .text-box p {
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
}

.blog-one__single-content-inner .meta-box li .text-box p a {
    color: var(--logistiq-gray);
}

.blog-one__single-content-inner .meta-box li .text-box p a:hover {
    color: var(--logistiq-base);
}

.blog-one__single-content-inner h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 19px;
}

.blog-one__single-content-inner h2 a {
    color: var(--logistiq-black);
}

.blog-one__single-content-inner h2 a:hover {
    color: var(--logistiq-base);
}

.blog-one__single-content-inner p {
    margin: 0;
}

.blog-one__single-content-inner .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 27px;
}

/***
=============================================
Blog Two
=============================================
***/
.blog-one--two {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
    z-index: 1;
}


/***
=============================================
Blog Three
=============================================
***/
.blog-three {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 90px;
    z-index: 1;
}

.blog-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-three__single-img {
    position: relative;
    display: block;
}

.blog-three__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-three__single-img .inner img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.blog-three__single:hover .blog-three__single-img .inner img:first-child {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.blog-three__single:hover .blog-three__single-img .inner img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.blog-three__single-img .inner img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-three__single-content {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    border: 1px solid rgba(var(--logistiq-gray-rgb), 0.2);
    border-top: none;
    padding: 0px 30px 40px;
}

.blog-three__single-content .meta-box {
    position: relative;
    display: flex;
    align-items: center;
    top: -20px;
    z-index: 2;
}

.blog-three__single-content .meta-box li {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 14px;
    font-weight: 500;
    background: var(--logistiq-base);
    padding: 6px 15px 5px;
}

.blog-three__single-content .meta-box li.bg2 {
    background: var(--logistiq-black);
}

.blog-three__single-content .meta-box li+li {
    margin-left: 10px;
}

.blog-three__single-content .meta-box li i:before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 15px;
    line-height: 15px;
    top: 1px;
    margin-right: 2px;
}

.blog-three__single-content h2 {
    font-size: 23px;
    line-height: 32px;
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 19px;
}

.blog-three__single-content h2 a {
    color: var(--logistiq-black);
}

.blog-three__single-content h2 a:hover {
    color: var(--logistiq-base);
}

.blog-three__single-content p {
    margin: 0;
}

.blog-three__single-content .btn-box {
    position: relative;
    display: block;
    line-height: 0px;
    margin-top: 22px;
}


/***
=============================================
Blog Page
=============================================
***/
.blog-page {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

/***
=============================================
Blog Page Two
=============================================
***/
.blog-page-two {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
    position: relative;
    display: block;
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    position: relative;
    margin: 0;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-left: 40px;
}

.sidebar__title::before {
    position: absolute;
    left: 0;
    bottom: 10px;
    height: 2px;
    width: 30px;
    background: var(--logistiq-base);
    content: "";
}

.sidebar__search {
    position: relative;
    display: block;
    background-color: var(--logistiq-gray-bg);
    padding: 50px 30px 50px;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--logistiq-white);
    color: var(--logistiq-gray);
    font-size: 14px;
    font-weight: 600;
    padding-left: 20px;
    height: 60px;
    width: 100%;
    padding-right: 60px;
    border-radius: 3px;
    border: 1px solid #dcdfe2;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--logistiq-gray);
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: var(--logistiq-gray);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--logistiq-gray);
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--logistiq-gray);
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--logistiq-gray);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--logistiq-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--logistiq-gray);
}

.sidebar__search-form button[type="submit"] {
    background-color: var(--logistiq-base);
    color: var(--logistiq-white);
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 50px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
    background-color: var(--logistiq-black);
    color: var(--logistiq-white);
}

.sidebar__category {
    position: relative;
    display: block;
    background-color: var(--logistiq-gray-bg);
    padding: 42px 30px 50px;
}

.sidebar__category-list {
    position: relative;
    display: block;
    margin: 0;
}

.sidebar__category-list li+li {
    position: relative;
    margin-top: 15px;
}

.sidebar__category-list li a {
    position: relative;
    display: block;
    color: var(--logistiq-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    padding: 15px 20px 16px;
    background-color: var(--logistiq-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--logistiq-font);
    z-index: 1;
}

.sidebar__category-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--logistiq-base);
    z-index: -1;
    transform: scaleY(0.0);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
    transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
    color: var(--logistiq-white);
}

.sidebar__category-list li.active a {
    background-color: var(--logistiq-base);
    color: var(--logistiq-white);
}

.sidebar__category-list li a span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    right: 0;
    color: var(--logistiq-black);
    font-size: 15px;
    font-weight: 600;
    background-color: #dcdde0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--logistiq-white);
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 42px 30px 42px;
    background-color: var(--logistiq-gray-bg);
}

.sidebar__post-box {
    position: relative;
    display: block;
}

.sidebar__post-single {
    position: relative;
    display: block;
}

.sidebar__post-single+.sidebar__post-single {
    margin-top: 27px;
}

.sidebar-post__img {
    position: relative;
    display: block;
    background: var(--logistiq-black);
    overflow: hidden;
}

.sidebar-post__img::before {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0;
    height: 100%;
    background-color: rgba(var(--logistiq-base-rgb), .80);
    border-radius: 0%;
    -webkit-transform: translateX(90%, 90%);
    transform: translateX(90%, 90%);
    opacity: 0.70;
    z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
    opacity: 1.0;
}

.sidebar-post__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
    position: relative;
    margin-top: 18px;
}

.sidebar__post-content-box h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.sidebar__post-content-box h3 a {
    color: var(--logistiq-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
    color: var(--logistiq-base);
}

.sidebar__tags {
    position: relative;
    display: block;
    background-color: var(--logistiq-gray-bg);
    padding: 41px 30px 40px;
    overflow: hidden;
}

.sidebar__tags-list {
    position: relative;
    display: block;
    margin-left: -5px;
    margin-right: -5px;
}

.sidebar__tags-list li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 5px 0px;
    margin-bottom: 10px;
}

.sidebar__tags-list li a {
    position: relative;
    display: block;
    color: var(--logistiq-gray);
    font-size: 15px;
    font-weight: 400;
    background: var(--logistiq-white);
    padding: 6px 24px;
    border-radius: 3px;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
    color: var(--logistiq-white);
    background: var(--logistiq-base);
}

/***
=====================================================
Blog Standard Page
=====================================================
***/
.blog-standard-page {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.blog-standard-page .blog-one__single-content {
    margin-top: -20px;
    margin-right: 0px;
}

.blog-standard-page .blog-one__single-content .date-box {
    right: 50px;
}

.blog-standard-page .blog-one__single-content-inner h2 {
    font-size: 36px;
    line-height: 45px;
}

.blog-standard-page .blog-one__single-content-inner {
    padding: 16px 50px 40px;
}

.blog-standard-page .blog-one__single-content-inner .meta-box::before {
    left: -50px;
    right: -50px;
}

/***
=====================================================
Blog Details
=====================================================
***/
.blog-details {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.blog-details__content {
    position: relative;
    display: block;
    margin-right: 35px;
}

.blog-details__content-img1 {
    position: relative;
    display: block;
    max-width: 835px;
    width: 100%;
}

.blog-details__content-img1 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-details__content-img1 .inner img {
    width: 100%;
}

.blog-details__content-meta-box {
    position: relative;
    display: block;
    margin-top: 40px;
}

.blog-details__content-meta-box ul {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0px;
}

.blog-details__content-meta-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 31px;
    margin-right: 25px;
}

.blog-details__content-meta-box ul li::before {
    position: absolute;
    top: 11px;
    right: 0px;
    width: 8px;
    height: 8px;
    background: #ababb3;
    content: "";
}

.blog-details__content-meta-box ul li:last-child:before {
    display: none;
}

.blog-details__content-meta-box ul li .img-box {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.blog-details__content-meta-box ul li .img-box img {
    width: 100%;
}

.blog-details__content-meta-box ul li .text-box {
    position: relative;
    display: block;
    margin-left: 12px;
    flex: 1;
}

.blog-details__content-meta-box ul li .text-box p {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.blog-details__content-meta-box ul li .icon {
    position: relative;
    display: block;
}

.blog-details__content-meta-box ul li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 20px;
    line-height: 20px;
}

.blog-details__content-text1 {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-details__content-text1 h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.blog-details__content-text1 p {
    margin: 0;
}

.blog-details__content-img2 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.blog-details__content-img2 .row {
    --bs-gutter-x: 60px;
}

.blog-details__content-img2 .single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-details__content-img2 .single-img img {
    width: 100%;
}

.blog-details__content-text2 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.blog-details__content-text2 h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.blog-details__content-text2 p {
    margin: 0;
}

.blog-details__content-text3 {
    position: relative;
    display: block;
    margin-top: 34px;
}

.blog-details__content-text3 .row {
    display: flex;
    align-items: center;
}

.blog-details__content-text3-text {
    position: relative;
    display: block;
}

.blog-details__content-text3-text ul {
    position: relative;
    display: block;
    line-height: 0px;
}

.blog-details__content-text3-text ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.blog-details__content-text3-text ul li:last-child {
    margin-bottom: 0px;
}

.blog-details__content-text3-text ul li p {
    font-size: 16px;
    line-height: 24px;
}

.blog-details__content-text3-text ul li p span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 20px;
    line-height: 20px;
    top: 3px;
    margin-right: 9px;
}

.blog-details__content-text3-img {
    position: relative;
    display: block;
    max-width: 385px;
    width: 100%;
}

.blog-details__content-text3-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-details__video-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.blog-details__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: var(--logistiq-white);
    background-color: var(--logistiq-base);
    border: 0px solid var(--logistiq-black);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 1;
}

.blog-details__video-icon:hover {
    background-color: var(--logistiq-white);
    color: var(--logistiq-black);
}

.blog-details__video-link .ripple,
.blog-details__video-icon .ripple:before,
.blog-details__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.blog-details__video-icon .ripple:before {
    position: absolute;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
}

.blog-details__video-icon .ripple:after {
    position: absolute;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
}

.blog-details__content-text3-img .inner img {
    width: 100%;
}

.blog-details__content-text4 {
    position: relative;
    display: block;
    margin-top: 35px;
}

.blog-details__content-text4 p {
    margin: 0px;
}

.blog-details__content-text5 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 46px;
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 49px;
}

.blog-details__content-text5-tag {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__content-text5-tag .title-box {
    position: relative;
    display: block;
    margin-right: 20px;
}

.blog-details__content-text5-tag .title-box h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.blog-details__content-text5-tag ul {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__content-text5-tag ul li {
    position: relative;
    display: block;
}

.blog-details__content-text5-tag ul li+li {
    margin-left: 20px;
}

.blog-details__content-text5-tag ul li a {
    color: var(--logistiq-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    text-transform: capitalize;
    border: 1px solid var(--logistiq-gray);
    padding: 8px 30px 8px;
}

.blog-details__content-text5-tag ul li a:hover {
    color: var(--logistiq-white);
    border: 1px solid var(--logistiq-base);
    background: var(--logistiq-base);
}

.blog-details__content-text5-share {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0px;
}

.blog-details__content-text5-share .title-box {
    position: relative;
    display: block;
}

.blog-details__content-text5-share .title-box p {
    font-size: 18px;
    line-height: 32px;
}

.blog-details__content-text5-share ul {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.blog-details__content-text5-share ul li {
    position: relative;
    display: block;
}

.blog-details__content-text5-share ul li+li {
    margin-left: 15px;
}

.blog-details__content-text5-share ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logistiq-black);
    width: 30px;
    height: 30px;
    border: 1px solid rgba(var(--logistiq-gray-rgb), .1);
}

.blog-details__content-text5-share ul li a:hover {
    background: var(--logistiq-base);
    color: var(--logistiq-white);
}

.blog-details__content-text5-share ul li a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.blog-details__content-text6 {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--logistiq-gray-bg);
    padding: 33px 40px 40px;
    margin-top: 60px;
}

.blog-details__content-text6 .img-box {
    position: relative;
    display: block;
    width: 115px;
    height: 115px;
    border-radius: 50%;
}

.blog-details__content-text6 .img-box img {
    width: 100%;
}

.blog-details__content-text6 .content-box {
    position: relative;
    display: block;
    margin-left: 40px;
    flex: 1;
}

.blog-details__content-text6 .content-box h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 9px;
}

.blog-details__content-text6 .content-box p {
    margin: 0;
}

.blog-details__content-text6 .content-box .social-links {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 17px;
}

.blog-details__content-text6 .content-box .social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logistiq-black);
    width: 30px;
    height: 30px;
    border: 1px solid rgba(var(--logistiq-gray-rgb), .1);
}

.blog-details__content-text6 .content-box .social-links a:hover {
    background: var(--logistiq-base);
    color: var(--logistiq-white);
    border-color: var(--logistiq-base);
}

.blog-details__content-text6 .content-box .social-links a+a {
    margin-left: 15px;
}

.blog-details__content-text6 .content-box .social-links a span::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.comment-one {
    position: relative;
    display: block;
    border: 1px solid var(--logistiq-gray-bg);
    margin-top: 50px;
    padding: 30px 40px 40px;
}

.comment-one .title-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.comment-one .title-box h2 {
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
    text-transform: capitalize;
}


.comment-one__single {
    position: relative;
    display: block;
}

.comment-one__single.style2 {
    margin-top: 33px;
    margin-left: 130px;

}

.comment-one__single-inner {
    position: relative;
    display: block;
    padding-left: 130px;
}

.comment-one__img {
    position: absolute;
    top: 7px;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.comment-one__img img {
    width: 100%;
}

.comment-one__content {
    position: relative;
    display: block;
}

.comment-one__content-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.comment-one__content-title h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.comment-one__content-title p {
    margin: 0;
}

.comment-one__content p {
    margin: 0;
}

.comment-one__content .btn-box {
    position: relative;
    display: block;
    margin-top: 22px;
}

.comment-one__content .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    background: var(--logistiq-base);
    padding: 3px 35px 2px;
}

.comment-one__content .btn-box a:hover {
    background: var(--logistiq-black);
}

.comment-form {
    position: relative;
    display: block;
    margin-top: 50px;
}

.comment-form .title-box {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.comment-form .title-box h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.comment-form .title-box p {
    margin: 0;
}

.comment-form .why-choose-one__form .input-box textarea {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--logistiq-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--logistiq-gray);
    border-radius: 2px;
    font-family: var(--logistiq-font);
    width: 100%;
    height: 120px;
    padding-top: 11px;
    outline: none;
    resize: none;
}

.comment-form .why-choose-one__form .input-box .icon.style2 {
    top: 11%;
    transform: translateY(0%);
}

.comment-form .why-choose-one__form .input-box .icon span::before {
    color: var(--logistiq-base);
}

.comment-form__checkbox {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-bottom: 44px;
}

.comment-form__checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--logistiq-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    font-family: var(--logistiq-font);
    cursor: pointer;
}

.comment-form__checkbox input[type="checkbox"] {
    display: none;
}

.comment-form__checkbox input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 4px;
    left: 0px;
    width: 17px;
    height: 17px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid rgba(var(--logistiq-gray-rgb), .5);
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.comment-form__checkbox label span:before {
    position: absolute;
    top: 2px;
    left: 4px;
    display: block;
    border-bottom: 2px solid var(--logistiq-base);
    border-right: 2px solid var(--logistiq-base);
    content: '';
    width: 5px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.comment-form__checkbox input[type="checkbox"]:checked+label span {
    border: 1px solid rgba(var(--logistiq-gray-rgb), .5);
}

.comment-form__checkbox input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

/***
=============================================
Brand One
=============================================
***/
.brand-one {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 60px 0px 60px;
    z-index: 2;
}

.brand-one__single {
    position: relative;
    display: block;
}

.brand-one__single-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px 24px;
    z-index: 1;
}

.brand-one__single-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--logistiq-white);
    transform: scaleX(0);
    transition: all 600ms ease 100ms;
    content: "";
    z-index: -1;
}

.brand-one__single:hover .brand-one__single-inner::before {
    transform: scaleY(1);
}

.brand-one__single-inner a {
    position: relative;
    display: block;
}

.brand-one__single-inner img {
    width: auto;
    transition: .7s ease;
    transform: scale(1.05);
}

.brand-one__single:hover .brand-one__single-inner img {
    transform: scale(1);
}

.brand-one__carousel.owl-carousel .owl-item img {
    width: auto;
}

/***
=============================================
Brand One
=============================================
***/
.brand-one {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 60px 0px 60px;
    z-index: 2;
}

.brand-one__single {
    position: relative;
    display: block;
}

.brand-one__single-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px 24px;
    z-index: 1;
}

.brand-one__single-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--logistiq-white);
    transform: scaleX(0);
    transition: all 600ms ease 100ms;
    content: "";
    z-index: -1;
}

.brand-one__single:hover .brand-one__single-inner::before {
    transform: scaleY(1);
}

.brand-one__single-inner a {
    position: relative;
    display: block;
}

.brand-one__single-inner img {
    width: auto;
    transition: .7s ease;
    transform: scale(1.05);
}

.brand-one__single:hover .brand-one__single-inner img {
    transform: scale(1);
}

.brand-one__carousel.owl-carousel .owl-item img {
    width: auto;
}

/***
=============================================
Contact Page
=============================================
***/
.contact-page {
    position: relative;
    display: block;
    padding: 0px 0px 0px;
    z-index: 1;
}

.contact-page__top {
    position: relative;
    display: block;
    padding: 120px 0px 245px;
    background: var(--logistiq-gray-bg);
    z-index: 1;
}

.contact-page__top-pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.05;
    z-index: -1;
}

.contact-page__top-content {
    position: relative;
    display: block;
}

.contact-page__top-content .sec-title {
    padding-bottom: 41px;
}

.contact-page__top-content-text1 {
    position: relative;
    display: block;
}

.contact-page__top-content-text1 p {
    margin: 0;
}

.contact-page__top-content .social-links {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 52px;
}

.contact-page__top-content .social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(var(--logistiq-gray-rgb), 0.1);
    color: var(--logistiq-black);
}

.contact-page__top-content .social-links a+a {
    margin-left: 10px;
}

.contact-page__top-content .social-links a:hover {
    color: var(--logistiq-white);
    background: var(--logistiq-base);
}

.contact-page__top-content .social-links a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.contact-page__top-form {
    position: relative;
    display: block;
}

.contact-page__top-form .why-choose-one__form .input-box input[type="text"],
.contact-page__top-form .why-choose-one__form .input-box input[type="email"] {
    background-color: transparent;
}

.contact-page__top-form .why-choose-one__form .input-box .nice-select {
    background-color: transparent;
}

.contact-page__top-form .why-choose-one__form .input-box textarea {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--logistiq-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--logistiq-gray);
    border-radius: 2px;
    font-family: var(--logistiq-font);
    width: 100%;
    height: 120px;
    padding-top: 11px;
    outline: none;
    resize: none;
}

.contact-page__top-form .why-choose-one__form .input-box .icon.style2 {
    top: 11%;
    transform: translateY(0%);
}

.contact-page__bottom {
    position: relative;
    display: block;
    margin-top: -126px;
    margin-bottom: -130px;
    z-index: 5;
}

.contact-page__bottom-inner {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 50px 0px 42px;
    border-radius: 3px;
}

.contact-page__bottom-inner ul {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.contact-page__bottom-inner ul li {
    position: relative;
    display: block;
    padding-right: 75px;
    margin-right: 75px;
}

.contact-page__bottom-inner ul li:first-child {
    padding-left: 75px;
}

.contact-page__bottom-inner ul li:last-child {
    margin-right: 0px;
}

.contact-page__bottom-inner ul li::before {
    position: absolute;
    top: -50px;
    right: 0px;
    bottom: -42px;
    border-right: 1px dashed #e4e4e4;
    content: "";
}

.contact-page__bottom-inner ul li:last-child:before {
    display: none;
}

.contact-page__bottom-single {
    position: relative;
    display: block;
}

.contact-page__bottom-single .icon {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.contact-page__bottom-single .icon span {
    position: relative;
    display: block;
    color: var(--logistiq-base);
    font-size: 50px;
    line-height: 50px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.contact-page__bottom-single:hover .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.contact-page__bottom-single .content {
    position: relative;
    display: block;
}

.contact-page__bottom-single .content h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-page__bottom-single .content p {
    margin: 0;
}

.contact-page__bottom-single .content p a {
    color: var(--logistiq-gray);
}

.contact-page__bottom-single .content p a:hover {
    color: var(--logistiq-base);
}


/***
=============================================
Google Map One
=============================================
***/
.google-map-one {
    position: relative;
    display: block;
    z-index: 0;
}

.google-map-one__map {
    position: relative;
    display: block;
    border: none;
    height: 550px;
    width: 100%;
}

/***
=============================================
Counter One
=============================================
***/
.counter-one {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 110px 0px 112px;
    z-index: 1;
}

.counter-one__single {
    position: relative;
    display: block;
}

.counter-one__single-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-one__single-inner .icon {
    position: relative;
    display: block;
    z-index: 1;
}

.counter-one__single-inner .icon::before {
    position: absolute;
    left: -15px;
    bottom: -6px;
    width: 90px;
    border-bottom: 90px solid #ecedef;
    border-left: 0px solid transparent;
    border-right: 90px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.counter-one__single-inner .icon span {
    position: relative;
    display: inline-block;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__single-inner .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.counter-one__single-inner .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 70px;
    line-height: 70px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__single-inner .icon span::before {
    color: var(--logistiq-base);
}

.counter-one__single-inner .content-box {
    position: relative;
    display: block;
    margin-left: 35px;
    padding-left: 25px;
    flex: 1;
}

.counter-one__single-inner .content-box::before {
    position: absolute;
    top: 4px;
    left: 0;
    bottom: 8px;
    width: 2px;
    background: #ecedef;
    content: "";
}

.counter-one__single-inner .content-box .count-text-box {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.counter-one__single-inner .content-box .count-text-box h3 {
    font-size: 74px;
    line-height: 1em;
    font-weight: 700;
}

.counter-one__single-inner .content-box .count-text-box .plus {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 43px;
    margin-left: 9px;
    top: 3px;
    font-weight: 700;
}

.counter-one__single-inner .content-box .text-box {
    position: relative;
    display: block;
    margin-top: 1px;
}

.counter-one__single-inner .content-box .text-box p {
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.counter-one__single .shape1 {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 20px;
    border-top: 20px solid var(--logistiq-black);
    border-left: 20px solid transparent;
    border-right: 0px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one__single:hover .shape1 {
    border-top: 20px solid var(--logistiq-base);
    border-left: 20px solid transparent;
    border-right: 0px solid transparent;
}

/***
=============================================
Counter Two
=============================================
***/
.counter-one--two {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    padding: 73px 0px 80px;
    z-index: 2;
}

.counter-one--two .big-title {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.counter-one--two .big-title h2 {
    color: transparent;
    -webkit-text-stroke: 1px #E4E4E4;
    font-size: 74px;
    line-height: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
}

.counter-one--two__inner {
    position: relative;
    display: block;
    float: right;
    max-width: 700px;
    width: 100%;
}

.counter-one--two__inner ul {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-one--two__inner ul li {
    position: relative;
    display: block;
}

.counter-one--two__inner ul li+li {
    margin-left: 110px;
}

.counter-one--two .counter-one__single {
    max-width: 160px;
    width: 100%;
    padding-bottom: 8px;
}

.counter-one--two .counter-one__single::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #E4E4E4;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.counter-one--two .counter-one__single:hover::before {
    background: var(--logistiq-base);
}

.counter-one--two .counter-one__single-inner .content-box {
    margin-left: 0px;
    padding-left: 0px;
}

.counter-one--two .counter-one__single-inner .content-box::before {
    display: none;
}

.counter-one--two .counter-one__single-inner .content-box .count-text-box {
    align-items: center;
}

.counter-one--two .counter-one__single-inner .content-box .count-text-box .plus {
    top: -3px;
    margin-left: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one--two .counter-one__single:hover .counter-one__single-inner .content-box .count-text-box .plus {
    color: var(--logistiq-base);
}

.counter-one--two .counter-one__single-inner .content-box .count-text-box h3 {
    font-size: 48px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.counter-one--two .counter-one__single:hover .counter-one__single-inner .content-box .count-text-box h3 {
    color: var(--logistiq-base);
}

.counter-one--two .counter-one__single-inner .content-box .text-box p {
    text-transform: capitalize;
    letter-spacing: 0em;
    margin-top: 5px;
}

/***
=============================================
Counter Three
=============================================
***/
.counter-one--three {
    position: relative;
    display: block;
    background: transparent;
    margin-top: -120px;
    z-index: 2;
}

.counter-one--three__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%);
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.03;
    z-index: -1;
}

.counter-one--three::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50px;
    background: var(--logistiq-black);
    clip-path: polygon(0 0, 89% 0, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

.counter-one--three .counter-one__single-inner .icon span::before {
    color: var(--logistiq-white);
}

.counter-one--three .counter-one__single:hover .counter-one__single-inner .icon span::before {
    color: var(--logistiq-white);
}

.counter-one--three .counter-one__single-inner .icon::before {
    border-bottom: 90px solid rgba(var(--logistiq-white-rgb), 0.10);
}

.counter-one--three .counter-one__single-inner .content-box::before {
    background: rgba(var(--logistiq-white-rgb), 0.15);
}

.counter-one--three .counter-one__single-inner .content-box .count-text-box h3 {
    color: var(--logistiq-white);
}

.counter-one--three .counter-one__single-inner .content-box .text-box p {
    color: var(--logistiq-white);
}

.counter-one--three .counter-one__single .shape1 {
    display: none;
}

/***
=============================================
Error Page
=============================================
***/
.error-page {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.error-page__inner {
    position: relative;
    display: block;
}

.error-page__img {
    position: relative;
    display: block;
}

.error-page__img img {
    width: auto;
}

.error-page__content {
    position: relative;
    display: block;
    margin-top: 62px;
}

.error-page__content h2 {
    color: var(--logistiq-base);
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.error-page__content p {
    color: var(--logistiq-black);
    margin: 0;
}

.error-page__content .btn-box {
    position: relative;
    display: block;
    line-height: 0px;
    margin-top: 21px;
}

/***
=============================================
Faq One
=============================================
***/
.faq-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 169px;
    z-index: 1;
}

.faq-one .shape1 {
    position: absolute;
    top: -45px;
    left: 15px;
    z-index: 1;
}

.faq-one__content {
    position: relative;
    display: block;
    margin-top: 120px;
    margin-right: -50px;
    z-index: 2;
}

.faq-one__content-faq {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 80px 120px;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.faq-one-accrodion {
    position: relative;
    display: block;
    border-top: 1px solid #EEEEEE;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border-bottom: 1px solid #EEEEEE;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-two__right .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}


.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 19px 0px 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title h4 {
    position: relative;
    color: var(--logistiq-black);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: capitalize;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--logistiq-base);
}

.faq-one-accrodion .accrodion-title h4::before {
    position: absolute;
    color: var(--logistiq-black);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    content: "\e923";
    font-family: 'icomoon' !important;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\e924";
    color: var(--logistiq-base);
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    display: block;
    padding: 0px 0px 17px;
    margin-top: -3px;
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
}

.faq-one__img {
    position: relative;
    display: block;
    margin-left: -115px;
}

.faq-one__img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.faq-one__img-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--logistiq-black-rgb), 0.5);
    content: "";
    z-index: 1;
}

.faq-one__img-box img {
    width: 100%;
}

.faq-one__video-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.faq-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 30px;
    color: var(--logistiq-white);
    background-color: var(--logistiq-base);
    border: 0px solid var(--logistiq-black);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 1;
}

.faq-one__video-icon:hover {
    background-color: var(--logistiq-white);
    color: var(--logistiq-black);
}

.faq-one__video-link .ripple,
.faq-one__video-icon .ripple:before,
.faq-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.faq-one__video-icon .ripple:before {
    position: absolute;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
}

.faq-one__video-icon .ripple:after {
    position: absolute;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
}

/***
=============================================
Faq One Faq
=============================================
***/
.faq-one--faq {
    position: relative;
    display: block;
    padding-bottom: 0px;
}

/***
=============================================
Footer One
=============================================
***/
.footer-one {
    position: relative;
    display: block;
    background-color: var(--logistiq-black);
    padding: 120px 0px 0px;
    z-index: 1;
}

.footer-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.1;
    text-align: center;
    z-index: -1;
}

.footer-one__top {
    position: relative;
    display: block;
    padding-bottom: 113px;
}

.footer-one__top-inner {
    position: relative;
    display: block;
}

.footer-widget__single {
    position: relative;
    display: block;
}

.footer-widget__single .title {
    position: relative;
    display: block;
    margin-top: -12px;
    margin-bottom: 14px;
}

.footer-widget__single .title h2 {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--logistiq-white);
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.footer-widget__single .title h2 span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 45px;
    margin-left: 15px;
}

.footer-one__about {
    position: relative;
    display: block;
}

.footer-one__about-logo {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.footer-one__about-logo a {
    position: relative;
    display: inline-block;
}

.footer-one__about-logo a img {
    width: 100%;
}

.footer-one__about-text {
    color: #E4E4E4;
}

.footer-one__about-contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 26px;
}

.footer-one__about-contact-info .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px dashed var(--logistiq-base);
    background-color: var(--logistiq-base);
}

.footer-one__about-contact-info .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 18px;
    line-height: 18px;
}

.footer-one__about-contact-info .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
    flex: 1;
}

.footer-one__about-contact-info .text-box p {
    color: #E4E4E4;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.footer-one__about-contact-info .text-box h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

.footer-one__about-contact-info .text-box h4 a {
    color: var(--logistiq-base);
}

.footer-one__quick-links {
    position: relative;
    display: block;
    margin-left: 40px;
}

.footer-one__quick-links-list {
    position: relative;
    display: block;
}

.footer-one__quick-links-list li {
    position: relative;
    display: block;
    margin-bottom: 9px;
}

.footer-one__quick-links-list li:last-child {
    margin-bottom: 0px;
}

.footer-one__quick-links-list li a {
    color: #E4E4E4;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    text-transform: capitalize;
}

.footer-one__quick-links-list li a:hover {
    color: var(--logistiq-base);
}

.footer-one__quick-links-list li a span {
    position: relative;
    display: inline-block;
    font-size: 10px;
    line-height: 10px;
    font-weight: 700;
    padding-right: 5px;
    top: -2px;
}

.footer-one__contact {
    position: relative;
    display: block;
}

.footer-one__contact-box {
    position: relative;
    display: block;
}

.footer-one__contact-box ul {
    position: relative;
    display: block;
}

.footer-one__contact-box ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 22px;
}

.footer-one__contact-box-ar ul li {
    position: relative;
    display: block;
    padding-right: 30px;
    margin-bottom: 22px;
}

.footer-one__contact-box ul li:last-child {
    margin-bottom: 0px;
}

.footer-one__contact-box ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
}
.footer-one__contact-box-ar ul li .icon {
    position: absolute;
    top: 0;
    right: 0;
}

.footer-one__contact-box ul li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 20px;
    line-height: 20px;
    top: 6px;
}
.footer-one__contact-box-ar ul li .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 20px;
    line-height: 20px;
    top: 6px;
}

.footer-one__contact-box ul li .text-box {
    position: relative;
    display: block;
}
.footer-one__contact-box-ar ul li .text-box {
    position: relative;
    display: block;
}

.footer-one__contact-box ul li .text-box p {
    color: #E4E4E4;
    font-size: 17px;
    line-height: 28px;
}
.footer-one__contact-box-ar ul li .text-box p {
    color: #E4E4E4;
    font-size: 17px;
    line-height: 28px;
}

.footer-one__contact-box ul li .text-box p a {
    color: #E4E4E4;
}
.footer-one__contact-box-ar ul li .text-box p a {
    color: #E4E4E4;
}

.footer-one__contact-box ul li .text-box p a:hover {
    color: var(--logistiq-base);
}
.footer-one__contact-box-ar ul li .text-box p a:hover {
    color: var(--logistiq-base);
}

.footer-one__subscribe {
    position: relative;
    display: block;
}

.footer-one__subscribe-text {
    color: #E4E4E4;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
}

.footer-one__subscribe-form {
    position: relative;
    display: block;
    margin-top: 19px;
}

.footer-one__subscribe-form .subscribe-form {
    position: relative;
    display: block;
}

.footer-one__subscribe-form .subscribe-form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 1.0);
    border: none;
    color: var(--logistiq-gray);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    border-radius: 5px;
    transition: all 500ms ease;
    font-family: var(--logistiq-font);
    text-transform: none;
    outline: none;
}

.footer-one__subscribe-form .subscribe-form input::-webkit-input-placeholder {
    color: var(--logistiq-gray);
}

.footer-one__subscribe-form .subscribe-form input:-moz-placeholder {
    color: var(--logistiq-gray);
}

.footer-one__subscribe-form .subscribe-form input::-moz-placeholder {
    color: var(--logistiq-gray);
}

.footer-one__subscribe-form .subscribe-form input:-ms-input-placeholder {
    color: var(--logistiq-gray);
}

.footer-one__subscribe-form .subscribe-form button {
    position: relative;
    margin-top: 15px;
}

.footer-one__subscribe-form .subscribe-form button.thm-btn .hover-btn {
    background-color: var(--logistiq-white);
}

.footer-one__subscribe-form .subscribe-form button.thm-btn:hover {
    color: var(--logistiq-black);
}

.footer-one__bottom {
    position: relative;
    display: block;
}

.footer-one__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid rgba(var(--logistiq-white-rgb), 0.2);
    padding: 20px 0px 20px;
}

.footer-one__bottom-text {
    position: relative;
    display: block;
}

.footer-one__bottom-text p {
    color: #E4E4E4;
}

.footer-one__bottom-text p a {
    color: #E4E4E4;
}

.footer-one__bottom-text p a:hover {
    color: var(--logistiq-base);
}

.footer-one__social-links {
    position: relative;
    display: block;
}

.footer-one__social-links ul {
    position: relative;
    display: block;
}

.footer-one__social-links ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.footer-one__social-links ul li:last-child {
    margin-right: 0px;
}

.footer-one__social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(var(--logistiq-white-rgb), 0.1);
    z-index: 1;
}

.footer-one__social-links ul li a::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0px;
    height: 100%;
    content: "";
    bottom: 0;
    background: #FFF;
    z-index: -1;
    transition: .5s;
    margin: auto;
}

.footer-one__social-links ul li a:hover::before {
    width: 100%;
    left: 0;
}

.footer-one__social-links ul li a span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-one__social-links ul li a:hover span::before {
    color: var(--logistiq-black);
}

/***
=============================================
Footer Two
=============================================
***/
.footer-one--two {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 0px;
    z-index: 1;
}

.footer-one--two .footer-one__pattern {
    position: absolute;
    top: auto;
    bottom: 0;
}

.footer-one--two .shape3 {
    position: absolute;
    top: 0px;
    right: 135px;
    z-index: -1;
}

.footer-one--two__cta {
    position: relative;
    display: block;
    padding: 50px 0px 50px;
    z-index: 1;
}

.footer-one--two__cta .shape1 {
    position: absolute;
    left: -292px;
    bottom: 5px;
    z-index: -1;
}

.footer-one--two__cta .shape2 {
    position: absolute;
    left: -85px;
    bottom: 10px;
}

.footer-one--two__cta::before {
    position: absolute;
    top: 0;
    left: -999px;
    bottom: 0;
    right: 194px;
    background: var(--logistiq-base);
    clip-path: polygon(0 0, 100% 0%, 94% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

.footer-one--two__cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 985px;
    width: 100%;
}

.footer-one--two__cta-inner .text-box {
    position: relative;
    display: block;
}

.footer-one--two__cta-inner .text-box h2 {
    color: var(--logistiq-white);
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
    text-transform: capitalize;
}

.footer-one--two__cta-inner .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.footer-one--two__cta-inner .btn-box .thm-btn {
    background: var(--logistiq-black);
}

.footer-one--two__cta-inner .btn-box .thm-btn:hover {
    color: var(--logistiq-black);
}

.footer-one--two__cta-inner .btn-box .thm-btn .hover-btn {
    background-color: var(--logistiq-white);
}


.footer-one--two .footer-one__top-inner {
    padding-top: 120px;
}

/***
=============================================
Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 187px 0px 192px;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.page-header__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(6, 46, 57);
    background: linear-gradient(90deg, rgba(6, 46, 57, 1) 13%, rgba(6, 46, 57, 0.8071603641456583) 35%, rgba(6, 46, 57, 0.5550595238095238) 60%, rgba(6, 46, 57, 0.4206057422969187) 100%);
    content: "";
    z-index: -1;
}

.page-header__pattern {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    padding-left: 20px;
}

.page-header__inner::before {
    position: absolute;
    top: -7px;
    left: 0;
    bottom: -12px;
    width: 5px;
    background: var(--logistiq-base);
    content: "";
}

.page-header__inner h2 {
    color: var(--logistiq-white);
    font-size: 74px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.page-header__inner .thm-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 7px;
}

.page-header__inner .thm-breadcrumb li {
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    margin-left: 5px;
    margin-right: 5px;
}

.page-header__inner .thm-breadcrumb li:first-child {
    margin-left: 0px;
}

.page-header__inner .thm-breadcrumb li:last-child {
    margin-right: 0px;
}

.page-header__inner .thm-breadcrumb li a {
    color: var(--logistiq-base);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    top: 2px;
}

/***
=============================================
Product
=============================================
***/
.product {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.product__sidebar {
    position: relative;
    display: block;
}

.product__sidebar-single+.product__sidebar-single {
    margin-top: 30px;
}

.product__sidebar-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    margin-bottom: 22px;
}

.shop-search {
    position: relative;
    display: block;
    background-color: var(--logistiq-gray-bg);
    padding: 30px 30px 30px;
}

.shop-search form {
    position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
    width: 100%;
    height: 60px;
    background-color: var(--logistiq-white);
    padding-left: 30px;
    padding-right: 60px;
    font-size: 16px;
    color: var(--logistiq-gray);
    font-family: var(--logistiq-font);
    border: none;
    outline: none;
    font-weight: 500;
}

.shop-search form ::placeholder {
    color: inherit;
    opacity: 1;
}

.shop-search form button[type="submit"] {
    background-color: var(--logistiq-base);
    color: var(--logistiq-white);
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 50px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
    background-color: var(--logistiq-black);
    color: var(--logistiq-white);
}

.product__price-ranger {
    position: relative;
    padding: 27px 30px 30px;
    margin: 0;
    background-color: var(--logistiq-gray-bg);
}

.product__price-ranger.price-ranger {
    margin-top: 7px;
    margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
    background: var(--logistiq-white);
    border: none;
    height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--logistiq-base);
    border: 0;
    height: 14px;
    width: 14px !important;
    border-radius: 50%;
    margin-left: -2px;
    outline: medium none;
    cursor: pointer;
    z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
    background: var(--logistiq-base);
}

.product__price-ranger .price-ranger #slider-range {
    margin-left: 3px;
    margin-right: 0;
    margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
    position: relative;
    display: block;
    margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
    display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: block;
    background: var(--logistiq-black);
    float: right;
    text-align: center;
    border: none;
    color: var(--logistiq-white);
    font-size: 12px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
    position: relative;
    display: inline-block;
    color: var(--logistiq-gray);
    font-size: 14px;
    font-weight: 400;
    width: 40px;
    line-height: 30px;
    border: none;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    left: -2px;
}

.shop-category {
    position: relative;
    display: block;
    background-color: var(--logistiq-gray-bg);
    padding: 29px 15px 15px;
}

.shop-category .product__sidebar-title {
    margin-left: 15px;
    margin-bottom: 13px;
}

.shop-category ul {
    position: relative;
    display: block;
}

.shop-category ul li {
    position: relative;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--logistiq-gray);
    margin-bottom: 5px;
}

.shop-category ul li:last-child {
    margin-bottom: 0;
}

.shop-category ul li a {
    position: relative;
    display: block;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--logistiq-gray);
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    z-index: 1;
    padding: 8px 15px 8px;
}

.shop-category ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--logistiq-white);
    border-radius: 15px;
    z-index: -1;
    transform: scaleY(0.0);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-category ul li a:hover:before {
    transform: scaleY(1.0);
}

.shop-category ul li:hover a,
.shop-category ul li.active a {
    color: var(--logistiq-black);
    background: var(--logistiq-white);
}

.shop-category ul li a:after {
    position: absolute;
    right: 20px;
    top: 5px;
    font-family: 'icomoon' !important;
    content: "\e93b";
    opacity: 1;
    font-size: 15px;
    color: var(--logistiq-base);
    line-height: 30px;
    font-weight: 700;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.shop-category ul li a:hover:after,
.shop-category ul li.active a:after {
    color: var(--logistiq-base);
    transform: scale(1);
    text-shadow: none;
}

.shop-color-option {
    position: relative;
    display: block;
    background-color: var(--logistiq-gray-bg);
    padding: 29px 30px 27px;
}

.shop-color-option ul {
    position: relative;
    display: block;
}

.shop-color-option ul li {
    position: relative;
    display: block;
    font-size: 16px;
    color: var(--logistiq-gray);
    padding-left: 30px;
}

.shop-color-option ul li+li {
    margin-top: 6px;
}

.shop-color-option ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--logistiq-black);
    border-radius: 0%;
    transform: translateY(-50%);
}

.shop-color-option ul li:nth-child(2):before {
    background-color: blue;
}

.shop-color-option ul li:nth-child(3):before {
    background-color: brown;
}

.shop-color-option ul li:nth-child(4):before {
    background-color: pink;
}

.shop-color-option ul li:nth-child(5):before {
    background-color: orange;
}

.shop-product-tags {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 25px 15px 30px;
    overflow: hidden;
    z-index: 1;
}

.shop-product-tags .product__sidebar-title {
    margin-left: 5px;
}

.shop-product__tags-list {
    margin-top: -10px;
}

.shop-product__tags-list a {
    font-size: 12px;
    color: var(--logistiq-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--logistiq-white);
    display: inline-block;
    padding: 5px 20px 5px;
    margin-left: 5px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.shop-product__tags-list a+a {
    margin-left: 5px;
    margin-top: 10px;
}

.shop-product__tags-list a:hover {
    color: var(--logistiq-white);
    background: var(--logistiq-base);
}


.sidebar-rating-box {
    position: relative;
    display: block;
}

.sidebar-rating-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.sidebar-rating-box ul li {
    position: relative;
    display: block;
}

.sidebar-rating-box ul li+li {
    margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.sidebar-rating-box ul li label {
    position: relative;
    display: block;
    padding-left: 30px;
    color: #ffc009;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
    color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio]+label i {
    position: absolute;
    top: 1px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid var(--logistiq-gray);
    border-radius: 0%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transform: scale(0);
    background-color: var(--logistiq-base);
    border-radius: 0%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked+label {}

.sidebar-rating-box ul li input[type=radio]:checked+label i {
    border-color: var(--logistiq-base);
}

.sidebar-rating-box ul li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
}








.shop-product-recent-products {
    position: relative;
    display: block;
    background-color: var(--logistiq-gray-bg);
    padding: 29px 30px 27px;
}

.shop-product-recent-products ul {
    position: relative;
    display: block;
}

.shop-product-recent-products ul li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dddbdb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
    position: relative;
    display: block;
    overflow: hidden;
}

.shop-product-recent-products ul li .img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--logistiq-black-rgb), 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

.shop-product-recent-products ul li:hover .img::before {
    opacity: 1;
}

.shop-product-recent-products ul li .img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
    transform: scale(1);
}

.shop-product-recent-products ul li .img a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 0;
    transform: translateY(10px) scale(0);
    z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
    transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
    color: var(--logistiq-base);
    transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
    position: relative;
    display: block;
}

.shop-product-recent-products ul li .content .title h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.shop-product-recent-products ul li .content .title h5 a {
    color: var(--logistiq-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
    color: var(--logistiq-base);
}

.shop-product-recent-products ul li .content .price {
    position: relative;
    display: block;
    padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
    color: var(--logistiq-base);
}

.shop-product-recent-products ul li .content .review {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-product-recent-products ul li .content .review i {
    color: #ffc009;
    font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
    color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i+i {
    margin-left: 5px;
}




























.product__items {
    position: relative;
    display: block;
}

.product__showing-result {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.product__showing-text-box {
    position: relative;
    display: block;
}

.product__showing-text {
    font-size: 16px;
    font-weight: 400;
}

.product__showing-sort {
    position: relative;
    display: block;
    max-width: 340px;
    width: 100%;
}

.product__showing-sort .select-box .nice-select {
    background-color: var(--logistiq-gray-bg);
    color: var(--logistiq-gray);
    font-size: 16px;
    font-weight: 400;
    height: 70px;
    line-height: 70px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
    position: absolute;
    right: 30px;
}

.product__all {
    position: relative;
    display: block;
}

.product__all-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid #dddddd;
    background-color: var(--logistiq-white);
    padding: 0 0 30px;
    transition: all 500ms ease;
    z-index: 1;
}

.product__all-single:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.product__all-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.product__all-img img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.product__all-single:hover .product__all-img img:first-child {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.product__all-single:hover .product__all-img img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.product__all-img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.product__all-content {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 23px;
}

.product__all-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-top: 12px;
}

.product__all-title a {
    color: var(--logistiq-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.product__all-title a:hover {
    color: var(--logistiq-base);
}

.product__all-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--logistiq-gray);
    margin-top: 4px;
}

.product__all-review {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__all-review i {
    font-size: 17px;
    color: var(--logistiq-base);
}

.product__all-review i+i {
    margin-left: 5px;
}

.product__all-btn-box {
    position: relative;
    display: block;
    margin-top: 11px;
    z-index: 2;
}

.product__all-btn-box .thm-btn {
    background: transparent;
    border: 1px solid var(--logistiq-base);
    color: var(--logistiq-base);
}

.product__all-btn-box .thm-btn:hover {
    border-color: var(--logistiq-black);
}



/***
=============================================
Product Details
=============================================
***/
.product-details {
    position: relative;
    display: block;
    padding: 120px 0px 56px;
}

.product-details__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-details__img img {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 15px;
    mix-blend-mode: luminosity;
}

.product-details__top {
    position: relative;
    display: block;
    margin-top: -9px;
}

.product-details__title {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    margin: 0;
}

.product-details__title span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 25px;
    letter-spacing: 0;
}

.product-details__reveiw {
    display: flex;
    align-items: center;
    margin-top: 26px;
    padding-bottom: 37px;
    margin-bottom: 28px;
    border-bottom: 1px solid #dddddd;
}

.product-details__reveiw i {
    font-size: 16px;
    color: var(--logistiq-base);
}

.product-details__reveiw i+i {
    margin-left: 4px;
}

.product-details__reveiw span {
    position: relative;
    top: 1px;
    line-height: 1;
    font-size: 16px;
    color: var(--logistiq-gray);
    margin-left: 18px;
}

.product-details__content {
    position: relative;
    display: block;
}

.product-details__content-text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    margin-bottom: 31px;
}

.product-details__content-text2 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.product-details__quantity-title {
    margin: 0;
    color: var(--logistiq-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-right: 20px;
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
}

.product-details__quantity .quantity-box input {
    width: 98px;
    border-radius: 10px;
    height: 50px;
    border: 1px solid #dddddd;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    font-family: var(--logistiq-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--logistiq-gray);
}

.product-details__quantity .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--logistiq-gray);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border: none;
    border-left: 1px solid #dddddd;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid #dddddd;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
}

.product-details__buttons {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.product-details__buttons-1 {
    position: relative;
    display: block;
}

.product-details__buttons-1 .thm-btn {
    background: transparent;
    border: 1px solid var(--logistiq-base);
    color: var(--logistiq-base);
}

.product-details__buttons-1 .thm-btn:hover {
    border-color: var(--logistiq-black);
}

.product-details__buttons-2 {
    position: relative;
    display: block;
    margin-left: 10px;
}

.product-details__social {
    position: relative;
    display: block;
}

.product-details__social .title {
    position: relative;
    display: block;
}

.product-details__social .title h3 {
    color: var(--logistiq-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.product-details__social-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.product-details__social-link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logistiq-white);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-color: var(--logistiq-black);
    border-radius: 50%;
    height: 45px;
    width: 45px;
}

.product-details__social-link a+a {
    margin-left: 10px;
}

.product-details__social-link a:hover {
    color: var(--logistiq-white);
    background-color: var(--logistiq-base);
}


/*--------------------------------------------------------------
  # Product Description
  --------------------------------------------------------------*/
.product-description {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 50px;
}

.product-description__title {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 27px;
}

.product-description__text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.product-description__list {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-description__list ul {
    position: relative;
    display: block;
}

.product-description__list ul li {
    position: relative;
    display: block;
    margin-bottom: 2px;
}

.product-description__list ul li:last-child {
    margin-bottom: 0px;
}

.product-description__list ul li p {
    color: var(--logistiq-black);
    margin: 0;
    font-weight: 500;
}

.product-description__list ul li p span:before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 17px;
    line-height: 17px;
    margin-right: 11px;
    top: 2px;
    font-weight: 700;
}

.product-description__tex2 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
    position: relative;
    display: block;
}

.comments-area {
    position: relative;
    display: block;
    border-top: 1px solid #dddddd;
    padding-top: 56px;
}

.review-one__title {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.review-one__title h3 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 800;
    margin: 0;
}


.comments-area .comment-box {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #dddddd;
}

.comments-area .comment {
    position: relative;
    display: flex;
    align-items: center;
}

.comments-area .comment-box .author-thumb {
    position: relative;
    display: block;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
    width: 100%;
}

.comments-area .comment-box .author-thumb figure {
    margin: 0;
}

.review-one__content {
    position: relative;
    display: block;
    padding-left: 45px;
    flex: 1;
}

.review-one__content-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-one__content-top .info {
    position: relative;
    display: block;
}

.review-one__content-top .info h2 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
}

.review-one__content-top .info h2 span {
    color: var(--logistiq-base);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
}

.review-one__content-top .reply-btn {
    position: relative;
    display: block;
}

.review-one__content-top .reply-btn i:before {
    color: var(--logistiq-base);
    font-size: 17px;
}

.review-one__content-bottom {
    position: relative;
    display: block;
}

.review-one__content-bottom p {
    font-size: 16px;
    line-height: 30px;
    margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
    position: relative;
    display: block;
    padding: 16px 0 120px;
}

.review-form-one__inner {
    position: relative;
    display: block;
}

.review-form-one__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
}

.review-form-one__rate-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 25px;
}

.review-form-one__rate-text {
    font-size: 16px;
    font-weight: 400;
}

.review-form-one__rate {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.review-form-one__rate i {
    font-size: 17px;
    color: var(--logistiq-base);
}

.review-form-one__rate i+i {
    margin-left: 5px;
}

.review-form-one__form {
    position: relative;
    display: block;
}

.review-form-one__form .row {
    --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
    font-size: 16px;
    color: var(--logistiq-gray);
    height: 190px;
    width: 100%;
    background-color: var(--logistiq-gray-bg);
    padding: 25px 30px 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    font-weight: 400;
    border-radius: 15px;
}

.review-form-one__input-box.text-message-box {
    height: 190px;
}

.review-form-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    border: none;
    background-color: var(--logistiq-gray-bg);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--logistiq-gray);
    display: block;
    font-weight: 400;
    border-radius: 15px;
}

.review-form-one__btn {
    border: none;
    margin-top: 10px;
}



/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 112px 0px 112px;
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
    .cart-table {
        min-width: 1170px;
    }
}

.cart-table {
    margin-bottom: 60px;
}

.cart-table thead th {
    color: var(--logistiq-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding: 0;
    border: none;
    padding-bottom: 22px;
}

.cart-table thead th:last-child {
    text-align: right;
}

.cart-table tbody tr {
    vertical-align: middle;
}

.cart-table tbody tr:last-child {
    border-bottom: 1px solid #dddddd;
}

.cart-table tbody td {
    font-size: 18px;
    color: var(--logistiq-gray);
    vertical-align: middle;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
}

.cart-table tbody td:last-child {
    text-align: right;
}

.cart-table .product-box {
    display: flex;
    align-items: center;
}

.cart-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    border-radius: 0;
    overflow: hidden;
    margin-right: 35px;
}

.cart-table .product-box .img-box img {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 10px;
}

.cart-table h3 {
    color: var(--logistiq-black);
    font-size: 20px;
    margin-left: 36px;
    font-weight: 700;
    margin: 0;
}

.cart-table h3 a {
    color: var(--logistiq-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cart-table h3 a:hover {
    color: var(--logistiq-base);
}

.cart-table .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
}

.cart-table .quantity-box input {
    width: 98px;
    border-radius: 10px;
    height: 50px;
    border: 1px solid #dddddd;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    font-family: var(--logistiq-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    color: var(--logistiq-gray);
    font-weight: 700;
}

.cart-table .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    border-left: 1px solid #dddddd;
}

.cart-table .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid #dddddd;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
    position: relative;
    display: block;
}

.cart-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 16px;
}

.cart-cupon__form {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.cart-cupon__input {
    width: 100%;
    max-width: 370px;
    border-radius: 15px;
    background-color: var(--logistiq-gray-bg);
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 20px;
    font-family: var(--logistiq-font);
    font-size: 16px;
    color: var(--logistiq-gray);
    height: 52px;
    margin-bottom: 20px;
    border: none;
    outline: none;
    font-weight: 400;
}

.cart-cupon__form ::placeholder {
    color: var(--logistiq-gray);
    opacity: 1;
}

.cart-cupon__form .thm-btn {
    background-color: transparent;
    border: 1px solid var(--logistiq-base);
    color: var(--logistiq-base);
}

.cart-cupon__form .thm-btn:hover {
    border-color: var(--logistiq-black);
}

.cart-total {
    position: relative;
    display: block;
    margin-bottom: 22px;
    margin-top: -9px;
}

.cart-total li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--logistiq-gray);
    font-size: 18px;
    font-weight: 500;
}

.cart-total li+li {
    margin-top: 15px;
}

.cart-total li span:first-child {
    display: block;
    color: var(--logistiq-black);
    font-size: 20px;
    margin-right: 80px;
    font-weight: 700;
    width: 140px;
    text-align: right;
}

.cart-total li:nth-child(2) span:first-child {
    position: relative;
    right: 6px;
}

.cart-total-amount {
    color: var(--logistiq-base);
}

.cart-page__buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cart-page__buttons-1 {
    position: relative;
    display: block;
}

.cart-page__buttons-1 .thm-btn {
    background: transparent;
    border: 1px solid var(--logistiq-base);
    color: var(--logistiq-base);
}

.cart-page__buttons-1 .thm-btn:hover {
    border-color: var(--logistiq-black);
}

.cart-page__buttons-2 {
    position: relative;
    display: block;
    margin-left: 10px;
}

.cart-page__buttons-2 .thm-btn {
    line-height: 52px;
}


/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-page {
    position: relative;
    display: block;
    padding: 112px 0 120px;
    z-index: 1;
}

.checkout-page .billing_details {
    position: relative;
    display: block;
}

.billing_title {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.billing_title p {
    font-size: 16px;
    margin: 0;
}

.billing_title span {
    color: var(--logistiq-base);
}

.billing_title h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    font-weight: 700;
    margin-top: 16px;
}

.billing_details_form {
    position: relative;
    display: block;
}

.billing_details_form .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
    border: none;
}

.billing_details_form .btn-light:hover {
    border: none;
}

.billing_input_box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
    height: 60px;
    width: 100%;
    border: none;
    background-color: var(--logistiq-gray-bg);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    color: var(--logistiq-gray);
    display: block;
    font-weight: 400;
}

.billing_details .checked-box {
    position: relative;
    display: block;
    margin-top: -4px;
}

.billing_details .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--logistiq-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--logistiq-font);
}

.billing_details .checked-box input[type="checkbox"] {
    display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--logistiq-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
}

.billing_details .checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--logistiq-white);
    border-right: 2px solid var(--logistiq-white);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
    border-color: var(--logistiq-white);
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.ship_different_address_title {
    margin-top: 44px;
}

.ship_different_address_title h2 span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 19px;
    top: -2px;
    left: 15px;
}

.ship_different_address_form .ship_different_input {
    position: relative;
    display: block;
    height: 120px;
}

.ship_different_address_form .ship_different_input textarea {
    font-size: 16px;
    color: var(--logistiq-gray);
    height: 120px;
    width: 100%;
    background-color: var(--logistiq-gray-bg);
    padding: 15px 30px 20px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    border-radius: 10px;
    font-weight: 400;
}

.billing_details_form .select-box .nice-select {
    background-color: var(--logistiq-gray-bg);
    border-radius: 10px;
    color: var(--logistiq-gray);
    font-size: 16px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
    position: absolute;
    right: 30px;
}

.your_order {
    position: relative;
    display: block;
    padding-top: 56px;
}

.your_order h2 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 36px;
}

.order_table_box {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 24px;
}

.order_table_detail {
    position: relative;
    width: 100%;
}

.order_table_head {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
}

.order_table_head th {
    font-size: 20px;
    color: var(--logistiq-black);
    font-weight: 700;
    margin: 0;
    padding: 23px 0 22px;
}

.order_table_head th.right {
    float: right;
}

.order_table_detail tbody td {
    padding: 29px 0 2px;
}

.order_table_detail tbody td.pro__title {
    color: var(--logistiq-gray);
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

.order_table_detail tbody td.pro__price {
    color: var(--logistiq-gray);
    font-size: 16px;
    line-height: 18px;
    text-align: right;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.checkout__payment {
    background-color: var(--logistiq-gray-bg);
    border-radius: 10px;
    padding: 49px 50px 18px;
    margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
    margin-top: 41px;
}

.checkout__payment__title {
    display: flex;
    color: var(--logistiq-black);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    align-items: center;
    margin-bottom: 27px;
    cursor: pointer;
}

.checkout__payment__title::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--logistiq-white);
    border: 2px solid #dddddd;
    border-radius: 50%;
    margin-right: 10px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 10px;
    color: var(--logistiq-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    top: 0px;
    transition: all 500ms ease;
}

.checkout__payment__title img {
    margin-left: 15px;
}

.checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--logistiq-base);
    border-color: var(--logistiq-base);
    content: '\f00c';
}

.checkout__payment__content {
    font-size: 16px;
    line-height: 30px;
    color: var(--logistiq-gray);
    font-weight: 400;
}


/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
.wishlist-page {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
}

.wishlist-page .table-responsive-box {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
    .wishlist-table {
        min-width: 1170px;
    }
}

.wishlist-table {
    min-width: 1170px;
    width: 100%;
    border: 1px solid #dddddd;
}

.wishlist-table tbody tr {
    vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
    border-bottom: 1px solid #dddddd;
}

.wishlist-table tbody td {
    font-size: 18px;
    font-weight: 500;
    color: var(--logistiq-gray);
    vertical-align: middle;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0;
}

.wishlist-table tbody td:first-child {
    width: 120px;
}

.wishlist-table tbody td:last-child {
    text-align: center;
    padding-left: 7px;
    padding-right: 14px;
}

.wishlist-table .product-box {
    position: relative;
    display: block;
}

.wishlist-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    overflow: hidden;
    border-radius: 10px;
}

.wishlist-table .product-box .img-box img {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(1);
}

.product-name-select-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.product-name-select-box .product-name {
    position: relative;
    display: block;
}

.product-name-select-box .product-name h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
}

.product-name-select-box .product-name p {
    font-size: 18px;
    font-weight: 400;
}

.product-name-select-box .product-select {
    position: relative;
    display: block;
}

.wishlist-table .cross-icon {
    position: relative;
    display: block;
}

.wishlist-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 16px;
}




/*--------------------------------------------------------------
# Account
--------------------------------------------------------------*/
.account {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.account .container {
    max-width: 760px;
}

.account__main-tab-box {
    position: relative;
    display: block;
}

.account__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.account__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    text-align: center;
}

.account__main-tab-box .tab-buttons .tab-btn:nth-child(1) span {
    border-top-left-radius: 20px;
}

.account__main-tab-box .tab-buttons .tab-btn:nth-child(2) span {
    border-top-right-radius: 20px;
}

.account__main-tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: block;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-size: 18px;
    line-height: 18px;
    color: var(--logistiq-black);
    background-color: transparent;
    padding: 22px 0px 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    border: 1px solid #dddddd;
    font-family: var(--logistiq-font-two);
    text-transform: capitalize;
    letter-spacing: 0.1em;
}

.account__main-tab-box .tab-buttons .tab-btn.active-btn span {
    color: var(--logistiq-white);
}

.account__main-tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    background-color: var(--logistiq-base);
    transform: scaleY(0.0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: -1;
}

.account__main-tab-box .tab-buttons .tab-btn:nth-child(1) span:before {
    border-top-left-radius: 20px;
}

.account__main-tab-box .tab-buttons .tab-btn:nth-child(2) span:before {
    border-top-right-radius: 20px;
}

.account__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
    transform: scaleY(1.0) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.account__main-tab-box .tabs-content {
    position: relative;
    display: block;
    border: 1px solid #dddddd;
    border-top: 0px;
    padding: 60px 80px 75px;
}

.account__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.account__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.account__main-tab-inner {
    position: relative;
    display: block;
}

.account__form {
    position: relative;
    display: block;
}

.account__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.account__form-input-box input[type="text"],
.account__form-input-box input[type="password"] {
    height: 50px;
    width: 100%;
    border: none;
    background-color: var(--logistiq-gray-bg);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    color: var(--logistiq-gray);
    display: block;
    font-weight: 500;
}

.account__form-btn-box {
    position: relative;
    display: flex;
    align-items: center;
}

.account__form-btn {
    border: none;
}

.account__form-btn-box .checked-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.account__form-btn-box .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--logistiq-gray);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    text-transform: none;
    cursor: pointer;
    font-family: var(--logistiq-font);
}

.account__form-btn-box .checked-box input[type="checkbox"] {
    display: none;
}

.account__form-btn-box .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background: var(--logistiq-white);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 2px solid #dddddd;
}

.account__form-btn-box .checked-box label span:before {
    position: absolute;
    top: 3px;
    left: 4px;
    display: block;
    border-bottom: 2px solid #dddddd;
    border-right: 2px solid #dddddd;
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.account__form-btn-box.checked-box input[type="checkbox"]:checked+label span {
    border-color: #dddddd;
}

.account__form-btn-box .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.account__form-forgot-password {
    position: relative;
    display: block;
    margin-top: 9px;
}

.account__form-forgot-password a {
    font-size: 16px;
    font-weight: 500;
    color: var(--logistiq-gray);
    position: relative;
    display: inline-block;
}


/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
    position: relative;
    display: block;
    background-color: var(--logistiq-white);
    padding: 112px 0px 120px;
    z-index: 1;
}

.sign-up-one .container {
    max-width: 620px;
}

.sign-up-one__form {
    position: relative;
    display: block;
}

.sign-up-one__form .inner-title {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
    font-size: 60px;
    line-height: 1.0em;
    font-weight: 700;
}

.sign-up-one__form form {
    position: relative;
    display: block;
    background-color: var(--logistiq-white);
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
    padding: 60px 50px 52px;
}

.sign-up-one__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
    position: relative;
    display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid var(--logistiq-gray-bg);
    background-color: var(--logistiq-gray-bg);
    width: 100%;
    height: 60px;
    color: var(--logistiq-gray);
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
    border-color: var(--logistiq-base);
    background-color: var(--logistiq-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--logistiq-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
    color: var(--logistiq-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
    color: var(--logistiq-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--logistiq-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--logistiq-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
    color: var(--logistiq-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
    color: var(--logistiq-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--logistiq-gray);
}

.sign-up-one__form form .thm-btn {
    line-height: 59px;
    width: 100%;
}

.sign-up-one__form form .google-facebook {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--logistiq-gray);
    background-color: var(--logistiq-white);
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--logistiq-font);
    font-weight: 500;
    padding: 10px 15px 10px;
    border-radius: 5px;
    letter-spacing: -0.01em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
    border: 1px solid var(--logistiq-base);
    background-color: var(--logistiq-white);
}

.sign-up-one__form form .google-facebook a+a {
    margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.sign-up-one__form form .create-account {
    position: relative;
    display: block;
    padding-top: 22px;
}

.sign-up-one__form form .create-account p {
    margin: 0;
}

.sign-up-one__form form .create-account p a {
    font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
    color: var(--logistiq-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
    position: relative;
    display: block;
    background-color: var(--logistiq-white);
    padding: 112px 0px 120px;
    z-index: 1;
}

.login-one .container {
    max-width: 620px;
}

.login-one__form {
    position: relative;
    display: block;
}

.login-one__form .inner-title {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
    font-size: 60px;
    line-height: 1.0em;
    font-weight: 700;
}

.login-one__form form {
    position: relative;
    display: block;
    background-color: var(--logistiq-white);
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
    padding: 60px 50px 52px;
}

.login-one__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.login-one__form form .input-box {
    position: relative;
    display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"] {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid var(--logistiq-gray-bg);
    background-color: var(--logistiq-gray-bg);
    width: 100%;
    height: 60px;
    color: var(--logistiq-gray);
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus {
    border-color: var(--logistiq-base);
    background-color: var(--logistiq-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--logistiq-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
    color: var(--logistiq-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
    color: var(--logistiq-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--logistiq-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--logistiq-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
    color: var(--logistiq-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
    color: var(--logistiq-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--logistiq-gray);
}

.login-one__form form .thm-btn {
    line-height: 59px;
    width: 100%;
}


.login-one__form form .remember-forget {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}

.login-one__form form .checked-box1 label {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"]+label span {
    top: 6px;
    width: 15px;
    height: 15px;
    background-color: var(--thm-white);
    border: 1px solid var(--logistiq-base);
    border-radius: 2px;
}

.login-one__form form .checked-box1 label span:before {
    top: 3px;
    left: 3px;
    bottom: 3px;
    right: 3px;
    width: auto;
    height: auto;
    content: "";
    background: var(--logistiq-base);
    border-radius: 0%;
    margin: 0px;
}

.login-one__form form .forget {
    position: relative;
    display: block;
}

.login-one__form form .forget a {
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--logistiq-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
    color: var(--logistiq-base);
}

.login-one__form form .create-account {
    position: relative;
    display: block;
    padding-top: 25px;
}

.login-one__form form .create-account p {
    color: var(--logistiq-black);
}

.login-one__form form .create-account p a {
    color: var(--logistiq-base);
    font-weight: 500;
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
    position: relative;
    display: block;
    z-index: 1;
}

.video-one__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.video-one__main-content {
    position: relative;
    display: block;
    z-index: 1;
}

.video-one__main-content-inner {
    position: relative;
    display: block;
    min-height: 670px;
    z-index: 1;
}

.video-one__main-content-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.video-one__main-content-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--tecture-black-rgb), .20);
    z-index: -1;
}

.video-one__thumb-box {
    position: absolute;
    top: 50%;
    right: 150px;
    width: 215px;
    height: 385px;
    overflow: hidden;
    transform: translateY(-50%);
    z-index: 99999999;
}

#video-one__thumb {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
}

@media (max-width: 767px) {
    #video-one__thumb {
        display: none;
    }
}

.video-one__img-holder-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    height: 115px;
    overflow: hidden;
    z-index: 1;
}

.video-one__img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 500ms ease;
    width: 215px;
    height: 115px;
    cursor: pointer;
    z-index: 1;
}

.video-one__img-holder:before {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    background-color: rgba(var(--tecture-black-rgb), 0);
    z-index: 1;
    transition: all 500ms ease;
}

.swiper-slide-active .video-one__img-holder:before,
.swiper-slide-thumb-active .video-one__img-holder:before {
    background-color: rgba(var(--tecture-black-rgb), .50);
}

.video-one__img-holder>img {
    width: 100%;
    transition: all 0.5s ease-in-out 0.6s;
}

.video-one__nav {
    display: none;
}


.video-one__curved-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 145px;
    width: 145px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}

.video-one__curved-circle .curved-circle {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    color: var(--tecture-white);
    text-transform: uppercase;
    letter-spacing: 0.29em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: var(--tecture-font);
    font-weight: 700;
    font-style: italic;
    height: 145px !important;
    width: 145px;
}

.video-one__video-link {
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}

.video-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 20px;
    color: var(--tecture-white);
    background-color: var(--tecture-base);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.video-one__video-icon:hover {
    color: var(--tecture-white);
    background-color: var(--tecture-black);
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Awards One
--------------------------------------------------------------*/
.awards-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 226px;
    border-bottom: 1px solid var(--tecture-bdr-color);
    z-index: 1;
}

.awards-one .section-title__title--two {
    margin-left: 130px;
}

.awards-one__left {
    position: relative;
    display: block;
    margin-right: -30px;
}

.awards-one__list {
    position: relative;
    display: block;
}

.awards-one__list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid var(--tecture-bdr-color);
    border-bottom: 1px solid var(--tecture-bdr-color);
    padding: 40px 0 40px;
}

.awards-one__list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.awards-one__title-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.awards-one__title-circle-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 1px solid var(--tecture-bdr-color);
}

.awards-one__title-circle-box p {
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    color: var(--tecture-white);
    line-height: 30px;
}

.awards-one__title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    font-style: italic;
    margin-left: 50px;
}

.awards-one__year {
    position: relative;
    display: block;
}

.awards-one__year p {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    font-style: italic;
    color: var(--tecture-white);
}

.awards-one__arrow {
    position: relative;
    display: block;
}

.awards-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border: 1px solid var(--tecture-bdr-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--tecture-base);
}

.awards-one__arrow a:hover {
    background-color: var(--tecture-base);
    color: var(--tecture-black);
}

.awards-one__right {
    position: relative;
    display: block;
    margin-left: 68px;
    margin-right: 42px;
}

.awards-one__img-box {
    position: relative;
    display: block;
}

.awards-one__img {
    position: relative;
    display: block;
}

.awards-one__img img {
    width: 100%;
}

.awards-one__img-two {
    position: absolute;
    bottom: -106px;
    right: -40px;
}

.awards-one__img-two img {
    width: auto
}
























/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Design Interior
--------------------------------------------------------------*/
.design-interior {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    border-bottom: 1px solid var(--tecture-bdr-color);
    z-index: 1;
}

.design-interior__inner {
    position: relative;
    display: block;
}

.design-interior__left {
    position: relative;
    display: block;
    background-color: var(--tecture-black);
    margin-top: 55px;
    margin-right: 43px;
    padding: 101px 80px 29px;
    z-index: 1;
}

.design-interior__left:before {
    content: "";
    position: absolute;
    top: -60px;
    left: 90px;
    right: 420px;
    height: 1px;
    background-color: var(--tecture-base);
}

.design-interior__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.design-interior__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -35px;
}

.design-interior__list li {
    position: relative;
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    padding: 0 35px;
    margin-bottom: 65px;
}

.design-interior__single {
    position: relative;
    display: block;
}

.design-interior__title {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    line-height: 38px;
    border-bottom: 1px solid var(--tecture-base);
    margin-bottom: 23px;
    padding-bottom: 22px;
}

.design-interior__title a {
    color: var(--tecture-white);
}

.design-interior__title a:hover {
    color: var(--tecture-base);
}

.design-interior__right {
    position: relative;
    display: block;
    margin-left: -373px;
}

.design-interior__img {
    position: relative;
    display: block;
}

.design-interior__img img {
    width: 100%;
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/***
=============================================
Banner One
=============================================
***/
.banner-one {
    position: relative;
    display: block;
    background: rgb(18, 33, 38);
    background: linear-gradient(90deg, rgba(18, 33, 38, 1) 0%, rgba(18, 33, 38, 1) 35%, rgba(10, 44, 54, 1) 60%, rgba(10, 44, 54, 1) 100%);
    padding: 512px 0px 94px;
    z-index: 2;
}

.banner-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.02;
    z-index: -1;
}

.banner-one__pattern2 {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: -1;
}

.banner-one .shape1 {
    position: absolute;
    left: -240px;
    bottom: -25px;
    z-index: -1;
}

.banner-one__img1 {
    position: absolute;
    bottom: -40px;
    right: -35px;
    z-index: 1;
}

.banner-one__img5 {
    position: absolute;
    bottom: -65px;
    right: 0;
    z-index: 1;
}




.banner-one__location {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1030px;
    min-height: 470px;
    margin: 0 auto;
    z-index: 7;
}

.banner-one__location-single {}


.banner-one__location-single.style1 {
    position: absolute;
    top: 115px;
    left: 40px;
}

.banner-one__location-single.style2 {
    position: absolute;
    top: 100px;
    left: 360px;
}

.banner-one__location-single.style3 {
    position: absolute;
    top: 230px;
    left: 450px
}

.banner-one__location-single.style4 {
    position: absolute;
    left: 315px;
    bottom: 150px;
}

.banner-one__location-single.style5 {
    position: absolute;
    left: 350px;
    bottom: 145px;
}

.banner-one__location-single.style6 {
    position: absolute;
    top: 300px;
    right: 400px;
}

.banner-one__location-single.style7 {
    position: absolute;
    right: 300px;
    bottom: 32px;
}

.banner-one__location-single.style8 {
    position: absolute;
    top: 115px;
    right: 25px;
}


.banner-one__location-single .round-box {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    background: var(--logistiq-base);
    border-radius: 50%;
    cursor: pointer;
}

.banner-one__location-single .round-box::before,
.banner-one__location-single .round-box::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: transparent;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    transition: all .4s ease;
}

.banner-one__location-single .round-box::after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.banner-one__location-single .round-box .bdr {
    position: absolute;
    top: -7px;
    left: -7px;
    bottom: -7px;
    right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--logistiq-base);
    border-radius: 50%;
    content: "";
}


/* *** UPDATED: Hover effect removed, making content visible by default *** */
.banner-one__location-single .content-box {
    position: absolute;
    height: 70px;
    top: 55px;
    left: 50%;
    background: var(--logistiq-white);
    padding: 0px 15px 18px;
    border: 2px solid var(--logistiq-base);
    text-align: center;
    transition: all 0.2s ease;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: 100px;
    z-index: 10;
}

/* YEH HOVER RULE HATA DIYA GAYA HAI JAISE AAPNE KAHA THA */
/*
.banner-one__location-single:hover .content-box {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible;
}
*/
/* ************************************************************************* */


.banner-one__location-single .content-box::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 65px;
    border-bottom: 25px solid var(--logistiq-white);
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    z-index: 1;
}

.banner-one__location-single .content-box::after {
    content: "";
    position: absolute;
    top: -27px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 65px;
    border-bottom: 25px solid var(--logistiq-base);
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    z-index: -1;
}

.banner-one__location-single .content-box .img-box {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e4e4e4;
    padding: 3px 3px 3px;
    margin: -6px auto 8px;
    z-index: 2;
}

.banner-one__location-single .content-box .img-box img {
    width: 100%;
}

.banner-one__location-single .content-box .text-box {
    position: relative;
    display: block;
}

.banner-one__location-single .content-box .text-box h4 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.banner-one__location-single .content-box .text-box p {
    color: var(--logistiq-black);
    font-size: 15px;
    line-height: 24px;
}



.banner-one__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-one__content-left {
    position: relative;
    display: block;
    text-align: right;
}

.banner-one__content-left-ar {
    position: relative;
    display: block;
    text-align: left;
}

.banner-one__content-left h2 {
    color: var(--logistiq-white);
    font-size: 74px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 27px;
}

.banner-one__content-left-ar h2 {
    color: var(--logistiq-white);
    font-size: 74px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 27px;
}

.banner-one__content-left h2 span {
    color: var(--logistiq-base);
}

.banner-one__content-left-ar h2 span {
    color: var(--logistiq-base);
}

.banner-one__content-left p {
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

.banner-one__content-left-ar p {
    color: var(--logistiq-white);
    font-size: 25px;
    line-height: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

.banner-one__content-right {
    position: relative;
    display: block;
    padding-left: 40px;
    margin-left: 40px;
}

.banner-one_ar__content-right {
    position: relative;
    display: block;
    padding-right: 40px;
    margin-right: 40px;
}

.banner-one__content-right::before {
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 0px;
    width: 2px;
    background: var(--logistiq-base);
    content: "";
}

.banner-one_ar__content-right::before {
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 0px;
    width: 2px;
    background: var(--logistiq-base);
    content: "";
}

.banner-one__content-right-text {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.banner-one__content-right-text p {
    color: #E4E4E4;
    font-size: 20px;
    line-height: 34px;
}

.banner-one__content-right-middle {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-one__content-right-middle ul {
    position: relative;
    display: block;
}

.banner-one__content-right-middle ul li {
    position: relative;
    display: block;
    float: left;
}

.banner-one__content-right-middle ul li+li {
    margin-left: -20px;
}

.banner-one__content-right-middle ul li .img-box {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--logistiq-base);
}

.banner-one__content-right-middle ul li .img-box img {
    width: 100%;
}

.banner-one__content-right-middle .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
    flex: 1;
}

.banner-one__content-right-middle .text-box h2 {
    color: var(--logistiq-white);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.banner-one__content-right-middle .text-box p {
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.banner-one__content-right-btn {
    position: relative;
    display: block;
    margin-top: 30px;
    line-height: 0;
}

.banner-one__content-right-btn .hover-btn {
    background-color: var(--logistiq-white);
}

.banner-one__content-right-btn .thm-btn:hover {
    color: var(--logistiq-black);
}


/***
=============================================
Banner Two
=============================================
***/
.banner-two {
    position: relative;
    display: block;
    background: var(--logistiq-black);
    padding: 83px 0px 100px;
    z-index: 3;
}

.banner-two__img1 {
    position: absolute;
    top: 30px;
    right: -45px;
    z-index: 1;
}

.banner-two__img1::before {
    position: absolute;
    top: 15px;
    left: -23px;
    bottom: -20px;
    right: 0;
    border: 1px solid var(--logistiq-white);
    border-top-left-radius: 122px;
    border-top-right-radius: 122px;
    content: "";
    z-index: -1;
}

.banner-two__img1 .inner {
    position: relative;
    display: block;
    border-top-left-radius: 122px;
    border-top-right-radius: 122px;
    overflow: hidden;
}

.banner-two__img1 .inner img {
    width: 100%;
}

.banner-two__img2 {
    position: absolute;
    left: 0;
    bottom: -215px;
    z-index: 1;
}

.banner-two .shape1 {
    position: absolute;
    top: 100px;
    right: 170px;
    z-index: -1;
}

.banner-two .shape2 {
    position: absolute;
    top: 105px;
    right: 25px;
    opacity: 0.15;
    z-index: -1;
}

.banner-two__content {
    position: relative;
    display: block;
}

.banner-two__content-top {
    position: relative;
    display: block;
}

.banner-two__content-top .title-box {
    position: relative;
    display: block;
    max-width: 900px;
    width: 100%;
}

.banner-two__content-top .title-box h2 {
    color: var(--logistiq-white);
    font-size: 74px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    text-align: right;
}

.banner-two__content-top .title-box h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(var(--logistiq-white-rgb), 0.4);
    font-size: 95px;
}

.banner-two__content-bottom {
    position: relative;
    display: block;
    max-width: 690px;
    width: 100%;
    float: right;
    margin-top: 69px;
}

.banner-two__content-bottom .text-box {
    position: relative;
    display: block;
}

.banner-two__content-bottom .text-box p {
    color: #E4E4E4;
}

.banner-two__tab-box {
    position: relative;
    display: block;
    margin-top: 42px;
}

.banner-two__tab-box .tab-buttons {
    position: relative;
    display: block;
}

.banner-two__tab-box .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    background: var(--logistiq-white);
    padding: 8px 20px 7px;
    cursor: pointer;
    z-index: 1;
}

.banner-two__tab-box .tab-buttons .tab-btn:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    content: "";
    background: var(--logistiq-base);
    border-radius: 0px;
    transition: all 0.3s ease;
    z-index: -1;
}

.banner-two__tab-box .tab-buttons .tab-btn.active-btn:before {
    height: 100%;
}

.banner-two__tab-box .tab-buttons .tab-btn p {
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.banner-two__tab-box .tab-buttons .tab-btn.active-btn p {
    color: var(--logistiq-white);
}

.banner-two__tab-box .tabs-content {
    position: relative;
    display: block;
    z-index: 1;
}

.banner-two__tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    transition: all 900ms ease;
    z-index: 10;
}

.banner-two__tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.banner-two__tab-form-box {
    position: relative;
    display: block;
}

.banner-two__tab-form {
    position: relative;
    display: block;
    margin-top: 10px;
}

.banner-two__tab-form-input-box {
    position: relative;
    display: block;
}

.banner-two__tab-form-input-box input[type="email"] {
    color: var(--logistiq-white);
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    width: 100%;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--logistiq-base);
    border-radius: 0px;
    padding-right: 80px;
    padding-left: 20px;
}

.banner-two__tab-form-btn {
    position: absolute;
    top: 40%;
    right: 5px;
    transform: translateY(-50%);
    border: none;
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--logistiq-white);
    background-color: var(--logistiq-base);
    border-radius: 0%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-two__tab-form-btn span {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.banner-two__tab-form-btn:hover {
    color: var(--logistiq-base);
    background-color: var(--logistiq-white);
}


/***
=============================================
Slider One
=============================================
***/
.slider-one {
    position: relative;
    display: block;
    margin-top: -67px;
    z-index: 1;
}

.slider-one__single {
    position: relative;
    display: block;
    z-index: 1;
}

.slider-one__single .shape1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 365px;
    height: 50%;
    background-color: rgba(var(--logistiq-black-rgb), 0.8);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 0%);
    mix-blend-mode: color-dodge;
    -moz-transform: skew(0deg, 0deg) translateX(100%);
    -webkit-transform: skew(0deg, 0deg) translateX(100%);
    -o-transform: skew(0deg, 0deg) translateX(100%);
    -ms-transform: skew(0deg, 0deg) translateX(100%);
    transform: skew(0deg, 0deg) translateX(100%);
    opacity: 0;
    -webkit-transition: all 1800ms ease;
    -moz-transition: all 1800ms ease;
    -ms-transition: all 1800ms ease;
    -o-transition: all 1800ms ease;
    transition: all 1800ms ease;
    z-index: 10;
}

.slider-one .active .slider-one__single .shape1 {
    opacity: 1;
    -moz-transform: skew(0deg, 0deg) translate(0);
    -webkit-transform: skew(0deg, 0deg) translate(0);
    -o-transform: skew(0deg, 0deg) translate(0);
    -ms-transform: skew(0deg, 0deg) translate(0);
    transform: skew(0deg, 0deg) translate(0);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.slider-one__single .shape2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 390px;
    height: 53%;
    background-color: rgba(var(--logistiq-black-rgb), 0.8);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 0%);
    mix-blend-mode: color-dodge;
    -moz-transform: skew(0deg, 0deg) translateX(100%);
    -webkit-transform: skew(0deg, 0deg) translateX(100%);
    -o-transform: skew(0deg, 0deg) translateX(100%);
    -ms-transform: skew(0deg, 0deg) translateX(100%);
    transform: skew(0deg, 0deg) translateX(100%);
    opacity: 0;
    -webkit-transition: all 1800ms ease;
    -moz-transition: all 1800ms ease;
    -ms-transition: all 1800ms ease;
    -o-transition: all 1800ms ease;
    transition: all 1800ms ease;
    z-index: 10;
}

.slider-one .active .slider-one__single .shape2 {
    opacity: 1;
    -moz-transform: skew(0deg, 0deg) translate(0);
    -webkit-transform: skew(0deg, 0deg) translate(0);
    -o-transform: skew(0deg, 0deg) translate(0);
    -ms-transform: skew(0deg, 0deg) translate(0);
    transform: skew(0deg, 0deg) translate(0);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.slider-one__single .shape3 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 365px;
    height: 50%;
    background-color: rgba(var(--logistiq-black-rgb), 0.8);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    mix-blend-mode: color-dodge;
    -moz-transform: skew(0deg, 0deg) translateX(100%);
    -webkit-transform: skew(0deg, 0deg) translateX(100%);
    -o-transform: skew(0deg, 0deg) translateX(100%);
    -ms-transform: skew(0deg, 0deg) translateX(100%);
    transform: skew(0deg, 0deg) translateX(100%);
    opacity: 0;
    -webkit-transition: all 1800ms ease;
    -moz-transition: all 1800ms ease;
    -ms-transition: all 1800ms ease;
    -o-transition: all 1800ms ease;
    transition: all 1800ms ease;
    z-index: 10;
}

.slider-one .active .slider-one__single .shape3 {
    opacity: 1;
    -moz-transform: skew(0deg, 0deg) translate(0);
    -webkit-transform: skew(0deg, 0deg) translate(0);
    -o-transform: skew(0deg, 0deg) translate(0);
    -ms-transform: skew(0deg, 0deg) translate(0);
    transform: skew(0deg, 0deg) translate(0);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.slider-one__single .shape4 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 390px;
    height: 53%;
    background-color: rgba(var(--logistiq-black-rgb), 0.8);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    mix-blend-mode: color-dodge;
    -moz-transform: skew(0deg, 0deg) translateX(100%);
    -webkit-transform: skew(0deg, 0deg) translateX(100%);
    -o-transform: skew(0deg, 0deg) translateX(100%);
    -ms-transform: skew(0deg, 0deg) translateX(100%);
    transform: skew(0deg, 0deg) translateX(100%);
    opacity: 0;
    -webkit-transition: all 1800ms ease;
    -moz-transition: all 1800ms ease;
    -ms-transition: all 1800ms ease;
    -o-transition: all 1800ms ease;
    transition: all 1800ms ease;
    z-index: 10;
}

.slider-one .active .slider-one__single .shape4 {
    opacity: 1;
    -moz-transform: skew(0deg, 0deg) translate(0);
    -webkit-transform: skew(0deg, 0deg) translate(0);
    -o-transform: skew(0deg, 0deg) translate(0);
    -ms-transform: skew(0deg, 0deg) translate(0);
    transform: skew(0deg, 0deg) translate(0);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.slider-one__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--logistiq-black);
    background-blend-mode: luminosity;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 6000ms linear;
    -moz-transition: all 6000ms linear;
    -ms-transition: all 6000ms linear;
    -o-transition: all 6000ms linear;
    transition: all 6000ms linear;
    z-index: -1;
}

.slider-one .active .slider-one__single-bg {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.slider-one__single-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--logistiq-black-rgb), 0.7);
    content: "";
    z-index: -2;
}

.slider-one__single-inner {
    position: relative;
    display: block;
    padding: 241px 0px 210px;
}

.slider-one__single-content {
    position: relative;
    display: block;
    max-width: 700px;
    width: 100%;
}

.slider-one__single-content .tagline {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.slider-one .active .slider-one__single-content .tagline {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.slider-one__single-content .tagline .round {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    background: var(--logistiq-base);
    border-radius: 50%;
    margin-right: 7px;
}

.slider-one__single-content .tagline .text {
    position: relative;
    display: block;
}

.slider-one__single-content .tagline .text span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--logistiq-white);
    letter-spacing: 0.02em;
}

.slider-one__single-content .title-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.slider-one .active .slider-one__single-content .title-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.slider-one__single-content .title-box h2 {
    color: var(--logistiq-white);
    font-size: 82px;
    line-height: 1em;
    font-weight: 700;
    text-transform: capitalize;
}

.slider-one__single-content .title-box h2 span {
    color: var(--logistiq-base);
}

.slider-one__single-content .text-box {
    position: relative;
    display: block;
    margin-bottom: 52px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.slider-one .active .slider-one__single-content .text-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.slider-one__single-content .text-box p {
    color: var(--logistiq-white);
}

.slider-one__single-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.slider-one .active .slider-one__single-content .btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}


.slider-one__carousel.owl-theme .owl-nav {
    position: absolute;
    top: 39%;
    left: 0px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    z-index: 3;
}

.slider-one__carousel:hover.owl-theme .owl-nav {
    opacity: 1;
    left: 70px;
    transform: scaleX(1.0) translateX(0px);
}

.slider-one__carousel.owl-theme .owl-prev span,
.slider-one__carousel.owl-theme .owl-next span {
    display: block;
}

.slider-one__carousel.owl-theme .owl-nav .owl-prev,
.slider-one__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
    background: rgba(255, 255, 255, .3);
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.slider-one__carousel.owl-theme .owl-nav .owl-prev {
    margin-bottom: 10px;
}

.slider-one__carousel.owl-theme .owl-nav .owl-prev::before,
.slider-one__carousel.owl-theme .owl-nav .owl-next::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.7);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    opacity: 0;
}

.slider-one__carousel.owl-theme .owl-nav .owl-prev:hover::before,
.slider-one__carousel.owl-theme .owl-nav .owl-next:hover:before {
    transform: scaleX(1.0);
    opacity: 1;
}

.slider-one__carousel.owl-theme .owl-prev span:before,
.slider-one__carousel.owl-theme .owl-next span:before {
    position: relative;
    display: inline-block;
    line-height: 60px;
    font-weight: 400;
    transition: all 100ms ease;
}

.slider-one__carousel.owl-theme .owl-nav .owl-next {
    transform: rotate(0deg);
}

.slider-one__carousel.owl-theme .owl-nav .owl-prev:hover,
.slider-one__carousel.owl-theme .owl-nav .owl-next:hover {
    color: var(--logistiq-black);
}

.slider-one__carousel.owl-theme .owl-next span:before {
    position: relative;
    top: 1px;
}





@media only screen and (max-width: 767px) {

   

    .banner-one {
        padding: 300px 15px 50px;
    }

    .banner-one__location {
        min-height: 300px;
        max-width: 95%;
    }

    
    .banner-one__content {
        display: block;
    }

    .banner-one__content-left,
    .banner-one__content-left-ar {
        text-align: left;
    }

   
    .banner-one__content-right {
        padding-left: 0;
        margin-left: 0;
        margin-top: 20px;
    }

    .banner-one_ar__content-right {
        padding-right: 0;
        margin-right: 0;
        margin-top: 20px;
    }

    .banner-one__content-right::before,
    .banner-one_ar__content-right::before {
        display: none;
    }


    
    .banner-one__content-left h2,
    .banner-one__content-left-ar h2 {
        font-size: 40px;
        line-height: 1.2em;
        margin-bottom: 15px;
    }

    .banner-one__content-left p,
    .banner-one__content-left-ar p {
        font-size: 14px;
        line-height: 18px;
    }

    .banner-one__content-right-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .banner-one__content-right-middle .text-box h2 {
        font-size: 20px;
    }


    
    .banner-one__location-single.style1,
    .banner-one__location-single.style4,
    .banner-one__location-single.style8 {
        display: none !important;
    }

    .banner-one__location-single.style2 {
        left: 80px !important;
        top: 60px;
    }

    .banner-one__location-single.style5 {
        top: 200px;
        left: 103px !important;
       
       
    }

    
    .banner-one__location-single.style3 {
        left: 193px !important;
        top: 154px
    }

    
    .banner-one__location-single.style6 {
        top: 65%;
        right: 30%;
        left: auto;
        bottom: auto;
        display: block !important;
    }

    
    .banner-one__location-single.style7 {
        right: auto;
        left: 305px !important;
        top: 290px !important;
        
    }



    .banner-one__location-single .content-box {
        height: 55px;
        top: 35px;
        padding: 0px 8px 8px;
        width: 75px;
        border-width: 1px;
    }

    .banner-one__location-single .content-box .img-box {
        width: 30px;
        height: 30px;
        margin: -3px auto 3px;
    }

   
    .banner-one__location-single .content-box::before {
        top: -10px;
        border-bottom: 15px solid var(--logistiq-white);
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        width: 30px;
    }

    .banner-one__location-single .content-box::after {
        top: -16px;
        border-bottom: 15px solid var(--logistiq-base);
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        width: 30px;
    }

    .banner-one__location-single .content-box .text-box h4 {
        font-size: 11px;
        line-height: 12px;
    }

    .banner-one__location-single .content-box .text-box p {
        display: none;
        
    }

    .banner-one__location-single .round-box::before,
    .banner-one__location-single .round-box::after {
        width: 25px;
        height: 25px;
    }

    .banner-one__pattern2 {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: -1;
}
}


/***
=============================================
Cta One
=============================================
***/
.cta-one {
    position: relative;
    display: block;
    z-index: 1;
}

.cta-one::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 200px;
    background: var(--logistiq-gray-bg);
    content: "";
    z-index: -1;
}

.cta-one__inner {
    position: relative;
    display: block;
    background: var(--logistiq-black);
    padding: 65px 95px 75px;
    border-radius: 3px;
    z-index: 1;
}

.cta-one__img {
    position: absolute;
    right: 185px;
    bottom: 0;
    z-index: 1;
}

.cta-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.15;
    z-index: -1;
}

.cta-one__inner .shape1 {
    position: absolute;
    top: 175px;
    left: 460px;
    z-index: -1;
}

.cta-one__inner .shape2 {
    position: absolute;
    bottom: 0;
    right: 130px;
}

.cta-one__inner .shape3 {
    position: absolute;
    bottom: 0;
    right: 90px;
    z-index: -1;
}

.cta-one__content {
    position: relative;
    display: block;
}

.cta-one__content h2 {
    color: var(--logistiq-white);
    font-size: 42px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-one__content h2 span {
    color: var(--logistiq-base);
}

.cta-one__content p {
    color: var(--logistiq-white);
}

.cta-one__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 37px;
}

.cta-one__content .btn-box .hover-btn {
    background-color: var(--logistiq-white);
}

.cta-one__content .btn-box .thm-btn:hover {
    color: var(--logistiq-black);
}
/***
=============================================
Features One
=============================================
***/
.features-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 0px;
    z-index: 1;
}

.features-one__single {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--logistiq-base);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.features-one__single-icon {
    position: relative;
    display: block;
    width: 110px;
    height: 100%;
    background: var(--logistiq-base);
    padding: 25px 0px 26px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-left: 10px;
}

.features-one__single-icon .icon {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.features-one__single-icon .icon span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 60px;
    line-height: 60px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.features-one__single:hover .features-one__single-icon .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.features-one__single-icon .text-box {
    position: relative;
    display: block;
}

.features-one__single-icon .text-box h2 {
    font-size: 40px;
    line-height: 50px;
    color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: var(--logistiq-white);
    font-weight: 700;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.features-one__single-content {
    position: relative;
    display: block;
    padding: 32px 30px 32px;
    flex: 1;
}

.features-one__single-content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.features-one__single-content h2 a {
    color: var(--logistiq-black);
}

.features-one__single-content h2 a:hover {
    color: var(--logistiq-base);
}

.features-one__single-content p {
    margin: 0;
}

/***
=============================================
Pricing One
=============================================
***/
.pricing-one {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 120px 0px 210px;
    z-index: 1;
}

.pricing-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: repeat;
    background-position: center center;
    opacity: 0.9;
    z-index: -1;
}

.pricing-one__single {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 15px 15px 15px;
    margin-bottom: 30px;
}

.pricing-one__single-inner {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 45px 50px 45px;
}

.pricing-one__single-inner .table-header {
    position: relative;
    display: block;
}

.pricing-one__single-inner .table-header .img-box {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 200px;
    margin: 0 auto 31px;
    overflow: hidden;
}

.pricing-one__single-inner .table-header .img-box::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--logistiq-black-rgb), 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

.pricing-one__single:hover .pricing-one__single-inner .table-header .img-box::before {
    opacity: 1;
}

.pricing-one__single-inner .table-header .img-box img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.pricing-one__single:hover .pricing-one__single-inner .table-header .img-box img {
    transform: scale(1);
}

.pricing-one__single-inner .table-header .title-box {
    position: relative;
    display: block;
}

.pricing-one__single-inner .table-header .title-box h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.pricing-one__single-inner .table-header .title-box h3 {
    color: var(--logistiq-base);
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
}

.pricing-one__single-inner .table-header .title-box h3 span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-black);
    font-size: 14px;
    font-weight: 700;
    margin-left: -3px;
}

.pricing-one__single-inner .table-content {
    position: relative;
    display: block;
    margin-top: 31px;
}

.pricing-one__single-inner .table-content ul {
    position: relative;
    display: block;
}

.pricing-one__single-inner .table-content ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.pricing-one__single-inner .table-content ul li+li {
    margin-top: 7px;
}

.pricing-one__single-inner .table-content ul li .icon {
    position: relative;
    display: block;
}

.pricing-one__single-inner .table-content ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 15px;
    line-height: 15px;
}

.pricing-one__single-inner .table-content ul li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 10px;
}

.pricing-one__single-inner .table-content ul li .text-box p {
    margin: 0;
}

.pricing-one__single-inner .table-footer {
    position: relative;
    display: block;
}

.pricing-one__single-inner .table-footer .btn-box {
    position: relative;
    display: block;
    margin-top: 28px;
    line-height: 0px;
}

/***
=============================================
Pricing One Pricing
=============================================
***/
.pricing-one--pricing {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
}

/***
=============================================
Brand One Pricing
=============================================
***/
.brand-one--pricing {
    position: relative;
    display: block;
    background: var(--logistiq-white);
}

.brand-one--pricing .brand-one__single-inner::before {
    background: var(--logistiq-gray-bg);
}

/***
=============================================
Project One
=============================================
***/
.project-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 150px;
    z-index: 1;
}

.project-one__title {
    position: relative;
    display: block;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    padding: 49px 55px 49px;
    padding-right: 20px;
    margin-bottom: 30px;
}

.project-one__title .sec-title {
    padding-bottom: 29px;
}

.project-one__title .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-one__single-img {
    position: relative;
    display: block;
}

.project-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000000;
    border-radius: 10px;
}

.project-one__single-img .inner img {
    width: 100%;
    transition: all 500ms ease;
}

.project-one__single:hover .project-one__single-img .inner img {
    opacity: 0.5;
    transform: scaleX(1.05);
}

.project-one__overlay-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 5px solid var(--logistiq-base);
    padding: 9px 20px 12px;
    padding-right: 0px;
    -webkit-transform: perspective(400px) rotateX(35deg) scaleY(0.3);
    -ms-transform: perspective(400px) rotateX(35deg) scaleY(0.3);
    transform: perspective(400px) rotateX(35deg) scaleY(0.3);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 0;
    z-index: 3;
}

.project-one__single:hover .project-one__overlay-content {
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
}

.project-one__overlay-content::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 20px;
    background: var(--logistiq-white);
    border-top-right-radius: 42px;
    border-bottom-right-radius: 42px;
    content: "";
    z-index: -1;
}

.project-one__overlay-content .text-box {
    position: relative;
    display: block;
}

.project-one__overlay-content .text-box p {
    color: var(--logistiq-base);
}

.project-one__overlay-content .text-box h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 5px;
}

.project-one__overlay-content .text-box h2 a {
    color: var(--logistiq-black);
}

.project-one__overlay-content .text-box h2 a:hover {
    color: var(--logistiq-base);
}

.project-one__overlay-content .icon {
    position: relative;
    display: block;
}

.project-one__overlay-content .icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: var(--logistiq-base);
}

.project-one__overlay-content .icon a span {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.project-one__overlay-content .icon a span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 15px;
    font-weight: 700;
}

/***
=============================================
Project Two
=============================================
***/
.project-one--two {
    position: relative;
    display: block;
    padding-bottom: 158px;
}

/***
=============================================
Project One Project
=============================================
***/
.project-one--project {
    position: relative;
    display: block;
    padding-bottom: 90px;
}

/***
=============================================
Project Details
=============================================
***/
.project-details {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.project-details__inner {
    position: relative;
    display: block;
}

.project-details__img1 {
    position: relative;
    display: block;
}

.project-details__img1 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-details__img1 .inner img {
    width: 100%;
}

.project-details__img1-content {
    position: absolute;
    top: -30px;
    left: 110px;
    max-width: 425px;
    width: 100%;
    z-index: 2;
}

.project-details__img1-content .title-box {
    position: relative;
    display: block;
    background: var(--logistiq-base);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 32px 55px 32px;
}

.project-details__img1-content .title-box h2 {
    color: var(--logistiq-white);
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
}

.project-details__img1-content-list {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 5px 30px 6px;
}

.project-details__img1-content-list ul {
    position: relative;
    display: block;
}

.project-details__img1-content-list ul li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(var(--logistiq-black-rgb), 0.1);
    padding-top: 17px;
    padding-bottom: 16px;
}

.project-details__img1-content-list ul li:last-child {
    border-bottom: none;
}

.project-details__img1-content-list ul li .title {
    position: relative;
    display: block;
    width: 140px;
}

.project-details__img1-content-list ul li .title h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.project-details__img1-content-list ul li .text {
    position: relative;
    display: block;
    flex: 1;
}

.project-details__img1-content-list ul li .text p {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
}

.project-details__img1-content-list ul li .text p a {
    color: var(--logistiq-gray);
}

.project-details__img1-content-list ul li .text p a:hover {
    color: var(--logistiq-base);
}

.project-details__img1-content-list ul li .social-links {
    position: relative;
    display: block;
}

.project-details__img1-content-list ul li .social-links a {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
}

.project-details__img1-content-list ul li .social-links a+a {
    margin-left: 7px;
}

.project-details__img1-content-list ul li .social-links a:hover {
    color: var(--logistiq-black);
}

.project-details__img1-content-list ul li .social-links a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.project-details__text1 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.project-details__text1 h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 31px;
}

.project-details__text1 p {
    margin: 0;
}

.project-details__text2 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.project-details__text2-img {
    position: relative;
    display: block;
    max-width: 620px;
    width: 100%;
}

.project-details__text2-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-details__video-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.project-details__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: var(--logistiq-white);
    background-color: var(--logistiq-base);
    border: 0px solid var(--logistiq-black);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 1;
}

.project-details__video-icon:hover {
    background-color: var(--logistiq-white);
    color: var(--logistiq-black);
}

.project-details__video-link .ripple,
.project-details__video-icon .ripple:before,
.project-details__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--logistiq-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.project-details__video-icon .ripple:before {
    position: absolute;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
}

.project-details__video-icon .ripple:after {
    position: absolute;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
}

.project-details__text2-img .inner img {
    width: 100%;
}



.project-details__text2-content {
    position: relative;
    display: block;
}

.project-details__text2-content h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 26px;
}

.project-details__text2-content p {
    margin: 0;
}

.project-details__text2-content ul {
    position: relative;
    display: block;
    margin-top: 32px;
}

.project-details__text2-content ul li {
    position: relative;
    display: block;
    margin-bottom: 9px;
}

.project-details__text2-content ul li:last-child {
    margin-bottom: 0px;
}

.project-details__text2-content ul li p {
    margin: 0;
}

.project-details__text2-content ul li p span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 22px;
    line-height: 22px;
    top: 3px;
    margin-right: 5px;
}

.project-details__text3 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.project-details__text3 p {
    margin: 0;
}

.project-details__text3 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 42px;
}

.project-details__text3 .img-box img {
    width: 100%;
}

.project-details__previous-next {
    position: relative;
    display: block;
    margin-top: 60px;
}

.project-details__previous-next ul {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--logistiq-black-rgb), 0.1);
    padding: 15px 20px 15px;
}

.project-details__previous-next ul li {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
}

.project-details__previous-next ul li::before {
    position: absolute;
    top: -16px;
    right: 0;
    bottom: -16px;
    width: 2px;
    background: rgba(var(--logistiq-black-rgb), 0.1);
    content: "";
}

.project-details__previous-next ul li:last-child:before {
    display: none;
}

.project-details__previous-next ul li:nth-child(2) {
    float: right;
    text-align: right;
}

.project-details__previous-next ul li:nth-child(2) .text-box {
    margin-left: 0px;
    margin-right: 20px;
}

.project-details__previous-next ul li:nth-child(2) .icon a {
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon {
    position: relative;
    display: block;
}

.project-details__previous-next ul li .icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    background: var(--logistiq-base);
    color: var(--logistiq-white);
    clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon a:hover {
    background: var(--logistiq-black);
}

.project-details__previous-next ul li .icon a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
}

.project-details__previous-next ul li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.project-details__previous-next ul li .text-box a {
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.project-details__previous-next ul li .text-box a:hover {
    color: var(--logistiq-base);
}

.project-one--project-details {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 90px;
}

.project-one--project-details .title-box {
    position: relative;
    display: block;
    padding-bottom: 49px;
    margin-top: -11px;
}

.project-one--project-details .title-box h2 {
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    text-transform: capitalize;
}

/***
=============================================
Quote One
=============================================
***/
.quote-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 0px;
    z-index: 1;
}

.quote-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 230px;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.quote-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--logistiq-black-rgb), .60);
    content: "";
}

.quote-one .sec-title__tagline .text h4 {
    color: var(--logistiq-white);
}

.quote-one .sec-title__title {
    color: var(--logistiq-white);
}

.quote-one .quote-tab {
    position: relative;
    display: block;
    background: var(--logistiq-black);
    padding: 60px 60px 60px;
}

.quote-tab__button {
    position: relative;
    display: block;
    margin-bottom: 41px;
    z-index: 1;
}

.quote-tab__button ul {
    display: flex;
    gap: 15px;
}

.quote-tab__button ul li {
    border-radius: 5px;
}

.quote-tab__button .tabs-button-box {
    position: relative;
}

.quote-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    width: 190px;
    background-color: var(--logistiq-white);
    float: left;
    text-align: center;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.quote-tab__button .tabs-button-box .tab-btn-item.active-btn-item,
.quote-tab__button .tabs-button-box .tab-btn-item:hover {
    background-color: var(--logistiq-base);
}

.quote-tab__button-inner {
    position: relative;
    display: block;
}

.quote-tab__button-inner h3 {
    position: relative;
    display: block;
    padding: 15px 0;
    color: var(--logistiq-black);
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.quote-tab__button .tabs-button-box .active-btn-item .quote-tab__button-inner h3 {
    color: var(--logistiq-white);
}

.quote-tab__button .tabs-button-box .tab-btn-item:hover .quote-tab__button-inner h3,
.quote-tab__button .tabs-button-box .tab-btn-item.active-btn-item .quote-tab__button-inner h3 {
    color: var(--logistiq-white);
}

.tabs-content-box {
    position: relative;
    display: block;
}

.quote-one .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.quote-one .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.quote-one .tab-content-box-item .quote-tab-content-box-item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0.9);
    transform-origin: top bottom;
}

.quote-one .tab-content-box-item.tab-content-box-item-active .quote-tab-content-box-item {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}

.tab-content-box-item-img {
    position: absolute;
    top: -161px;
    right: -60px;
    bottom: -60px;
    width: 390px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.quote-tab-content-box-item .quotes-wrapper {
    position: relative;
    display: block;
    max-width: 810px;
    width: 100%;
}

.quote-tab-content-box-item .quotes-wrapper-inner {
    position: relative;
    display: block;
}

.quote-tab-content-box-item .quotes-wrapper-inner .title-box {
    position: relative;
    display: block;
    margin-bottom: 41px;
}

.quote-tab-content-box-item .quotes-wrapper-inner .title-box h2 {
    color: var(--logistiq-white);
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
}

.quote-one__form {
    position: relative;
    display: block;
}

.quote-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.quote-one__form .input-box label {
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 12px;
}

.quote-one__form .input-box input[type="text"],
.quote-one__form .input-box input[type="email"],
.quote-one__form .input-box input[type="number"] {
    position: relative;
    display: block;
    height: 55px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--logistiq-white-rgb), .20);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    color: rgba(var(--logistiq-white-rgb), .40);
    border-radius: 3px;
    font-family: var(--logistiq-font);
}

.quote-one__form .input-box .select-box {
    width: 100%;
}

.quote-one__form .input-box .nice-select {
    position: relative;
    display: block;
    height: 55px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--logistiq-white-rgb), .20);
    color: rgba(var(--logistiq-white-rgb), .40);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    color: rgba(var(--logistiq-white-rgb), .40);
    border-radius: 3px;
    font-family: var(--logistiq-font);
    float: none;
}

.quote-one__form .input-box .nice-select:after {
    position: absolute;
    top: 18px;
    right: 23px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid rgba(var(--logistiq-white-rgb), .40);
    border-right: 1px solid rgba(var(--logistiq-white-rgb), .40);
    margin-top: 0px;
    z-index: 10;
}

.quote-one__form .input-box .nice-select .option {
    color: var(--logistiq-white);
}

.quote-redio-box {
    position: relative;
    display: block;
    margin-bottom: 9px;
}

.quote-redio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.custom-rario {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.custom-rario input[type="radio"] {
    display: none;
}

.custom-rario .radio-dot {
    position: absolute;
    left: 0;
    top: 2px;
    height: 25px;
    width: 25px;
    border-radius: 2px;
    border: 2px solid rgba(var(--logistiq-white-rgb), .40);
    display: block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.custom-rario .radio-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--logistiq-white);
    margin-left: 40px;
}

.custom-rario .radio-dot::after {
    content: "";
    height: 15px;
    width: 15px;
    border-radius: 3px;
    background-color: var(--logistiq-base);
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.3s ease-in-out 0s;
}

.custom-rario input[type="radio"]:checked~.radio-dot::after {
    transform: translate(-50%, -50%) scale(1);
}

.custom-rario input[type="radio"]:checked~.radio-dot {
    border-color: var(--logistiq-base);
}

.custom-rario input[type="radio"]:checked~.radio-text {
    color: var(--logistiq-white);
}

.quote-two__btn {
    position: relative;
    display: block;
    margin-top: 39px;
}

.quote-two__btn .thm-btn {
    width: 100%;
}

.quote-two__btn .thm-btn .hover-btn {
    background-color: var(--logistiq-white);
}

.quote-two__btn .thm-btn:hover {
    color: var(--logistiq-black);
}


.skill-one {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.skill-one__img {
    position: relative;
    display: block;
    z-index: 1;
}

.skill-one__img .shape1 {
    position: absolute;
    top: 30px;
    right: -35px;
    z-index: -1;
}

.skill-one__img .shape2 {
    position: absolute;
    left: 135px;
    bottom: -100px;
    z-index: -1;
}

.skill-one__img1 {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    z-index: 1;
}

.skill-one__img1::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.skill-one__img1:hover::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.skill-one__img1 img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.skill-one__img1:hover img {
    transform: scale(1);
}

.skill-one__img2 {
    position: absolute;
    bottom: -115px;
    right: 0;
    z-index: 1;
}

.skill-one__img2::before {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: 0px;
    right: 0px;
    background: var(--logistiq-white);
    content: "";
    z-index: -1;
}

.skill-one__img2 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.skill-one__img2 .inner::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.skill-one__img2:hover .inner::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.skill-one__img2 .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.skill-one__img2:hover .inner img {
    transform: scale(1);
}

.skill-one__content {
    position: relative;
    display: block;
    margin-left: 100px;
}

.skill-one__content .sec-title {
    padding-bottom: 31px;
}

.skill-one__content-text {
    position: relative;
    display: block;
}

.skill-one__content-text p {
    margin: 0;
}

.skill-one__progress {
    position: relative;
    display: block;
    margin-top: 35px;
}

.skill-one__progress li {
    position: relative;
    display: block;
}

.skill-one__progress li+li {
    margin-top: 38px;
}

.skill-one__progress-single {
    position: relative;
    display: block;
}

.skill-one__progress-single .title-box {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.skill-one__progress-single .title-box p {
    color: var(--logistiq-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.skill-one__progress-single .bar {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #E4E4E4;
}

.skill-one__progress-single .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 3px;
    border-radius: 0px;
    background-color: var(--logistiq-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.skill-one__progress-single .count-text {
    position: absolute;
    right: 0px;
    bottom: -13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-align: center;
    width: 60px;
    height: 30px;
    background: var(--logistiq-base);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}
.skill-one__progress-single .count-text-ar {
    position: absolute;
    left: 0px;
    bottom: -13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logistiq-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-align: center;
    width: 60px;
    height: 30px;
    background: var(--logistiq-base);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.skill-one__progress-single .bar-inner.counted .count-text {
    opacity: 1;
}
.skill-one__progress-single .bar-inner.counted .count-text-ar {
    opacity: 1;
}

.skill-one__progress-single .bar-inner.counted .count-text::before {
    position: absolute;
    top: 1px;
    right: -30px;
    color: var(--logistiq-base);
    font-size: 25px;
    content: "\e915";
    font-family: 'icomoon' !important;
    /* transform: rotate(7  0deg); */
}
.skill-one__progress-single .bar-inner.counted .count-text-ar::before {
    position: absolute;
    top: 1px;
    left: -30px;
    color: var(--logistiq-base);
    font-size: 25px;
    content: "\e915";
    font-family: 'icomoon' !important;
    /* transform: rotate(7  0deg); */
}

.skill-one__content-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 55px;
}

/***
=============================================
Sliding Text One
=============================================
***/
.sliding-text-one {
    position: relative;
    display: block;
    margin-top: -144px;
    z-index: 1;
}

.sliding-text-one__wrap {
    position: relative;
    display: block;
}

.sliding-text__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
}

.sliding-text__list li {
    osition: relative;
    display: block;
    float: left;
    margin-right: 40px;
}

.sliding-text__title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    color: transparent;
    -webkit-text-stroke: 1px #E4E4E4;
    font-size: 95px;
    line-height: 1em;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--logistiq-font);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sliding-text__list li:hover .sliding-text__title {
    -webkit-text-stroke: 1px var(--logistiq-base);
}

.sliding-text__title img {
    position: relative;
    width: auto;
}

.sliding-text__title:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--logistiq-base);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text__list li:hover .sliding-text__title:before {
    width: 100%;
    color: var(--logistiq-base);
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}











/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/


/***
=============================================
Why Choose One
=============================================
***/
.why-choose-one {
    position: relative;
    display: block;
    background: var(--logistiq-black);
    padding: 120px 0px 120px;
    z-index: 2;
}

.why-choose-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.1;
    text-align: center;
    z-index: -1;
}

.why-choose-one .shape1 {
    position: absolute;
    right: 340px;
    bottom: -80px;
    z-index: -1;
}
.why-choose-one .shape1-ar {
    position: absolute;
    left: 340px;
    bottom: -80px;
    z-index: -1;
}

.why-choose-one__content {
    position: relative;
    display: block;
}

.why-choose-one__content .sec-title {
    padding-bottom: 31px;
}

.why-choose-one__content .sec-title__tagline .text h4 {
    color: var(--logistiq-white);
}

.why-choose-one__content .sec-title__title {
    color: var(--logistiq-white);
}

.why-choose-one__content-list {
    position: relative;
    display: block;
}

.why-choose-one__content-list ul {
    position: relative;
    display: block;
}

.why-choose-one__content-list ul li {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.why-choose-one__content-list ul li:last-child {
    margin-bottom: 0px;
}

.why-choose-one__content-list ul li p {
    color: var(--logistiq-white);
}

.why-choose-one__content-list ul li p span {
    position: relative;
    display: inline-block;
    line-height: 0;
    margin-right: 4px;
    top: 1px;
}

.why-choose-one__content-list ul li p span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 17px;
}

.why-choose-one__content .btn-box {
    position: relative;
    display: block;
    line-height: 0px;
    margin-top: 42px;
}

.why-choose-one__content .btn-box .thm-btn:hover {
    color: var(--logistiq-black);
}

.why-choose-one__content .btn-box .hover-btn {
    background-color: var(--logistiq-white);
}

.why-choose-one__form-box {
    position: relative;
    display: block;
    max-width: 580px;
    width: 100%;
    float: right;
    margin-top: -180px;
    background: var(--logistiq-white);
    padding: 54px 60px 60px;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    z-index: 2;
}

.why-choose-one__form-box .title-box {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.why-choose-one__form-box .title-box h2 {
    font-size: 42px;
    line-height: 1em;
    font-weight: 700;
}

.why-choose-one__form {
    position: relative;
    display: block;
}

.why-choose-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.why-choose-one__form .input-box .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.why-choose-one__form .input-box .icon-ar {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.why-choose-one__form .input-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-gray);
    font-size: 15px;
}

.why-choose-one__form .input-box input[type="text"],
.why-choose-one__form .input-box input[type="email"] {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: var(--logistiq-white);
    border: 1px solid rgba(var(--logistiq-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--logistiq-gray);
    border-radius: 2px;
    font-family: var(--logistiq-font);
}

#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--logistiq-black);
    color: var(--logistiq-black);
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--logistiq-base) none repeat scroll 0 0;
    border: 2px solid var(--logistiq-base);
    border-radius: 0;
    color: var(--logistiq-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    background: var(--thm-logistiq);
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: var(--logistiq-white);
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
    font-family: var(--logistiq-font);
}

#ptTimeSelectCntr .ui-widget {
    font-family: var(--logistiq-font);
}

.why-choose-one__form .input-box .select-box {
    width: 100%;
}

.why-choose-one__form .input-box .nice-select {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: var(--logistiq-white);
    border: 1px solid rgba(var(--logistiq-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    line-height: 48px;
    font-weight: 400;
    color: var(--logistiq-gray);
    border-radius: 2px;
    font-family: var(--logistiq-font);
    float: none;
}

.why-choose-one__form .input-box .nice-select:after {
    position: absolute;
    top: 18px;
    right: 23px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--logistiq-gray);
    border-right: 1px solid var(--logistiq-gray);
    margin-top: 0px;
    z-index: 10;
}

.why-choose-one__form .input-box .nice-select .option {
    color: var(--logistiq-white);
}

.why-choose-one__form-distance {
    position: relative;
    display: block;
    margin-bottom: 35px;
    margin-top: -7px;
}

.why-choose-one__form-distance .title {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.why-choose-one__form-distance .title p {
    color: var(--logistiq-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.why-choose-one__form-distance-inner {
    position: relative;
    display: block;
    max-width: 460px;
    width: 100%;
}

.why-choose-one__form-distance-inner .price-ranger {
    position: relative;
    display: block;
}

.why-choose-one__form-distance-inner .ui-widget-content {
    background: #e4e4e4;
    border: none;
    height: 5px;
}

.why-choose-one__form-distance-inner .ui-slider-handle {
    position: relative;
    display: inline-block;
    background: var(--logistiq-base) none repeat scroll 0 0;
    border: 0px solid #ffffff;
    border-radius: 50%;
    width: 15px !important;
    height: 15px;
    margin-left: -5px;
    outline: medium none;
    cursor: pointer;
}

.why-choose-one__form-distance-inner .ui-slider-handle::before {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 7px;
    height: 7px;
    background: var(--logistiq-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    content: "";
}

.why-choose-one__form-distance-inner .ui-slider-horizontal .ui-slider-handle {
    top: -16px;
}

.why-choose-one__form-distance-inner .ui-slider .ui-slider-range {
    position: relative;
    display: block;
    background: var(--logistiq-base);
    width: 100%;
    height: 5px;
}

.why-choose-one__form-distance-inner #slider-range {
    margin-left: 3px;
    margin-right: 5px;
    margin-top: 0;
    max-width: 315px;
    width: 100%;
}

.why-choose-one__form-distance-inner .ranger-min-max-block {
    position: absolute;
    top: -22px;
    right: 0;
    width: 120px;
    height: 50px;
    border: 1px solid rgba(var(--logistiq-black-rgb), .10);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.why-choose-one__form-distance-inner .ranger-min-max-block input {
    display: inline-block;
}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: block;
    width: 100%;
    color: var(--logisitq-white);
    text-align: center;
    padding: 8px 0 7px;
    border: 1px solid var(--logisitq-white);
    background: var(--logisitq-white);
    cursor: pointer;
    margin-top: 7px;
    margin-bottom: 8px;
    font-family: var(--logistiq-base);
}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type="submit"]:hover {}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type="text"] {
    border: medium none;
    color: var(--logistiq-gray);
    font-size: 16px;
    font-weight: 300;
    outline: medium none;
    text-align: center;
    width: 100%;
    margin-left: -13px;
    z-index: -1;
}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type='text'].max {}

.why-choose-one__form-distance-inner .ranger-min-max-block span {
    color: var(--logistiq-gray);
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    margin-left: -27px;
}

.why-choose-one__form-btn {
    position: relative;
    display: block;
}


/***
=============================================
Why Choose Two
=============================================
***/
.why-choose-two {
    position: relative;
    display: block;
    background: var(--logistiq-black);
    padding: 120px 0px 120px;
    z-index: 1;
}

.why-choose-two .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    z-index: -1;
}

.why-choose-two__bg {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: calc((100% - 220px) / 2);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.why-choose-two__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--logistiq-black-rgb), .20);
    content: "";
}

.why-choose-two__bg .shape3 {
    position: absolute;
    top: 285px;
    left: 125px;
    z-index: 1;
}

.why-choose-two__video-box {
    position: absolute;
    top: -215px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.why-choose-two__video-box-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--logistiq-base);
    border: 0px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.why-choose-two__video-box-icon:hover {
    color: var(--logistiq-base);
    background-color: var(--logistiq-white);
}

.why-choose-two__video-box-icon span::before {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.why-choose-two__video-box-icon .ripple,
.why-choose-two__video-box-icon .ripple:before,
.why-choose-two__video-box-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1.0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1.0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1.0);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.why-choose-two__video-box-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.why-choose-two__video-box-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.why-choose-two__content {
    position: relative;
    display: block;
}

.why-choose-two__content .sec-title {
    padding-bottom: 31px;
}

.why-choose-two__content .sec-title__tagline .text h4 {
    color: var(--logistiq-white);
}

.why-choose-two__content .sec-title__title {
    color: var(--logistiq-white);
}

.why-choose-two__content-text {
    position: relative;
    display: block;
    max-width: 625px;
    width: 100%;
    margin-bottom: 55px;
}

.why-choose-two__content-text p {
    color: #E4E4E4;
}


.why-choose-two__content-bottom {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.why-choose-two__content-bottom .shape2 {
    position: absolute;
    bottom: 75px;
    left: 210px;
    z-index: -1;
}

.why-choose-two__content-bottom .client-box {
    position: relative;
    display: block;
    padding-left: 25px;
    width: 230px;
}

.why-choose-two__content-bottom .client-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--logistiq-base);
    content: "";
}

.why-choose-two__content-bottom .client-box ul {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
}

.why-choose-two__content-bottom .client-box ul li {
    position: relative;
    display: inline-block;
}

.why-choose-two__content-bottom .client-box ul li+li {
    margin-left: -14px;
}

.why-choose-two__content-bottom .client-box ul li .img-box {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--logistiq-black);
    overflow: hidden;
}

.why-choose-two__content-bottom .client-box ul li .img-box img {
    width: 100%;
}


.why-choose-two__content-bottom .count-text-box {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.why-choose-two__content-bottom .count-text-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    content: "";
}

.why-choose-two__content-bottom .count-text-box h2 {
    color: var(--logistiq-white);
    font-size: 74px;
    line-height: 1em;
    font-weight: 700;
}

.why-choose-two__content-bottom .count-text-box .plus {
    color: #ffffff;
    position: relative;
    display: block;
    font-size: 65px;
    font-weight: 700;

}

.why-choose-two__content-bottom .client-box h3 {
    position: relative;
    color: var(--logistiq-white);
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 5px;

}

.why-choose-two__content-bottom-content {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    padding: 38px 40px 40px;
    margin-left: 220px;
    max-width: 650px;
    width: 100%;
    z-index: 1;
}

.why-choose-two__content-bottom-content::before {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background: #e4e4e4;
    content: "";
    z-index: 1;
}

.why-choose-two__content-bottom-content::after {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    height: 1px;
    background: #e4e4e4;
    content: "";
    z-index: 1;
}

.why-choose-two__pattern2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.05;
    z-index: 0;
}

.why-choose-two__content-bottom-content ul {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
}

.why-choose-two__content-bottom-content ul+ul {
    margin-top: 80px;
}

.why-choose-two__single {
    position: relative;
    display: block;
    max-width: 250px;
    width: 100%;
}

.why-choose-two__single-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.why-choose-two__single-top .icon {
    position: relative;
    display: block;
}

.why-choose-two__single-top .icon span {
    position: relative;
    display: block;
}

.why-choose-two__single-top .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 40px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.why-choose-two__single:hover .why-choose-two__single-top .icon span::before {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.why-choose-two__single-top .title {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.why-choose-two__single-top .title h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

.why-choose-two__single .text-box {
    position: relative;
    display: block;
    padding-left: 10px;
}

.why-choose-two__single .text-box::before {
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 0;
    width: 1px;
    background: var(--logistiq-base);
    content: "";
}

.why-choose-two__single .text-box p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

/***
=============================================
Working Process One
=============================================
***/
.working-process-one {
    position: relative;
    display: block;
    background: var(--logistiq-gray-bg);
    padding: 120px 0px 90px;
    z-index: 1;
}

.working-process-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.working-process-one .container {
    position: relative;
}

.working-process-one .shape1 {
    position: absolute;
    top: 242px;
    left: 0px;
    right: 0px;
    text-align: center;
    z-index: -1;
}

.working-process-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.working-process-one__single .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: var(--logistiq-white);
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
    margin: 0 auto 22px;
}

.working-process-one__single .icon .count-box {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--logistiq-base);
    color: var(--logistiq-white);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}

.working-process-one__single .icon span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 50px;
    line-height: 50px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.working-process-one__single:hover .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.working-process-one__single .content-box {
    position: relative;
    display: block;
    text-align: center;
}

.working-process-one__single .content-box h2 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.working-process-one__single .content-box h2 a {
    color: var(--logistiq-black);
}

.working-process-one__single .content-box h2 a:hover {
    color: var(--logistiq-base);
}

.working-process-one__single .content-box p {
    margin: 0;
}


.working-process-one__single .plane-icon {
    position: absolute;
    top: 37px;
    right: -35px;
}

.working-process-one__single .plane-icon span {
    position: relative;
    display: block;
}

.working-process-one__single .plane-icon span::before {
    position: relative;
    display: inline-block;
    color: var(--logistiq-base);
    font-size: 35px;
    line-height: 35px;
    transform: rotate(70deg);
}