﻿ 
.rwd-table {
    margin: auto;
    min-width: 300px;
    max-width: 100%;
    border-collapse: collapse;
}

    .rwd-table tr:first-child {
        border-top: none;
        background: #26232a;
        color: #fff;
    }

    .rwd-table tr {
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        background-color: #f5f9fc;
    }

        .rwd-table tr:nth-child(odd):not(:first-child) {
            background-color: #ebf3f9;
        }

    .rwd-table th {
        display: block;
    }

    .rwd-table td {
        display: block;
    }

        .rwd-table td:first-child {
            margin-top: .5em;
        }

        .rwd-table td:last-child {
            margin-bottom: .5em;
        }

        .rwd-table td:before {
            content: attr(data-th) ": ";
            font-weight: bold;
            width: 120px;
            display: inline-block;
            color: #000;
        }

    .rwd-table th,
    .rwd-table td {
        text-align: left;
    }

.rwd-table {
    color: #333;
    border-radius: .4em;
    overflow: hidden;
}

    .rwd-table tr {
        border-color: #bfbfbf;
    }

    .rwd-table th,
    .rwd-table td {
        padding: .5em 1em;
    }

@media screen and (max-width: 601px) {
    .rwd-table tr:nth-child(2) {
        border-top: none;
    }
}

@media screen and (min-width: 600px) {
    .rwd-table tr:hover:not(:first-child) {
        background-color: #d8e7f3;
    }

    .rwd-table td:before {
        display: none;
    }

    .rwd-table th,
    .rwd-table td {
        display: table-cell;
        padding: .25em .5em;
    }

        .rwd-table th:first-child,
        .rwd-table td:first-child {
            padding-left: 0;
        }

        .rwd-table th:last-child,
        .rwd-table td:last-child {
            padding-right: 0;
        }

    .rwd-table th,
    .rwd-table td {
        padding: 1em !important;
    }
}
@media (max-width: 450px) {
    .wpo-site-header .header-right {
        right: 90px!important;
        display:block!important;
    }
}

section.contact {
    padding: 20px;
    overflow: hidden;
}

    section.contact .header {
        text-align: center;
        padding-bottom: 60px;
    }

.header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-transform:capitalize;
}

    .header h2::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        width: 50px;
        height: 3px;
        background: #ba0000;
        margin: auto;
    }

.header p {
    margin-bottom: 0;
    color: #ba0000;
    text-align:center;
    font-style:italic
}

section.contact .container {
    max-width: 1300px;
    box-shadow: 0 2px 25px rgb(0 0 0 / 10%);
    border-radius: 10px;
    margin: auto;
    display: flex;
    transition: 0.4s all ease-in-out;
}

.info-container {
    padding: 20px;
    max-width: 35%;
    width: 100%;
    background: radial-gradient(500.74% 97.55% at 234.64% 49.36%, #fff0 0, #212529 65.98%, #212529 26.99%);
    border-radius: 15px 50px 50px 50px;
    color: #FFFFFF;
    height: 80vh;
}

    .info-container .info-item {
        padding: 20px;
        background: #23262a5c;
        border-radius: 10px;
        margin-bottom: 20px;
    }

        .info-container .info-item:last-child {
            margin-bottom: 0;
        }

.info-item .icons {
    float: left;
    clear: left;
    margin-right: 15px;
    height: 75px;
}

.icons i {
    font-size: 20px;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.info-item:hover i {
    background: #FFFFFF;
    color: #ba0000;
}

.information h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color:#fff;
}

.information p {
    font-size: 13px;
    line-height: 1.7;
    color:#ffffff;
}
.information a {
    text-align: end;
}

.input-container {
    max-width: 65%;
    width: 100%;
    padding: 30px;
}

section.contact form .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.contact form .form-control {
    border: 1px solid #CED4DA;
    outline: none;
    font-size: 14px;
    padding: 12px 15px;
    color: #212529;
    width: 100%;
    margin-bottom: 25px;
    transition: 0.3s;
    line-height: 1.5;
}

section.contact .form-control:focus {
    border-color: #ba0000;
}

textarea {
    resize: none;
    font-family: sans-serif;
    border: 1px solid #CED4DA;
}

@media screen and (max-width: 1400px) {
    section.contact .container {
        max-width: 1100px;
    }

    .information p {
        font-size: 13px;
    }
}

@media screen and (max-width: 1200px) {
    section.contact .container {
        max-width: 900px;
    }
}

@media screen and (max-width: 991px) {
    section.contact .container {
        max-width: 768px;
        flex-direction: column;
    }

    .info-container, .input-container {
        max-width: 100%;
    }

    .info-container {
        border-radius: 10px 10px 0 0;
    }

    .input-container {
        padding-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    section.contact {
        padding: 50px 5px;
    }

        section.contact .container {
            max-width: 550px;
        }

        section.contact form .row {
            flex-direction: column;
            gap: 0;
        }
}

.cp-form input.fullname {
   margin-bottom:10px;
   height:40px;
   border-radius:60px!important;
}
.cp-form input.email {
    margin-bottom: 10px;
    height: 40px;
    border-radius: 60px !important;
}
.cp-form input.phonenum {
    margin-bottom: 10px;
    height: 40px;
    border-radius: 60px !important;
}
.cp-form input.city {
    margin-bottom: 10px;
    height: 40px;
    border-radius: 60px !important;
}


:root {
    --primary-color: #ba0000;
    --eye-pupil-color: #26232a;
    --bg-color: #fff;
    --text-color: #000;
    --fs-heading: 36px;
    --fs-text: 26px;
    --fs-button: 18px;
    --fs-icon: 30px;
    --pupil-size: 30px;
    --eye-size: 80px;
    --button-padding: 15px 30px;
}

@media only screen and (max-width: 567px) {
    :root {
        --fs-heading: 30px;
        --fs-text: 22px;
        --fs-button: 16px;
        --fs-icon: 24px;
        --button-padding: 12px 24px;
    }
}
.container.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    text-align: center;
}

.error-page {
    margin: auto;
}

.error-page__heading-title {
    text-transform: capitalize;
    font-size: var(--fs-heading);
    font-weight: 500;
    color: var(--primary-color);
}

.error-page__heading-desciption {
    margin-top: 10px;
    font-size: var(--fs-text);
    font-weight: 200;
}

.error-page__button {
    color: inherit;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    font-size: var(--fs-button);
    font-weight: 200;
    padding: var(--button-padding);
    border-radius: 15px;
    box-shadow: 0px 7px 0px -2px var(--primary-color);
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    color:#26232a;
    font-weight:500;
}

    .error-page__button:hover {
        box-shadow: none;
        background-color: var(--primary-color);
        color: #fff;
    }

.eyes {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.eye {
    width: var(--eye-size);
    height: var(--eye-size);
    background-color: var(--primary-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.eye__pupil {
    width: var(--pupil-size);
    height: var(--pupil-size);
    background-color: var(--eye-pupil-color);
    border-radius: 50%;
    animation: movePupil 2s infinite ease-in-out;
    transform-origin: center center;
    
}

@keyframes movePupil {
    0%, 100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-10px, -10px);
    }

    50% {
        transform: translate(10px, 10px);
    }

    75% {
        transform: translate(-10px, 10px);
    }
}

.color-switcher {
    position: fixed;
    top: 40px;
    right: 40px;
    background-color: transparent;
    font-size: var(--fs-icon);
    cursor: pointer;
    color: var(--primary-color);
    border: 0;
}

.single-service-area-3 span.number.num-com {
    position: absolute;
    right: 0px!important;
    left:30px;
    top: 50px;
    font-size: 70px;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.line {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    z-index: 99999;
    overflow: hidden;
}

.dot {
    position: absolute;
    height: 100%;
    width: 1200px;
    background: #ba0000;
    animation: dotleft 4s cubic-bezier(.72,.03,.75,.54) infinite;
}
@keyframes dotleft {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}
table.table.table-bordered tr th {
    border: 1px solid #333338;
    padding: 20px;
}
a.btn-primary.btnAccept {
    border-radius: 15px 50px 50px 50px!important;
}
a.btn-primary.btnAcceptL {
    border-radius: 15px 50px 50px 50px !important;
}
#fix-rig, .fix-enquiry-one #fix-rig {
    font-size: 16px;
    background: #ba0000;
    padding: 8px 13px 10px;
    transform: rotate(-90deg);
    box-shadow: rgb(0 12 105 / .44) 0 2px 15px 0;
    z-index: 999 !important;
    border-radius: 15px 50px 50px 50px;
}

#popup2.nav-popup .popup .close, .nav-popup .popup .close {
    position: absolute;
    transition: .2s;
    text-decoration: none;
    cursor: pointer
}

.choose_detail, .helpLink:before, .with-bottom-effect {
    overflow: hidden
}

.helpExit, .helpLink, .helpOverlay, .toggleBox label {
    user-select: none
}

    .feature-two__text p a, .toggleBox label:focus, .toggleBox label:hover {
        text-decoration: none
    }

.icon-DesktopMonitor img:hover, img.city-marker {
    filter: brightness(0) invert(1)
}

#popup2.nav-popup .popup .close, .achieve-item .count, .nav-popup .popup .close {
    font-size: 30px;
    color: #fff;
    font-weight: 700
}

.core-features-section.index-industries {
    padding: 0 !important
}

img.logo__sdgl {
    width: 130px
}

.footer-icons a i:hover {
    color: #ba0000
}

#fix-rig {
    top: 64%;
    right: -84px;
    color: #fff
}

.fix-enquiry-one #fix-rig {
    top: 35%;
    right: -60px;
    color: #fff
}

#popup2.nav-popup .popup .close {
    top: 20px;
    right: 5px
}

.nav-popup .popup {
    margin: 70px auto;
    padding: 20px;
    border-radius: 5px;
    width: 35%;
    position: relative;
    transition: 5s ease-in-out
}

.quote-form-modal {
    margin-top: -15%
}

.nav-popup .popup .close {
    top: -50px;
    right: 30px
}

.overlay.nav-popup:target {
    visibility: visible;
    opacity: 1;
    overflow: hidden
}

.overlay.nav-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / .7);
    transition: opacity .5s;
    visibility: hidden;
    opacity: 0;
    z-index: 99
}

.mb-20 {
    margin-bottom: 2rem
}

.widget__form--input__field:focus, .widget__form--textarea__field {
    outline: 0
}

@media screen and (min-width:0) and (max-width:767px) {
    .desktop-view{
        display:block!important;
    }
    .v-tab{
        display:none!important;
    }
    .header-right a {
        animation: none !important;
        font-size: 11px !important;
        border: 1px solid #ba0000 !important;
    }
    .info-container{
        height:unset!important;
    }
    .new-contact-form {
        height: auto !important;
    }
    .form-row{
        display:block!important;
    }
    .banner-phone {
        display: block !important;
    }
    .visa-package-grid-section .visa-package-card .visa-package-content{
        height:20vh!important;
    }
    .showcase {
        height: 65vh!Important;
    }
        .feature-two__text.aos-init.aos-animate {
        margin-top: -50px;
    }
    .rts-appoinment-area-3 .appoinment-three-wrapper, .video-section.city-video, ol.city--list li {
        height: unset !important
    }
    .navigation-item.index-nav-item {
        width: 180px!important;
        margin-bottom: -10px !important;
    }
        .navigation-item.index-nav-item h5 {
            font-size: 9px!important;
            text-transform: capitalize;
        }
    .bdr-btm-city, .bdr-right-city {
        border-bottom: 0 solid #d3d3d3
    }

    .bdr-right, .bdr-right-city, .services-stats .bdr {
        border-right: 0 !important
    }

    .feature-two__text, .rate-flex, .service-slider-two, .slick-flex, .steps {
        display: block !important
    }

    .feature-two__text, ol.city--list li {
        padding: 30px
    }

        ol.city--list li h3 {
            font-size: 12px !important
        }

    .hero-section .content h2, .wpo-breadcumb-area .nav-area-navigation a, p, ul.list-one li, ul.list-one-city li {
        font-size: 13px !important
    }

    .nw-sd-global ul li, img.city-marker {
        display: none !important
    }

    .mission-sec h3, .security-city h3, h4.title-blog {
        font-size: 16px !important
    }

    .section-title, h1.title {
        font-size: 23px !important
    }

    .topbar .contact-info li {
        font-size: 10px !important
    }

    .topbar {
        height: 160px !important
    }

    .appoinment-three-wrapper {
        background: #fff !important
    }

    .mutli-para {
        column-count: 1 !important
    }

    .services-stats .bdr, .services-stats .bdr-b, .single-choose-us-one {
        border-bottom: 2px solid #00000026;
        padding-bottom: 20px
    }

    .section-title {
        line-height: 1.5 !important
    }

    h4.title_service-offerings {
        margin-top: 20px
    }

    .nw-sd-global ul li a {
        font-size: 13px
    }

    .about-a-p-cont {
        padding-left: 0 !important
    }

    .title-three-left span.pre-title {
        font-size: 26px !important;
        line-height: 1.5 !important
    }

    .OurFormula_sectionHeading {
        font-size: 21px !important
    }

    .testimonial {
        margin-top: 35px !important;
        height: 40vh !important
    }

    img.video-icon-img {
        bottom: 0 !important
    }

    .btn-2, img.img-fluid.lazyloaded--img.w-l-img {
        right: 0 !important
    }

    .feature-box .feature-box-content span, .tabs input[type=radio] + label, .wpo-about-section .about-content ul li, .wpo-about-section-s4 .about-content ul li, ul.marker-list li {
        font-size: 14px !important
    }

    .cg-loc-counter p {
        text-align: center
    }

    .cg-spon4-item {
        padding: 30px !important
    }

    .slick-testimonial h2 {
        font-size: 20px !important;
        line-height: 1.9 !important
    }

    h2.city-head {
        font-size: 28px !important
    }

    .project-list-area-wrapper-3 .single-project-3 .left-side .title {
        font-size: 17px !important
    }

    .h2-size h2.section__heading--title {
        font-size: 32px !important
    }

    h2.mission-h2 {
        font-size: 22px !important;
        line-height: 1.7 !important
    }

    .bdr-right {
        border-bottom: 1px solid #dee2e6 !important
    }

    .mission-sec::before {
        width: 144px !important;
        height: 139px !important;
        top: -15px !important
    }

    .hero-section .content {
        top: 0px;
    }
    .inner .d-flex{
        display:block!important;
   
    }
    .inner a.second-number{
        position:relative;
        bottom:30px;
    }
    .media-city h3 {
        font-size: 21px!important;
    }

    .single-project-info-wrapper-inner .title {
        font-size: 18px !important;
        line-height: 1.6 !important
    }

    .wpo-service-section .wpo-section-title h3 {
        font-size: 26px !important;
        line-height: 40px;
        font-weight: 600 !important
    }

    .wpo-about-section .about-content .title h3, .wpo-about-section-s4 .about-content .title h3 {
        font-size: 20px !important;
        line-height: 40px;
        font-weight: 600 !important
    }

    .testimonial-box {
        top: 80px !important;
        height: 300px !important
    }

    .quote-form .title h3 {
        font-size: 20px !important;
        line-height: 38px !important
    }

    .service-details-inner-area-wrapper .title {
        font-size: 26px !important;
        line-height: 1.8 !important
    }

    .section__heading--subtitle.color__white {
        color: #fff;
        font-size: 22px !important;
        line-height: 1.6
    }

    .choose_detail h4, .mission-sec ul.mission-li li {
        font-size: 15px !important
    }

    .slick-testimonial span h2, h2.h2-industries {
        font-size: 25px !important
    }

    h2.h2-industries {
        line-height: 1.8 !important
    }

    .feature-box {
        width: unset !important
    }

    .appointment-section img, .dd-none {
        display: none
    }

    .media .media-body {
        margin-left: 10px
    }

    .single-fun-facts-area-5 {
        border-bottom: 1px solid #2b2b30 !important
    }

    .our-working-process-area-4.bg_image-process {
        height: 480px !important
    }

    .video-section .title {
        font-size: 38px !important
    }

    .appointment-section .wpo-section-title-appointment h3 {
        font-size: 30px !important
    }

    .modal-content1 {
        width: auto !important
    }

    .video-section .duration {
        margin-top: 30% !important;
        position: relative;
        right: 20px
    }

    .popular__featured--inner a {
        padding: 5px 0 !important
    }

    .working-process-mt-dec-4 {
        margin-top: -50px
    }

    .about-area-right-3 .title {
        font-size: 30px !important;
        line-height: 1.5
    }

    .cg-spon4-item, .nav-popup .popup {
        width: 100% !important
    }

        .cg-spon4-item .item-img {
            height: 100px !important
        }

    .cg-sec-title-2 .sec_title {
        font-size: 18px !important;
        line-height: 1.7 !important
    }

    .choose-us-three-sec {
        margin-top: 90px
    }

    .helpLink {
        right: 44% !important
    }

    .about_icon_box h2 span {
        font-size: 26px !important
    }

    .about_icon_box h2 {
        font-size: 22px !important;
        position: relative;
        bottom: 30px;
        line-height: 1.5
    }

    .section_choose-us {
        margin: 3px 0 !important
    }

    .service_detail_m {
        position: relative;
        bottom: 20px
    }

    .img_about img {
        position: relative;
        bottom: 50px
    }

    .title-left-align-five .title {
        font-size: 19px !important;
        line-height: 1.5 !important
    }
}

.choose_detail::after, .choose_detail::before {
    position: absolute;
    width: 32px;
    content: "";
    height: 100%
}

.about_icon_box h2 span {
    color: #ba0000;
    font-size: 34px
}

.about_icon_box h2 {
    font-size: 34px
}

.img_about img, img.lazyloaded--img {
    border-radius: 20px
}

.choose_us_index {
    display: flex;
    align-items: center;
    margin-top: 30px
}

.choose_detail {
    display: block;
    margin-bottom: 42px;
    padding-left: 50px;
    position: relative;
    top: 10px
}

    .choose_detail::before {
        border-left: 4px solid #ba0000;
        text-align: center;
        left: 8px;
        top: 2px
    }

    .choose_detail::after {
        background: url(https://www.warehousingexpress.com/img/service_bullet_img.png) no-repeat;
        left: 0;
        top: 0
    }

.achieve-item, .dark, .dark-content, .helpModal aside, .home-choose-us-video, .item-pin-wrap span, .list-achieve .col-md-3 .achieve-item, .news-item .image, .single-working-process-four, .single-working-process-one, .single-working-process-three, .single-working-process-two, .video-section, .with-bottom-effect, .with-icon {
    position: relative
}

    .choose_detail h4, .single-working-process-four h5, .single-working-process-one h5, .single-working-process-three h5, .single-working-process-two h5 {
        font-size: 18px
    }

.hours {
    margin-top: -15px
}

.home-choose-us-video .video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 47%;
    transform: translate(-50%,-50%);
    box-sizing: content-box;
    display: block;
    width: 23px;
    height: 44px;
    border-radius: 50%;
    transition: .5s
}

    .home-choose-us-video .video .btn-play::before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        display: block;
        width: 70px;
        height: 70px;
        background: var(--bs-white);
        border-radius: 50%;
        animation: 1.5s ease-out infinite pulse-border;
        transition: .5s
    }

.home-choose-us-video a.iframe-link .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 23px solid #fff;
    border-top: 12px solid #fff0;
    border-bottom: 12px solid #fff0;
    margin-left: 5px
}

.home-choose-us-video .video .btn-play::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: #ba0000;
    border-radius: 50%;
    transition: .3s
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

.achievements-section {
    padding: 100px 0 200px
}

.with-bottom-effect.transparent-effect .bottom-effect {
    position: absolute;
    z-index: 10;
    bottom: -50px;
    width: 2500px;
    height: 148px;
    left: -100px;
    background: rgb(255 255 255 / .6);
    transform: rotate(-3deg);
    padding-top: 10px
}

    .with-bottom-effect.transparent-effect .bottom-effect::after {
        content: "";
        display: block;
        height: 148px;
        box-shadow: inset 0 -12px 13px -2px #fff
    }

.with-bottom-effect::before {
    content: "";
    box-shadow: inset 0 -12px 13px -2px #fff;
    display: block;
    width: 100%;
    position: absolute;
    z-index: 11;
    bottom: 0;
    height: 0
}

.with-bottom-effect .bottom-effect {
    position: absolute;
    z-index: 2;
    bottom: -50px;
    width: 2500px;
    height: 148px;
    left: -100px;
    background: #fff;
    transform: rotate(-3deg);
    padding-top: 10px
}

    .with-bottom-effect .bottom-effect::after {
        content: "";
        display: block;
        background: #fff;
        height: 148px
    }

.accordion-area-five .accordion-item .accordion-button::after, .carousel-testimonial .owl-dots, .carousel-testimonial .owl-nav, .list-achieve .col-md-3:last-child .achieve-item::after, .odometer-formatting-mark, .service-slider .owl-dots, .service-slider-one .owl-dots, .service-slider-one .owl-nav, .service-slider-three .owl-dots, .service-slider-three .owl-nav {
    display: none
}

.achieve-item {
    text-align: center;
    margin: 0 auto 15px;
    max-width: 300px;
    transform: scale(.95);
    transition: box-shadow .5s,transform .5s;
    box-shadow: 0 0 20px 0 #ba0000;
    padding: 15px;
    border-radius: 12px
}

    .achieve-item:hover {
        transition: 1s;
        transform: scale(1)
    }

    .achieve-item .achieve-icon i.fa {
        font-size: 46px;
        color: #fff
    }

    .achieve-item .count {
        padding: 30px 0;
        text-transform: uppercase
    }

    .achieve-item .name {
        color: #fff;
        font-size: 22px;
        text-transform: uppercase
    }

.video-section {
    padding: 100px 0 127px
}

    .video-section .video-play {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0
    }

.dark-content {
    z-index: 2
}

.video-section .title {
    font-family: Raleway,sans-serif;
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 100
}
.theme-btn {
    border-radius: 15px 50px 50px 50px;
}
.helpLink, .helpLink:before {
    font-weight: 400;
    position: absolute;
    text-align: center
}

.services-main .card__content, .video-section em {
    font-size: 16px
}

.video-section .duration {
    color: #ddd;
    font-size: 14px;
    margin-top: 6%
}

.dark.dark-strong::after {
    opacity: .8
}

.dark::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: .6;
    z-index: 1
}

.helpLink {
    display: block;
    line-height: 18pt;
    font-size: 72pt;
    color: #999;
    top: 100px;
    right: 47%;
    padding-left: .1em;
    transition: .1s ease-in-out;
    cursor: pointer
}

    .helpLink:focus, .helpLink:hover {
        color: #f60
    }

    .helpLink:before {
        content: attr(data-assist);
        display: inline-block;
        background: #333;
        width: auto;
        white-space: pre;
        height: auto;
        bottom: calc(-10pt - 31px);
        right: 50%;
        line-height: 1;
        line-break: auto;
        padding: 8px;
        font-size: 10pt;
        color: #fff;
        transition: opacity .1s ease-in-out
    }

    .helpLink:after {
        content: "";
        display: block;
        border: 10px solid #fff0;
        border-right-color: #333;
        position: absolute;
        bottom: -25px;
        right: 50%
    }

    .helpLink:after, .helpLink:before {
        pointer-events: none;
        opacity: 0
    }

    .helpLink:focus:after, .helpLink:hover:after {
        transition: opacity .2s ease-in-out
    }

    .helpLink:focus:after, .helpLink:focus:before, .helpLink:hover:after, .helpLink:hover:before, .news-item .image:hover .image-content {
        opacity: 1
    }

.helpModal, .helpModal *, .toggleBox, .toggleBox * {
    box-sizing: border-box
}

.helpModal, .helpOverlay {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 5000
}

    .helpExit, .helpModal aside {
        z-index: 6000;
        display: block
    }

    .helpModal:checked + .helpModal, .helpModal:checked + .helpModal .helpOverlay {
        display: block;
        opacity: 1;
        pointer-events: auto
    }

.helpOverlay {
    margin: 0;
    background: rgb(0 0 0 / .3);
    cursor: pointer
}

.helpModal aside {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    transition: padding .2s ease-in-out
}

.helpExit {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    color: #c00;
    cursor: pointer
}

    .helpExit:after, .helpExit:before {
        content: "";
        display: block;
        background: red;
        height: 25px;
        width: 4px;
        position: absolute;
        top: 12.5px;
        left: calc(50% - 2px);
        transform-origin: center;
        transition: .1s ease-in-out
    }

    .helpExit:before, .helpExit:focus:after, .helpExit:hover:after {
        transform: rotate(45deg)
    }

    .helpExit:after {
        transform: rotate(-45deg)
    }

    .about-three-area.rts-section-gapBottom, .faq-inner-area-main, .helpExit:focus:after, .helpExit:focus:before, .helpExit:hover:after, .helpExit:hover:before, .rts-about-area.rts-section-gap, .rts-blog-area, .why-choose-us-area {
        background: #fff
    }

    .helpExit:focus:before, .helpExit:hover:before {
        transform: rotate(135deg)
    }

    .helpExit:focus + article, .helpExit:hover + article {
        opacity: .7
    }

@media (min-width:900px) {
    .helpModal aside {
        margin: 90px auto 30px
    }

    .helpExit:focus + article, .helpExit:hover + article {
        background: #fff0;
        border: 1px solid #fff;
        color: #fff
    }

        .helpExit:focus + article * + *, .helpExit:focus + article > *, .helpExit:hover + article * + *, .helpExit:hover + article > * {
            background: 0 0 !important;
            color: #fff
        }
}

.helpModal article {
    background: #fff;
    border: 0 solid #fff0;
    margin: 0;
    color: #222;
    max-width: 900px;
    box-shadow: rgb(0 0 0 / .15) 0 3px 15px;
    transition: .2s ease-in-out;
    user-select: none;
    cursor: default
}

    .helpModal article h1 {
        letter-spacing: -.02em;
        font-size: 24pt;
        margin: 0 0 .5em
    }

    .helpModal article p {
        margin: 0;
        font-size: 12pt
    }

        .helpModal article p + p {
            margin-top: 1em
        }

.toggleBox {
    background: #fafafa;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden
}

    .toggleBox:after {
        content: "";
        display: block;
        clear: both
    }

.accordion-area-five .accordion-item .accordion-body .more, .cg-spon4-item .item-img {
    display: flex;
    align-items: center
}

.toggleBox input {
    display: none;
    transition: .1s ease-in-out
}

    .toggleBox input:checked + label {
        font-weight: 700;
        background: #eaeaea
    }

.toggleBox small {
    display: block;
    padding: 0;
    margin: 7px;
    font-size: 18pt;
    color: #333
}

.toggleBox label {
    display: inline-block;
    width: 50%;
    float: left;
    padding: 15px 0;
    text-align: center;
    font-size: 10pt;
    cursor: pointer;
    background: #fff;
    border-top: 1px solid #eaeaea
}

.toggleBox .slider {
    position: relative;
    float: left;
    width: 200%
}

    .toggleBox .slider div[class^=tab-] {
        position: relative;
        display: block;
        float: left;
        width: 50%;
        transition: left .2s ease-in-out
    }

.toggleBox #tab1 ~ .slider .tab-1, .toggleBox #tab2:checked ~ .slider .tab-2 {
    left: -50%
}

.toggleBox #tab1:checked ~ .slider .tab-1 {
    left: 0
}

.toggleBox #tab2 ~ .slider .tab-2 {
    left: 50%
}

.help-embed-container {
    position: relative;
    padding-bottom: 62.5%;
    height: 0;
    margin: 0;
    overflow: hidden;
    max-width: 100%
}

    .help-embed-container embed, .help-embed-container iframe, .help-embed-container object {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

.elementor-1100 .elementor-element.elementor-element-b2a9960 > .elementor-widget-container {
    padding: 40px 0 0
}

.cg-spon4-item-content {
    border-left: 1px solid;
    border-top: 1px solid;
    border-bottom: 1px solid
}

.cg-spon4-item {
    width: 80%;
    padding: 0 30px;
    border-right: 1px solid
}

    .cg-spon4-item .item-img {
        height: 150px;
        width: 150px;
        justify-content: center
    }

hithere animation {
    transform: rotate(8.70578deg) scale(1.1)
}

.cg-spon4-item:hover .item-img {
    -webkit-animation: 1s infinite hithere;
    animation: 1s infinite hithere
}

@keyframes hithere {
    30% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    40%,60% {
        -webkit-transform: rotate(-10deg) scale(1.1);
        transform: rotate(-10deg) scale(1.1)
    }

    50% {
        -webkit-transform: rotate(10deg) scale(1.1);
        transform: rotate(10deg) scale(1.1)
    }

    70% {
        -webkit-transform: rotate(0) scale(1.1);
        transform: rotate(0) scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.cg-spon4-content .cg-sec-title-2 .sec_title {
    max-width: 1000px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .cg-sec-title-2 .sec_title {
        font-size: 32px
    }
}

.cg-sec-title-2 .sec_title {
    line-height: 1.4;
    font-size: 28px;
    font-weight: 500;
    color: #23262a
}

.cg-sec-title-2 .subtitle {
    color: #ba0000;
    font-size: 18px;
    font-weight: 500
}

.section__heading--subtitle.color__white {
    color: #fff;
    font-size: 28px
}

.section__heading--subtitle span, p.first-letter::first-letter {
    color: #ba0000;
    font-size: 28px
}

.popular__featured--inner a {
    padding: 5px 15px;
    color: #fff;
    font-size: 15px;
    line-height: 2.8
}

    .fa-star.checked, .popular__featured--inner a:hover, .thumbnail-why-choose-5 .why-choose-option-five .single i {
        color: #ba0000
    }

.section_choose-us {
    margin: 60px 0
}

.rts-section-gap {
    padding: 120px 0
}

.g-24 {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px
}

.pb--50 {
    padding-bottom: 50px !important
}

.title-left-align-five span.pre {
    text-transform: uppercase;
    font-size: 16px;
    color: #ba0000;
    font-weight: 700
}

.title-left-align-five .title {
    font-size: 24px;
    text-transform: uppercase;
    color: #23262a;
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.5
}

.accordion-area-five .accordion-item {
    padding: 13px 40px;
    margin-bottom: 20px;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: none;
    border: none
}

    .accordion-area-five .accordion-item .accordion-button {
        background: #f9f4f2;
        border: none;
        box-shadow: none;
        font-size: 15px;
        font-weight: 600;
        color: #23262a;
        position: relative
    }

        .accordion-area-five .accordion-item .accordion-button::before {
            content: "";
            height: 144px;
            background-image: url(images/why-choose/icons/01.svg);
            position: absolute;
            right: 0;
            top: 20px;
            width: 0;
            transition: .3s
        }

        .accordion-area-five .accordion-item .accordion-button[aria-expanded=true]::before {
            opacity: 1;
            width: 144px
        }

    .accordion-area-five .accordion-item .accordion-body {
        max-width: 75%
    }

        .accordion-area-five .accordion-item .accordion-body p {
            color: #535353;
            line-height: 1.5;
            font-size: 14px
        }

        .accordion-area-five .accordion-item .accordion-body .more img {
            filter: brightness(0) saturate(100%) invert(39%) sepia(86%) saturate(3031%) hue-rotate(350deg) brightness(99%) contrast(97%)
        }

.thumbnail-why-choose-5 {
    border-radius: 10px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1
}

    .thumbnail-why-choose-5 .why-choose-option-five {
        position: absolute;
        padding: 40px;
        background: #1e1e20;
        z-index: 5;
        bottom: 20px;
        left: 20px;
        right: 20px;
        border-radius: 15px 50px 50px 50px;
    }

        .thumbnail-why-choose-5 .why-choose-option-five .single {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 5px
        }

.accordion-area-five .accordion-item .accordion-body .more {
    display: flex;
    margin-top: 15px;
    font-weight: 600;
    color: #ba0000;
    align-items: center;
    gap: 5px
}

.thumbnail-why-choose-5 .why-choose-option-five .single:last-child {
    margin-bottom: 0
}

.thumbnail-why-choose-5 .why-choose-option-five .single p {
    margin: 0 0 10px;
    color: #fff
}

.about-us-area-five {
    position: relative;
    z-index: 5;
    background: #fff
}

.about-wrapper-area-five .about-left-wrapper .title {
    font-size: 32px;
    line-height: 1.5;
    color: #141416;
    margin-top: 10px;
    margin-bottom: 20px
}

.about-wrapper-area-five {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 50px #172b4d19
}

.core-features-section, .other-cities, .rts-marque-area-appointment, .wpo-faq-section {
    background: #0b3742
}

.about-wrapper-area-five .about-left-wrapper {
    padding: 60px;
    max-width: 90%
}

    .about-wrapper-area-five .about-left-wrapper span.pre {
        font-size: 16px;
        text-transform: uppercase;
        color: #ba0000;
        font-weight: 600
    }

@media only screen and (max-width:1199px) {
    .accordion-area-five .accordion-item .accordion-button[aria-expanded=true]::before {
        display: none
    }

    .accordion-area-five .accordion-item .accordion-body {
        max-width: 100%
    }

    .about-wrapper-area-five {
        flex-direction: column
    }

        .about-wrapper-area-five .about-left-wrapper {
            padding: 25px
        }

            .about-wrapper-area-five .about-left-wrapper .title {
                font-size: 36px
            }
}

@media only screen and (max-width:991px) {
    .about-wrapper-area-five .about-left-wrapper .title {
        font-size: 32px
    }
}

@media only screen and (max-width:575px) {
    .accordion-area-five .accordion-item {
        padding: 13px 15px
    }

        .accordion-area-five .accordion-item .accordion-button {
            font-size: 16px;
            line-height: 1.5
        }

        .accordion-area-five .accordion-item .accordion-body {
            max-width: 100%
        }

    .thumbnail-why-choose-5 {
        height: 500px
    }

    .about-wrapper-area-five .about-left-wrapper .title {
        font-size: 22px;
        line-height: 1.5
    }
}

@media only screen and (min-width:1200px) and (max-width:1599px) {
    .about-wrapper-area-five .about-left-wrapper .title br, .accordion-area-five .accordion-item .accordion-button[aria-expanded=true]::before {
        display: none
    }

    .accordion-area-five .accordion-item .accordion-body {
        max-width: 100%;
        box-shadow: 0 5px 50px #172b4d19
    }
}

.about-wrapper-area-five .right-thumbnail {
    max-width: 578px;
    min-width: 578px;
    margin-right: 40px
}

@media only screen and (max-width:1199px) {
    .about-wrapper-area-five .right-thumbnail {
        max-width: 100%
    }
}

.about-wrapper-area-five .about-left-wrapper p.disc {
    margin-bottom: 35px;
    max-width: 100%;
    font-size: 14px;
    color: #535353
}

.wpo-breadcumb-area .nav-area-navigation {
    position: absolute;
    bottom: 0;
    background: #fff;
    padding: 15px 31px;
    border-radius: 10px 10px 0 0;
    gap: 33px;
    display: flex
}

    .wpo-breadcumb-area .nav-area-navigation a {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 15px;
        color: #23262a
    }

        .wpo-breadcumb-area .nav-area-navigation a.current {
            color: #ba0000;
            position: relative
        }

            .wpo-breadcumb-area .nav-area-navigation a.current::after {
                position: absolute;
                content: "";
                left: -20px;
                height: 4px;
                width: 4px;
                background: #d9d9d9;
                border-radius: 50%;
                top: 50%;
                transform: translateY(-50%)
            }

.rts-section-gapBottom {
    padding-bottom: 120px;
    padding-top: 120px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .rts-section-gapBottom {
        padding-bottom: 80px
    }
}

@media only screen and (max-width:767px) {
    .about-wrapper-area-five .about-left-wrapper .title br, .accordion-area-five .accordion-item .accordion-button[aria-expanded=true]::before {
        display: none
    }

    .about-wrapper-area-five .about-left-wrapper {
        padding: 15px
    }

    .rts-section-gapBottom {
        padding-bottom: 60px
    }
}

.reveal-item {
    position: relative;
    display: block;
    overflow: hidden
}

    .reveal-item .reveal-animation {
        position: absolute;
        top: 0;
        width: 100%;
        height: 101%;
        background: 0 0
    }

        .reveal-item .reveal-animation::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--bs-gray-400);
            -webkit-transition-property: -webkit-transform;
            transition-property: transform,-webkit-transform;
            -webkit-transition-duration: 1s;
            transition-duration: 1s
        }

.reveal-animation.reveal-end.aos-animate::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.reveal-animation.reveal-end::before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%
}

[data-aos=reveal-end] {
    -webkit-transition-property: -webkit-transform;
    transition-property: transform,-webkit-transform;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

    [data-aos=reveal-end].aos-animate {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

[data-aos=reveal-item] {
    visibility: hidden;
    -webkit-transition-property: visibility;
    transition-property: visibility;
    -webkit-transition-duration: 0s;
    transition-duration: 0s
}

    [data-aos=reveal-item].aos-animate {
        visibility: visible
    }

@keyframes scaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(1.5,1.5,1.5);
        transform: scale3d(1.5,1.5,1.5)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

.scaleIn {
    -webkit-animation-name: scaleIn;
    animation-name: scaleIn
}

img.video-icon-img {
    width: 50px !important;
    height: 50px !important;
    position: relative;
    bottom: 20px
}

.our-working-process-area-4.bg_image-process {
    background-image: url(../images/index/working-process-banner.jpg);
    height: 410px
}

marquee span {
    color: #fff;
    font-size: 36px
}

.modal-content1 {
    background-color: #00000050;
    margin: auto;
    padding: 20px;
    border: 2px solid #fff;
    width: 325px;
    height: 470px;
    border-radius: 1em;
}


#txtemail, #txtmeaasge, #txtmeaasge ::placeholder, #txtphone, #txtsubject, input#txtfullname {
    color: #fff
}

#txtemail, #txtmeaasge, #txtphone, #txtsubject, input#txtfullname {
    border: 0;
    border-bottom: 2px solid #fff;
    border-radius: 0
}

@media only screen and (min-width:0) and (max-width:767px) {
    .txtbox1 {
        width: 100%;
        color: #fff;
        padding-left: 10px;
        margin: 2px;
        background-color: #fff0
    }
}

.cg-location-sec {
    z-index: 1
}

    .cg-location-sec .cg-location-img {
        right: 0;
        bottom: 0;
        height: 100%;
        z-index: -1;
        position: absolute
    }

        .cg-location-sec .cg-location-img .item-img {
            width: 100%;
            height: 100%
        }

            .cg-location-sec .cg-location-img .item-img img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover
            }

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .cg-location-sec .cg-location-img {
        width: 50%
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .cg-location-sec .cg-location-img {
        width: 40%
    }
}

.cg-loc-counter {
    bottom: 0;
    left: -75px;
    width: 100%;
    height: 326px;
    max-width: 438px;
    position: absolute;
    background-color: rgb(255 255 255 / .3098039216);
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    clip-path: polygon(92.648% .755%,92.648% .755%,92.526% .616%,92.396% .491%,92.259% .379%,92.116% .28%,91.968% .196%,91.814% .126%,91.657% .072%,91.496% .032%,91.332% .008%,91.166% 0,2.105% 0,2.105% 0,1.764% .034%,1.44% .133%,1.138% .291%,.862% .503%,.617% .763%,.406% 1.067%,.235% 1.408%,.107% 1.782%,.028% 2.183%,0 2.606%,0 97.394%,0 97.394%,.028% 97.817%,.107% 98.218%,.235% 98.592%,.406% 98.933%,.617% 99.237%,.862% 99.497%,1.138% 99.709%,1.44% 99.867%,1.764% 99.966%,2.105% 100%,97.895% 100%,97.895% 100%,98.236% 99.966%,98.56% 99.867%,98.862% 99.709%,99.138% 99.497%,99.383% 99.237%,99.594% 98.933%,99.765% 98.592%,99.893% 98.218%,99.972% 97.817%,100% 97.394%,100% 10.859%,100% 10.859%,99.993% 10.652%,99.973% 10.447%,99.941% 10.246%,99.895% 10.049%,99.838% 9.857%,99.768% 9.671%,99.687% 9.493%,99.595% 9.322%,99.491% 9.161%,99.377% 9.009%,92.648% .755%)
}

    .cg-loc-counter h3 {
        color: #000;
        line-height: 1.1;
        font-size: 70px;
        font-weight: 500
    }

    .cg-loc-counter p {
        line-height: 1;
        font-size: 30px;
        color: #ba0000
    }

@media (max-width:767px) {
    .cg-location-sec .cg-sec-title-2 {
        margin-left: 0
    }

    .cg-loc-counter {
        bottom: 0;
        height: auto;
        padding: 30px
    }

        .cg-loc-counter h3 {
            font-size: 80px
        }

        .cg-loc-counter p {
            font-size: 28px
        }
}

.cg-location-wrap {
    max-width: 600px
}

@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:576px) and (max-width:767px),(max-width:767px) {
    .cg-location-sec .cg-location-img {
        width: 100%;
        margin: 0 auto 40px;
        max-width: 700px;
        position: relative
    }

    .cg-loc-counter {
        left: 0
    }

    .cg-location-wrap {
        margin: 0 auto
    }
}

.item-pin-wrap {
    width: 155px;
    cursor: pointer;
    position: absolute
}

    .item-pin-wrap:nth-child(2) {
        right: 0;
        top: 55px
    }

    .item-pin-wrap:nth-child(3) {
        top: 60px;
        left: 10%
    }

    .item-pin-wrap:nth-child(4) {
        top: 30%;
        left: 40%
    }

    .item-pin-wrap:nth-child(5) {
        top: 50%;
        right: 0
    }

    .item-pin-wrap:nth-child(6) {
        top: 60%;
        left: 25%
    }

    .item-pin-wrap:nth-child(7) {
        top: 65%;
        left: 55%
    }

    .item-pin-wrap span i {
        width: 5px;
        height: 5px;
        display: block;
        border-radius: 100%;
        background-color: var(--cg-pr-c2)
    }

    .item-pin-wrap .pin-text {
        top: -20px;
        left: -53px;
        opacity: 0;
        color: #fff;
        width: 110px;
        font-size: 14px;
        font-weight: 700;
        padding: 4px 20px;
        text-align: center;
        position: absolute;
        border-radius: 30px;
        visibility: hidden;
        background-color: #ba0000;
        animation: 1s ease-out infinite icon-bounce;
        transition: .4s cubic-bezier(.57,.21,.69,1.25)
    }

@media (max-width:480px) {
    .cg-loc-counter h3 {
        font-size: 60px
    }

    .item-pin-wrap:nth-child(4) {
        left: 15%
    }

    .item-pin-wrap .pin-text {
        display: none
    }
}

.item-pin-wrap .pin-text::before {
    left: 50%;
    content: "";
    bottom: -10px;
    position: absolute;
    border-left: 8px solid #fff0;
    border-right: 8px solid #fff0;
    border-top: 15px solid #ba0000;
    transform: translateX(-50%)
}

.item-pin-wrap:hover .pin-text, .item-pin-wrap:is(.active) .pin-text {
    opacity: 1;
    top: -40px;
    visibility: visible
}

@keyframes icon-bounce {
    0%,100%,20%,50%,80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
}

.item-pin-wrap span::before {
    top: -5px;
    left: -5px;
    width: 15px;
    opacity: .2;
    content: "";
    height: 15px;
    position: absolute;
    border-radius: 100%;
    background-color: #0195f7
}

.item-pin-wrap span::after {
    top: -10px;
    left: -11px;
    width: 26px;
    content: "";
    opacity: .1;
    height: 26px;
    position: absolute;
    border-radius: 100%;
    background-color: #0195f7;
    -webkit-animation: 1.5s cubic-bezier(.4,0,1,1) infinite both borderpls;
    animation: 1.5s cubic-bezier(.4,0,1,1) infinite both borderpls
}

@keyframes borderpls {
    0% {
        -webkit-box-shadow: 0 0 0 0 #0195f7;
        box-shadow: 0 0 0 0 #0195f7
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px #0195f7;
        box-shadow: 0 0 0 10px #0195f7;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #0195f7;
        box-shadow: 0 0 0 0 #0195f7;
        opacity: 0
    }
}

.with-icon .section-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    text-align: center
}

.core-features-section {
    padding: 0 0 100px
}

    .core-features-section.core-one {
        background: #fff !important
    }

.section-heading {
    padding: 30px 0
}

.section-title {
    font-size: 26px;
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 1px
}

.section-subtitle {
    font-style: italic;
    font-size: 16px;
    color: #999;
    margin-bottom: 15px;
    text-align: center
}

.design-arrow {
    width: 1px;
    height: 50px;
    background: #ddd;
    position: relative;
    margin: 10px auto
}

    .design-arrow.inline-arrow {
        display: inline-block;
        vertical-align: middle;
        float: none
    }

    .design-arrow::after {
        content: "";
        display: block;
        position: absolute;
        width: 11px;
        height: 11px;
        border: 2px solid #ba0000;
        border-radius: 50%;
        top: 100%;
        left: -5px
    }

.navigation-item {
    box-shadow: 0 5px 50px #172b4d19;
    padding: 20px;
    border-radius: 15px 50px 50px 50px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px
}

    .navigation-item .navigation-icon {
        margin: 0 auto 55px;
        width: 170px;
        max-width: 100%;
        background: #eff2f7;
        border-radius: 5px;
        padding: 25px 0;
        text-align: center;
        position: relative;
        transition: .3s ease-out
    }

        .navigation-item .navigation-icon::after {
            content: "";
            border: 15px solid #fff0;
            border-top: 15px solid #eff2f7;
            display: block;
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -15px;
            transition: .3s ease-out
        }

        .navigation-item .navigation-icon .icon {
            display: inline-block;
            width: 88px;
            height: 88px;
            line-height: 88px;
            border: 1px solid #fff;
            text-align: center;
            font-size: 32px;
            color: #666;
            border-radius: 50%;
            background: #fff;
            transition: .3s ease-out
        }

    .navigation-item h5::after {
        margin: 20px auto 0;
        content: "";
        display: block;
        width: 25px;
        height: 4px;
        background: #ba0000
    }

.media-image i.fa, .testimonial {
    display: flex;
    justify-content: center
}

.navigation-item h5 {
    font-size: 14px;
    text-transform: capitalize
}

.media-image:hover, .navigation-icon:hover, .rts-projects-area-inner.services-tab .nav.nav-tabs li button[aria-selected=true] .navigation-icon {
    background: #ba0000
}

    .navigation-icon:hover::after, .rts-projects-area-inner.services-tab .nav.nav-tabs li button[aria-selected=true] .navigation-icon::after {
        border-top-color: #ba0000
    }

.rts-projects-area-inner.services-tab .nav.nav-tabs li button, .rts-projects-area-inner.services-tab .nav.nav-tabs li button[aria-selected=true] {
    box-shadow: none !important
}

.rts-projects-area-inner.services-tab .nav.nav-tabs li [aria-selected=true] .navigation-item h5 {
    color: #ba0000 !important;
    text-transform: capitalize
}

.rts-projects-area-inner.services-tab .nav.nav-tabs {
    gap: 60px !important;
    margin-top: -30px
}

.navigation-icon .icon:hover {
    background: #ba0000;
    border-color: #ffb07c;
    color: #fff
}

h5.italic-title {
    font-size: 16px;
    color: #535353;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: none;
    font-style: italic
}

ul.list-one li, ul.marker-list {
    margin-bottom: 15px
}

.media-city h5, .mission-sec h3, .news-item .news-body h5, .security-city h3, .sustain-inner .rts-single-service-three .content-area h4, .testimonial_box-job p {
    text-transform: capitalize
}

ul.marker-list li {
    color: #535353;
    font-size: 16px;
    line-height: 24px;
    padding: 3px 0;
    font-weight: 500;
    position: relative
}

ul.list-one li, ul.list-one-city li {
    margin-top: 15px;
    font-weight: 400;
    position: relative
}

    ul.list-one li::before, ul.list-one-city li::before, ul.marker-list li::before {
        content: " ";
        position: absolute;
        top: 4px;
        left: -20px;
        display: inline-block;
        transform: rotate(45deg);
        height: 1em;
        width: .5em;
        border-bottom: .2em solid #ba0000;
        border-right: .2em solid #ba0000
    }

.services-section.service-service-section {
    background: url('../images/services/dedicated-services/service-offerings.jpg') center/cover no-repeat;
    padding: 40px 0 140px
}

    .services-section.service-service-section.oms-service {
        background: url('../images/services/oms/oms-service.jpg') center/cover no-repeat;
        padding: 40px 0 140px
    }

.media {
    padding: 40px 0 20px;
    margin: 0 auto
}

.media-image {
    width: 60px;
    height: 60px;
    line-height: 38px;
    background: 0 0;
    border: 5px solid #fff;
    padding: 8px;
    border-radius: 50%
}

.offers-section .text-item, .offers-section .text-item.left-item, .offers-section .text-item.top-item {
    box-shadow: 0 5px 50px #172b4d19;
    padding: 20px;
    border-radius: 12px
}

.icon-DesktopMonitor img {
    width: 50px;
    height: 50px
}

.media-image i.fa {
    font-size: 26px;
    color: #535353 !important;
    padding: 17px
}

.media-image:hover i.fa, .theme-btn.city-contact:hover, .theme-btn.tags:hover, .visa-package-content h5 a:hover {
    color: #fff !important
}

.media-body {
    margin-top: 0
}

    .media-body h3 {
        margin-top: 1em;
        margin-bottom: .5em;
        font-size: 22px;
        color: #fff;
        font-weight: 600
    }

    .media-body p {
        margin-top: 0;
        font-size: 11px;
        line-height: 1.5;
        text-align: justify;
        color: #ffffff94
    }

@media (min-width:480px) {
    .media-image {
        float: left;
        margin-right: 1em
    }

    .media-body {
        overflow: auto
    }

        .media-body h3 {
            margin-top: 0
        }

        .media-body p {
            font-size: 1rem
        }
}

.offers-section .text-item.top-item {
    margin-bottom: 55px
}

.offers-section .text-item.left-item {
    text-align: right
}

.offers-section .text-item {
    position: relative;
    margin-bottom: 57px;
    transition: 1s
}

    .offers-section .text-item h5 {
        font-size: 14px;
        margin-bottom: 10px
    }

    .offers-section .text-item em {
        margin-bottom: 10px;
        display: block
    }

    .offers-section .text-item p {
        font-size: 12px;
        color: #535353
    }

.service-categories {
    background: #fff;
    box-shadow: 0 3px 14px rgb(0 0 0 / 8%);
    border-radius: 5px;
    padding: 30px 20px;
    height: 100%;
    text-align: center;
    transform: scale(.95);
    transition: box-shadow .5s,transform .5s
}

    .service-categories h6 {
        color: #23262a;
        font-size: 16px;
        position: relative;
        top: 8px
    }

    .service-categories:hover {
        background-color: #ba0000;
        transition: 1s;
        transform: scale(1)
    }

        .service-categories:hover h6, .visa-package-grid-section .visa-package-card:hover .visa-package-content h5, .visa-package-grid-section .visa-package-card:hover .visa-package-content span {
            color: #fff
        }

.news-item {
    margin: 0 auto 15px;
    max-width: 360px
}

    .news-item .meta {
        padding: 15px 0
    }

        .news-item .meta .meta-item {
            display: inline-block;
            vertical-align: middle;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            color: #666;
            margin-right: 10px
        }

            .news-item .meta .meta-item .icon {
                font-size: 11px;
                margin-right: 7px;
                vertical-align: middle;
                color: #666
            }

    .news-item .image img {
        vertical-align: middle;
        max-width: 100%
    }

    .news-item .image .image-content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgb(0 0 0 / .8);
        display: table-cell;
        vertical-align: bottom;
        transition: .3s ease-out;
        opacity: 0
    }

    .news-item .image .read-more {
        position: absolute;
        font-size: 13px;
        bottom: 35px;
        left: 30px;
        display: block;
        color: #fff;
        text-transform: uppercase
    }

.latest-news-section {
    background: #fff;
    padding: 25px 0
}

.news-item .user-avatar {
    position: relative;
    margin-bottom: 30px
}

    .news-item .user-avatar .avatar {
        float: right;
        margin-top: -40px;
        width: 70px;
        height: 70px;
        margin-right: 15px;
        border: 5px solid #fff;
        border-radius: 50%;
        overflow: hidden
    }

        .news-item .user-avatar .avatar img {
            width: 100%;
            height: 100%;
            vertical-align: middle
        }

.news-item .news-body h5 {
    color: #23262a;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    line-height: 1.6
}

    .media-city h5::after, .news-item .news-body h5::after {
        content: "";
        display: block;
        margin-top: 20px;
        width: 25px;
        height: 4px;
        background: #ba0000
    }

.news-item .news-body p {
    font-size: 13px;
    color: #535353;
    text-align: justify;
    line-height: 2;
    margin: 0 0 2.14em
}

ul.list-one li {
    font-size: 16px;
    line-height: 1.7 !important
}

.news-body {
    padding: 25px;
    background: #fff;
    box-shadow: 0 5px 50px #172b4d19
}

.services-main {
    padding: 8em 0;
    background: #fff
}

    .services-main .inner__content {
        margin-bottom: 3em
    }

    .services-main .inner__clr {
        color: #0ba08a
    }

    .services-main .inner__text {
        text-align: left
    }

    .services-main .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
        grid-gap: 4em 2rem
    }

    .services-main .card {
        border-radius: 6px;
        box-shadow: 0 20px 40px 0 rgb(173 181 189 / .1);
        border: 1px solid;
        background-color: #fff;
        padding: 22px;
        text-align: center;
        position: relative;
        margin-top: 20px
    }

        .services-main .card:first-child::before, .services-main .card:nth-child(11)::before, .services-main .card:nth-child(13)::before, .services-main .card:nth-child(6)::before, .services-main .card:nth-child(8)::before {
            content: "";
            position: absolute;
            background-color: #ba0000;
            top: -8px;
            left: -1px;
            width: calc(100% + 2px);
            height: 8px;
            border-radius: 6px 6px 0 0
        }

        .services-main .card:nth-child(2)::before, .services-main .card:nth-child(5)::before, .services-main .card:nth-child(7)::before {
            content: "";
            position: absolute;
            background-color: #23262a;
            top: -8px;
            left: -1px;
            width: calc(100% + 2px);
            height: 8px;
            border-radius: 6px 6px 0 0
        }

        .services-main .card:nth-child(10)::before, .services-main .card:nth-child(15)::before, .services-main .card:nth-child(3)::before, .services-main .card:nth-child(4)::before, .services-main .card:nth-child(9)::before {
            content: "";
            position: absolute;
            background-color: #0ba08a;
            top: -8px;
            left: -1px;
            width: calc(100% + 2px);
            height: 8px;
            border-radius: 6px 6px 0 0
        }

        .services-main .card:nth-child(12)::before, .services-main .card:nth-child(14)::before {
            content: "";
            position: absolute;
            background-color: #26232a;
            top: -8px;
            left: -1px;
            width: calc(100% + 2px);
            height: 8px;
            border-radius: 6px 6px 0 0
        }

    .services-main img.card__icon {
        width: 200px;
        height: 200px;
        margin: 0 auto
    }

.form-group input.form-contact, .form-group textarea.form-contact {
    background: 0 0;
    box-shadow: none !important;
    outline: 0;
    padding-left: 0;
    height: 50px
}

.services-main .card__body {
    padding-top: 1em
}

.services-main .card__head {
    font-size: 18px;
    margin-bottom: 1em;
    color: #23262a
}

@media (min-width:750px) {
    .services-main .inner {
        padding: 1em 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%
    }

    .services-main .inner__sub {
        font-size: 14px;
        color: #ba0000;
        margin-bottom: 0
    }

    .services-main .inner__headings {
        flex: 1 0 30%
    }

    .services-main .inner__content {
        flex: 1 0 50%;
        align-self: center;
        margin-left: 2rem
    }

    .services-main .inner__head {
        font-size: 32px;
        color: #23262a;
        line-height: 1.5
    }
}

.single-working-process-four::before, .single-working-process-one::before, .single-working-process-three::before, .single-working-process-two::before {
    top: 48%;
    font-size: 100px;
    color: rgb(0 0 0 / .05);
    font-weight: 700;
    right: 30px
}

.helpLink.helplink-video, .helplink-city {
    line-height: 18pt;
    user-select: none;
    cursor: pointer;
    text-align: center
}

.pbmit-service-style-3 .pbminfotech-post-item {
    border: 1px solid #ffffff1a !important;
    border-radius: 30px !important;
    padding: 10px !important;
    background: #0b3742 !important
}

.pbmit-service-style-3 .pbmit-service-icon svg {
    fill: #fff !important
}

.single-process-wrapper-4 h5.title {
    font-size: 20px
}

.bg-dark-gray {
    background-color: #252840
}

h2.h2-industries {
    font-size: 44px;
    line-height: 1.2
}

.feature-box {
    width: 217px;
    height: 200px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    text-align: center
}

    .feature-box:hover {
        background: #ba0000;
        transition: .4s cubic-bezier(.12,0,.39,0)
    }

.feature-box-icon i.industries-fa {
    font-size: 52px;
    color: #fff
}

.feature-box .feature-box-content span {
    font-size: 15px;
    margin-top: 20px
}

.industries-sec, .slick-testimonial {
    background: radial-gradient(500.74% 97.55% at 234.64% 100.36%,#fff0 0,#212529 65.98%,#212529 26.99%);
    padding-bottom: 5em
}

.testimonial {
    width: 100%;
    height: 60vh;
    align-items: center;
    color: #14213d
}

.testimonial_box-img, .testimonial_box-info {
    justify-content: center;
    display: flex
}

.slick-testimonial h2 {
    color: #fff;
    line-height: 1.5;
    font-size: 34px;
    padding: 3em 0 0
}

.testimonial_box-name h4, .testimonial_box-text p {
    line-height: 25px;
    margin-bottom: 0
}

.testimonial-slide {
    padding: 20px
}

.testimonial_box-top {
    background-color: #e5e5e5;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    position: relative;
    box-shadow: 5px 5px 20px rgb(229 229 229 / .301);
    height: 200px
}

span.fa.fa-star {
    font-size: 26px
}

.slick-testimonial span h2 {
    color: #fff;
    line-height: 1.5;
    font-size: 34px
}

.testimonial_box-icon {
    margin-top: -12px;
    padding-right: 20px
}

    .testimonial_box-icon i {
        font-size: 25px;
        color: #14213d
    }

.testimonial_box-text p {
    color: #707070;
    font-size: 14px
}

.testimonial_box-job p, .testimonial_box-name h4, .testimonial_box-name h4 span {
    color: #e5e5e5;
    font-size: 14px
}

.testimonial_box-shape {
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background-color: #e5e5e5;
    -webkit-transform: rotateZ(50deg);
    transform: rotateZ(45deg)
}

.testimonial_box-bottom {
    padding-top: 35px;
    padding-left: 25px
}

.testimonial_box-profile {
    display: flex
}

.testimonial_box-img img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #e5e5e5
}

.card__city .image1, .card__city .image2, .card__city .image3, .card__city .image4, .card__city .image5, .card__city .image6, .card__city .image7 {
    padding: 300px 0 0;
    background-size: COVER;
    background-position: center;
    border-radius: 10px 10px 0 0;
    background-color: #fff0
}

.testimonial_box-info {
    flex-direction: column;
    padding-left: 20px
}

.testimonial_box-job p {
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 10px
}

.media-city p, .slick-dots li button:before {
    font-size: 13px;
}

.slick-dots li.slick-active button:before {
    font-size: 15px;
    color: #ba0000
}

.wpo-breadcumb-area-city {
    background-image: url(6595364-uhd_3840_2160_24fps.mp4)
}

.career-wrapper, .construction-portfolio-area {
    background: #f9f4f2
}

ul.list-one-city li {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
    display: inline-block;
    padding: 0 5px
}

.h2-size h2.section__heading--title {
    font-size: 38px;
    line-height: 1.5
}

.section__heading--title {
    font-weight: 500
}

h3.city-features {
    font-size: 19px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    background: #f7f7f7;
    box-shadow: 1px 2px 7px 0 #c5c5c5cc;
    padding: 15px
}

.helplink-city {
    display: block;
    font-size: 72pt;
    font-weight: 400;
    color: #999;
    position: absolute;
    top: 50% !important;
    right: 47%;
    padding-left: .1em;
    transition: .1s ease-in-out
}

.card__city {
    width: 400px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 15px 0 rgb(0 0 0 / .08)
}

    .card__city .image1 {
        background-image: url(images/city/mumbai.png)
    }

    .card__city .image2 {
        background-image: url(images/city/hyedrabad.png)
    }

    .card__city .image3 {
        background-image: url(images/city/bangalore.png)
    }

    .card__city .image4 {
        background-image: url(images/city/delhi.png)
    }

    .card__city .image5 {
        background-image: url(images/city/kolkata.png)
    }

    .card__city .image6 {
        background-image: url(images/city/pune.png)
    }

    .card__city .image7 {
        background-image: url(images/city/gurugram.png)
    }

    .card__city .detail-top {
        border-top: 5px solid #0ba08a;
        transform: rotate(4deg);
        background: #fff;
        height: 35px;
        margin-top: -25px;
        margin-left: -10px;
        box-shadow: -8px -8px 5px 2px rgb(0 0 0 / .25)
    }

    .card__city .detail {
        background: #fff;
        padding: 30px 20px;
        text-align: center;
        border-radius: 0 0 10px 10px;
        z-index: 1;
        margin-top: -18px
    }

        .card__city .detail h2 {
            font-size: 18px;
            color: #26232a
        }

        .card__city .detail:hover h2, .text span {
            color: #ba0000
        }

.service-card.city:hover::before {
    width: unset !important
}

.form-group input.form-contact {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-size: 11px;
    color: #999
}

.form-group textarea.form-contact {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-size: 11px;
    color: #999;
    min-height: 155px;
    resize: none;
    margin-bottom: 30px
}

.career-wrapper {
    margin-top: 80px;
    padding-top: 44px
}

.single-working-process-one::before {
    position: absolute;
    content: "01";
    transform: translateY(-50%)
}

.single-working-process-two::before {
    position: absolute;
    content: "02";
    transform: translateY(-50%)
}

.single-working-process-three::before {
    position: absolute;
    content: "03";
    transform: translateY(-50%)
}

.single-working-process-four::before {
    position: absolute;
    content: "04";
    transform: translateY(-50%)
}

.title-three-left .bg-title {
    font-size: 150px;
    position: absolute;
    left: 0;
    top: -13px;
    z-index: -1;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(180deg,#0c0a0a 0,#fff0 100%);
    opacity: .06;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    height: 93px;
    display: flex;
    align-items: center;
    -webkit-text-stroke: 1px #000
}

.career-page .rts-single-service-two {
    padding: 50px;
    border: 1px solid #c4c4c4;
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    transition: .3s;
    height: 100%
}

select.form-contact.border-0.border-bottom {
    padding-bottom: 33px;
    color: #999;
    font-size: 11px
}

.security-city h3 {
    font-size: 19px;
    margin-bottom: 15px
}

.security-city p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #7c7c84
}

.media-city h5 {
    font-size: 18px
}

h2.mission-h2 {
    line-height: 1.4;
    font-size: 40px;
    font-weight: 400;
    color: #23262a;
    margin-top: 30px
}

.tabs {
    display: flex;
    flex-wrap: wrap
}

    .tabs label {
        order: 1;
        display: block;
        padding: 1rem 2rem;
        margin-right: .2rem;
        cursor: pointer;
        background: #fff;
        font-weight: 700;
        transition: background .2s;
        color: #23262a
    }

    .tabs .tab {
        order: 99;
        flex-grow: 1;
        width: 100%;
        display: none;
        padding: 3rem;
        background: #fff
    }

    .tabs input[type=radio] {
        display: none;
        border-bottom: 1px solid #dee2e6
    }

        .tabs input[type=radio]:checked + label {
            background: #fff0;
            color: #ba0000;
            border-bottom: 1px solid #ba0000;
            font-size: 18px
        }

        .tabs input[type=radio] + label {
            font-size: 18px;
            color: #23262a;
            background: #fff0;
            border-bottom: 1px solid #dee2e6
        }

        .tabs input[type=radio]:checked + label + .tab {
            display: block;
            box-shadow: 0 5px 50px #172b4d19
        }

@media (max-width:45em) {
    .tabs .tab, .tabs label {
        order: initial
    }

    .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: .2rem
    }
}

.mission-sec h3 {
    font-size: 18px;
    line-height: 1.3;
    color: #23262a;
    font-weight: 600
}

.mission-sec ul.mission-li li {
    color: #20273c;
    font-size: 16px;
    font-weight: 500;
    line-height: 33px;
    text-transform: capitalize;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px
}

    .mission-sec ul.mission-li li::before {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-family: flaticon_logistics !important;
        content: "\f126";
        font-size: 14px;
        color: #ba0000;
        width: 18px;
        height: 18px;
        text-align: center;
        line-height: 18px;
        border-radius: 100px;
        border: 1px solid #ba0000
    }

.feature-two__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

    .feature-two__text p {
        font-size: 18px;
        line-height: 34px;
        color: #23262a;
        font-weight: 500
    }

        .feature-two__text p a {
            font-weight: 600;
            color: #ba0000;
            transition: .4s;
        }

            .feature-two__text p a:hover {
                color: #fff;
                background: #ba0000;
                padding: 13px;
                border-radius: 15px 50px 50px 50px;
                transform: translateY(-10px) scale(1.03);
            }

h5.inner__sub::after {
    margin-left: 0 !important
}

.steps {
    counter-reset: item-counter;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-top: 60px
}

.steps__item {
    position: relative;
    border: 1px solid #000;
    padding: 30px 35px;
    transition: .2s ease-in-out
}

    .steps__item::before {
        counter-increment: item-counter;
        content: "0" counter(item-counter);
        position: absolute;
        top: -25px;
        left: 25px;
        background: #fff;
        padding: 0 10px;
        font-style: italic;
        font-size: 2.5rem;
        color: #435343;
        border-radius: 5px
    }

.steps__item-title {
    font-size: 21px;
    font-weight: 500;
    color: #333;
    margin: 0;
    transition: .2s ease-in-out
}

.steps__item-paragraph {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    margin-top: 30px;
    color: #333;
    transition: .3s ease-in-out;
    text-align: center
}

.steps__item:hover {
    background: rgb(51 51 51 / .1)
}

    .steps__item:hover::after {
        opacity: .4;
        transform: translateX(0)
    }

.steps__item::after {
    content: "0" counter(item-counter);
    position: absolute;
    right: 0;
    bottom: 70px;
    font-weight: 500;
    font-size: 110px;
    color: #ba0000;
    transition: .3s ease-in-out;
    transform: translateX(10%);
    opacity: 0
}

.sustain-inner .rts-single-service-three {
    display: flex;
    align-items: center;
    padding: 30px;
    border: 1px solid #b4b4b4
}

    .sustain-inner .rts-single-service-three .thumbnail-area {
        flex-basis: auto;
        padding: 10px;
        display: block;
        width: 130px;
        border: 1px solid #b4b4b4
    }

    .sustain-inner .rts-single-service-three .content-area {
        margin-left: 22px
    }

.rts-single-service-three {
    background: #f9f4f2;
    transform: scale(.95);
    transition: box-shadow .5s,transform .5s
}

    .rts-single-service-three:hover {
        transition: 1s
    }

.inner-content {
    border: 3px solid #ba0000;
    padding: 30px;
    border-radius: 20px
}

    .inner-content.inner-one {
        border: 0;
        padding: 0
    }

        .inner-content.inner-one .single {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 6px;
            border: 1px solid #edecec
        }

.helpLink.helplink-video {
    display: block;
    font-size: 72pt;
    font-weight: 400;
    color: #999;
    position: absolute;
    top: 120px;
    left: 0 !important;
    right: 0 !important;
    padding-left: .1em;
    transition: .1s ease-in-out
}

.video-section.city-video {
    height: 300px
}

.component {
    min-height: 100px;
    width: 90%
}

    .component ul.accordion {
        margin: 1% 0;
        padding: 0;
        text-align: left;
        list-style: none
    }

        .component ul.accordion .inner {
            padding-left: 1em;
            overflow: hidden;
            display: none;
            list-style: none
        }

    .component li {
        padding: 2px 0
    }

        .component li p.nest {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #5d666f;
            font-weight: 500;
            padding: 15px 25px;
            background: #fff;
            transition: .3s;
            border-radius: 5px
        }

            .component li p.nest:hover {
                background: #ba0000;
                transform: translateY(-5px) scale(1.03);
                color: #fff
            }

    .component inner li p.nest {
        background: #666
    }

    .component .inner .inner li p.nest {
        background: #a9a9a9
    }

.Card-feedback .Card {
    background-color: #fff;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: -12px 15px 38px -18px rgb(94 100 140 / .43);
    padding: 34px;
    margin: 0
}

.Card-feedback p {
    font-size: 16px;
    margin: 0;
    padding-top: 8px;
    color: #adadad;
    padding-bottom: 16px
}

.Card-feedback #feedback-form {
    width: 100%;
    padding-top: 8px;
    margin: 0;
    font-size: 16px;
    color: #fff;
    background-color: #b5deff30;
    border: 0 solid #0082ff;
    border-radius: 5px;
    resize: vertical
}

    .Card-feedback #feedback-form:focus {
        color: #000;
        border: 1px solid #9e9e9e
    }

.Card-feedback a.feedback-btn {
    width: 100%;
    border-radius: 32px;
    height: 46px;
    margin: 0;
    background-color: #fff;
    padding: 18px 30px;
    color: #23262a;
    font-weight: 700;
    font-size: 16px;
    border: 0
}

    .Card-feedback a.feedback-btn:hover {
        background-color: rgb(186 0 0 / .7);
        color: #fff
    }

.faq-section {
    margin: auto;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #23262a
}

    .faq-question::after {
        content: "+";
        position: absolute;
        right: 0;
        font-size: 18px;
        transition: transform .3s
    }

.theme-btn.city-contact, .theme-btn.tags {
    background: #f6f6f6;
    color: #26232a;
    display: inline-block;
    z-index: 1;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
    overflow: hidden
}

.faq-item.active .faq-question::after {
    content: "−"
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #535353
}

img.city-marker {
    width: 20px;
    height: 20px
}

.fa.fa-phone.call-phone {
    color: #fff;
    background: #26232a;
    padding: 30px;
    border-radius: 50%;
    font-size: 26px;
    margin-right: 20px
}

    .fa.fa-phone.call-phone:hover {
        background: rgb(186 0 0 / .7)
    }

#navigation, #navlist {
    margin: 15px
}

    #navigation h1 a {
        font-size: 18px;
        font-weight: 500;
        color: #ba0000
    }

    #navlist li {
        list-style-type: square;
        color: #535353
    }

.theme-btn.tags {
    padding: 5px 30px !important;
    border: 0;
    border-radius: 0
}

.theme-btn.city-contact {
    padding: 10px 35px !important;
    border: 0;
    border-radius: 7px
}

.nw-sd-global {
    border-bottom: 1px solid #333338;
    padding: 20px
}

.btn-2 {
    position: relative;
    right: 36px
}

.bdr-right {
    border-right: 1px solid #dee2e6
}

@keyframes fadeinout {
    0%,100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}
.wpo-breadcumb-area.services {
    background: url('../images/services/banner/service.webp') center top/cover no-repeat;
    flex-direction: column
}
.wpo-breadcumb-area.apparel {
    background: url('../images/industries/apparel-lifestyle/Apparel & Lifestyle banner.webp') center top/cover no-repeat;
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1
}

.wpo-breadcumb-area.cosmetics, .wpo-breadcumb-area.telecom {
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1
}

    .wpo-breadcumb-area.about-us-banner::before, .wpo-breadcumb-area.aerospace::before, .wpo-breadcumb-area.apparel::before, .wpo-breadcumb-area.blog-banner::before, .wpo-breadcumb-area.contact-us-banner::before, .wpo-breadcumb-area.contract-logistics-banner::before, .wpo-breadcumb-area.cosmetics::before, .wpo-breadcumb-area.durables::before, .wpo-breadcumb-area.dwm::before, .wpo-breadcumb-area.ecommerce-industry::before, .wpo-breadcumb-area.fulfillment-banner::before, .wpo-breadcumb-area.oms-banner::before, .wpo-breadcumb-area.on-demand-banner::before, .wpo-breadcumb-area.rlm-banner::before, .wpo-breadcumb-area.telecom::before, .wpo-breadcumb-area.transport::before, .wpo-breadcumb-area.vas::before, .wpo-breadcumb-area.warehouse-services-banner::before, .wpo-breadcumb-area.why-choose-us::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(36deg,#042b33 0,rgb(2 25 41 / .9220063025) 37%,rgb(0 7 31 / .2973564426) 59%);
        content: "";
        z-index: -1
    }
.wpo-breadcumb-area.pharma {
    background: url('../images/industries/e-commerce/e-commerce_banner.jpg') center top/cover no-repeat;
    flex-direction: column
}
.wpo-breadcumb-area.cosmetics {
    background: url('../images/industries/cosmetics/Beauty & Cosmetics   banner.webp') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.telecom {
    background: url('../images/industries/telecom-solar/Telecom & Solar  image banner.webp') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.aerospace, .wpo-breadcumb-area.durables {
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center
}

.wpo-breadcumb-area.aerospace {
    background: url('../images/industries/aerospace/Automotive & Aerospace banner.webp') center top/cover no-repeat;
    flex-direction: column;
    z-index: 1
}

.wpo-breadcumb-area.durables {
    background: url('../images/industries/durables/Electronics & Durables banner.webp') center top/cover no-repeat;
    flex-direction: column;
    z-index: 1
}

.wpo-breadcumb-area.transport, .wpo-breadcumb-area.vas {
    justify-content: center;
    z-index: 1;
    min-height: 680px;
    position: relative;
    display: flex
}

.wpo-breadcumb-area.transport {
    background: url('../images/services/banner/Transport Services.jpg') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.vas {
    background: url('../images/services/banner/value added banner.jpg') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.why-choose-us {
    background: url('../images/why-choose-us/why choose.jpg') center top/cover no-repeat;
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1
}

.wpo-breadcumb-area.contact-us-banner {
    background: url('../images/contact-us/contact-us-banner.jpg') center top/cover no-repeat;
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1
}

.wpo-breadcumb-area.about-us-banner, .wpo-breadcumb-area.dwm-banner {
    justify-content: center;
    min-height: 680px;
    z-index: 1;
    position: relative;
    display: flex
}

.wpo-breadcumb-area.about-us-banner {
    background: url('../images/about-us/about us-banner (1).jpg') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.dwm-banner {
    background: url('../images/services/dedicated-services/Dedicated Warehouse Service.jpg') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.ecommerce-industry {
    background: url('../images/industries/e-commerce/e-commerce_banner.jpg') center top/cover no-repeat;
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1
}

@media (max-width:991px) {
    .wpo-breadcumb-area.ecommerce-industry, .wpo-breadcumb-area.why-choose-us {
        min-height: 500px
    }
}

img.img-fluid.lazyloaded--img.w-l-img {
    position: relative;
    right: 40px
}

.services-stats h4 {
    font-size: 16px;
    color: #ba0000
}

.services-stats h3 {
    font-size: 19px;
    color: #26232a
}

.services-stats .bdr {
    border-right: 2px solid #00000026
}

.services-stats p {
    font-size: 14px
}

h2.title-who-we-are {
    font-size: 35px
}

h1.title {
    font-size: 38px
}

h4.title_service-offerings {
    font-size: 17px;
    color: #fff;
    text-transform: capitalize
}

img.strengths-about-us, img.who-we-are-img {
    width: 500px
}

.sub-menu.sub-menu-one {
    width: 1000px !important;
    left: -210% !important
}

table.table.table-bo

rdered tr th {
    border: 1px solid #333338;
    padding: 20px
}

.bdr-right-city {
    border-right: 2px solid #d3d3d3
}

h4.inner__sub {
    font-size: 15px !important;
    position: relative;
    top: 10px
}

.city-right {
   height: 100%;
    border-radius: 1rem;
    box-shadow: 0 5px 50px #172b4d19;
}

.fa.fa-chevron-right {
    color: #ba0000;
    font-size: 16px
}

.mutli-para {
    column-count: 3;
    column-gap: 30px;
    column-rule-color: #ba0000;
    column-rule-style: double;
    column-rule-width: 4px;
    column-width: 50px;
    font-size: 14px !important
}

.single-project-card-inner .inner.inner-one {
    position: relative;
    left: 0;
    bottom: 84px;
    width: 86%;
    padding: 30px;
    background: linear-gradient(90deg,#ba0000 0,#fff0 225%);
    backdrop-filter: blur(2.5px);
    border-radius: 0 0 10px 10px;
    transition: .5s
}

.wrapper-1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column
}

.wpo-breadcumb-area.blog-banner, .wpo-breadcumb-area.rlm-banner {
    justify-content: center;
    z-index: 1;
    min-height: 680px;
    position: relative;
    display: flex
}

.wrapper-2 {
    padding: 30px;
    text-align: center
}

h1.thankyou {
    font-size: 4em;
    letter-spacing: 3px;
    color: #ba0000;
    margin: 0 0 20px
}

.wrapper-2 p {
    margin: 0;
    font-size: 16px;
    color: #535353;
    letter-spacing: 1px;
    text-align: center
}

@media (min-width:360px) {
    h1.thankyou {
        font-size: 2.5em
    }
}

@media (min-width:600px) {
    .toggleBox label {
        font-size: 12pt
    }

    .toggleBox small {
        display: none
    }

    .content {
        max-width: 1000px;
        margin: 20px auto
    }

    .wrapper-1 {
        height: initial;
        max-width: 620px;
        margin: 50px auto 0;
        box-shadow: 4px 8px 40px 8px #ba000030
    }
}

.wpo-breadcumb-area.rlm-banner {
    background: url('../images/services/reverse-logistics-mgmt/rlm-banner (1).jpg') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.blog-banner {
    background: url('../images/Blogs/blog-banner.jpg') center top/cover no-repeat;
    flex-direction: column
}

.services-section.rlm-section-2 {
    background: url('../images/services/reverse-logistics-mgmt/rlm-banner (2).jpg') center/cover no-repeat;
    padding: 40px 0 140px
}

.gap-blog {
    padding: 50px;
    border-radius: 15px
}

.inner--blog {
    background: #fff;
    padding: 2em;
    transform: rotate(359deg);
    border: 1px solid #8080802e;
    box-shadow: 2px 2px 8px 0 rgb(145 145 145 / .5)
}

h1.title-blog {
    font-size: 28px;
    margin-top: 20px
}

.wpo-breadcumb-area.contract-logistics-banner {
    background: url('../images/services/banner/Contact Logistics.jpg') center top/cover no-repeat;
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1
}

.wpo-breadcumb-area.fulfillment-banner {
    background: url('../images/services/banner/Fulfillment.jpg') center top/cover no-repeat;
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1
}

.wpo-breadcumb-area.oms-banner, .wpo-breadcumb-area.on-demand-banner {
    justify-content: center;
    min-height: 680px;
    z-index: 1;
    display: flex;
    position: relative
}

.wpo-breadcumb-area.on-demand-banner {
    background: url('../images/services/banner/On-Demand Warehouse.jpg') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.oms-banner {
    background: url('../images/services/banner/Order Management.jpg') center top/cover no-repeat;
    flex-direction: column
}

.wpo-breadcumb-area.warehouse-services-banner {
    background: url('../images/services/banner/Warehouse Services.jpg') center top/cover no-repeat;
    min-height: 680px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1
}

img.img-city-icon {
    width: 40px
}

.captcha {
    background-color: #fff;
    border-radius: 5px;
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 1rem;
    height: 75px
}

.spinner {
    position: relative;
    width: 2em;
    height: 2em;
    display: flex;
    margin: 2em 1em;
    align-items: center;
    justify-content: center
}

.text {
    font-size: 10px;
    font-weight: 500;
    margin-right: 1em;
    color: #000
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    align-self: flex-end;
    margin: .5em 1em;
    padding: 15px
}

    .logo img {
        height: 2em !important;
        width: 2em !important;
        position: relative !important
    }

        .logo img.logo__sdgl {
            height: 5em !important;
            width: 7em !important;
            position: relative !important;
            right: 30px;
            background: #fff;
            border-radius: 12px;
            opacity: .8
        }

ol.city--list {
    list-style: none;
    counter-reset: list;
    padding: 0 1rem
}

    ol.city--list li {
        position: relative;
        counter-increment: list;
        max-width: 45rem;
        height: 45vh;
        box-shadow: .1rem .1rem 1.5rem rgb(0 0 0 / .3);
        border-radius: .25rem;
        overflow: hidden;
        background-color: #fff
    }
    ol.city--list.capabilities li{
        height:25vh!important;
    }
    ol.city--list.haridwar li {
        height: 30vh !important;
    }
    ol.city--list.Coimbatore li {
        height: 30vh !important;
    }
    ol.city--list.Guwahati li {
        height: 40vh !important;
    }
    ol.city--list.kochi li {
        height: 42vh !important;
    }
    ol.city--list.noida li {
        height: 30vh !important;
    }
    ol.city--list.bhiwandi li {
        height: 38vh !important;
    }
    ol.city--list.pune li {
        height: 30vh !important;
    }
    ol.city--list.sonipat li {
        height: 35vh !important;
    }

    ol.city--list li::before {
        content: '';
        display: block;
        width: 100%;
        height: 1rem;
        position: absolute;
        top: 0;
        left: 0;
        background: #ba0000;
        background: linear-gradient(90deg,#ba0000 0,#000 80%,#000 100%)
    }

        ol.city--list li h3 {
            display: flex;
            align-items: baseline;
            margin: 0 0 1rem;
            color: #464646;
            font-size: 24px
        }

@media (min-width:40em) {
    ol.city--list li {
        margin: 1rem auto;
        padding: 3rem 2rem 2rem
    }

        ol.city--list li h3 {
            font-size: 22px;
            margin: 0 0 2rem;
            text-transform: capitalize;
            white-space: nowrap
        }

            ol.city--list li h3::before {
                margin-right: 1.5rem
            }
}

.bideo__play {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translatey(-50%) translatex(-50%);
    transition: var(--transition)
}

.bideo__play--icon {
    width: 5.5rem;
    height: 5.5rem;
    background: #fff;
    color: #ba0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 2s linear infinite animate
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgb(201 127 95 / .7)
    }

    40%,80% {
        box-shadow: 0 0 0 50px #fff0
    }

    100% {
        box-shadow: 0 0 0 #fff0
    }
}

.gg-one {
    padding: 25px;
    background: #fff;
    box-shadow: 0 5px 50px #172b4d19;
    height: 100%;
    border-radius: 12px
}

.navigation-item.index-nav-item {
    width: 250px;
    margin-bottom: -10px !important
}

.inner-content-project span {
    font-size: 18px;
    color: #ba0000;
    font-weight: 600
}

.navigation-item.index-nav-item h5 {
    font-size: 14px;
    text-transform: capitalize
}

.visa-package-grid-section {
    background-color: #fff !important;
    padding: 100px 0
}

@media (max-width:1399px) {
    .visa-package-grid-section .visa-package-card .visa-package-img {
        width: 270px;
        height: 270px
    }

    .visa-package-grid-section .visa-package-card .visa-package-content {
        padding: 9px 15px
    }
}

.visa-package-grid-section .visa-package-card .visa-package-img {
    width: 305px;
    height: 305px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto
}

    .visa-package-grid-section .visa-package-card .visa-package-img img {
        width: 305px;
        height: 305px;
        border-radius: 50%;
        transition: .5s ease-out
    }

.visa-package-grid-section .visa-package-card .visa-package-content {
    padding: 9px 20px;
    text-align: center;
    background-color: #e6edf757;
    border-radius: 15px;
    transition: .5s;
    position: relative;
    margin-top: -72px;
    height: 25vh
}

    .visa-package-grid-section .visa-package-card .visa-package-content h5 {
        margin-bottom: 5px;
        font-size: 17px;
        color:#ba0000;
    }

    .visa-package-grid-section .visa-package-card .visa-package-content span {
        color: #525252;
        font-weight: 500;
        font-size: 13px;
        line-height: 1.5;
        display: block;
        transition: .5s
    }

.visa-package-content h5:hover:after {
    content: "";
    display: block;
    width: 25px;
    height: 4px;
    background: #fff;
    margin: 10px auto
}

.visa-package-grid-section .visa-package-card:hover .visa-package-img img {
    transform: scale(1.1)
}

.visa-package-grid-section .visa-package-card:hover .visa-package-content {
    background-color: #ba0000
}

.testimonial-one {
    padding: 100px 0 50px 0;
    border-top: 1px solid #00112e33;
}
.pbmit-spinner-box-style-1 {
    width: 200px;
    position: relative;
    border-radius: 50%;
}

.section-134-22 {
    background-color: #e6edf757;
    width: 90vw;
    height:70vh;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
}
.holderss {
    padding: 22px 38px 22px 38px;
    border-radius: 24px;
    border: 1px solid #ba0000;
}
.btn-map {
    border-radius: 24px;
    border: 1px solid #ba0000;
    background-color: transparent;
    color: #ba0000;
    width: 10vw!important;
    height:8vh;
    font-size:16px;
    font-weight:600;
}
a.btn-map {
    border-radius: 24px;
    border: 1px solid #ba0000;
    background-color: transparent;
    color: #ba0000;
    width: 10vw !important;
    height: 8vh;
    font-size: 16px!important;
    text-transform:capitalize!important;
}
a.btn-map:hover{
    color:#ba0000;
}
.city-content{
    
    border-radius:20px;
    border:2px solid #ba0000;
}
.city-contact img {
    outline: 2px solid #000;
    outline-offset: 15px;
}

.modal.modal-map{
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.ol-cards,
.ol-cards *,
.ol-cards *::before,
.ol-cards *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ol-cards {
    --ol-cards-color-bg: var(--color-bg);
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 45em;
    padding: 2em;
    gap: 2em;
    counter-reset: ol-cards-counter;
}

    .ol-cards li {
        display: grid;
        grid-template-areas:
            "step title"
            "step content";
        padding: 1em 2em 1em 0;
        row-gap: 0.5em;
        column-gap: 2em;
        border-radius: 1rem;
        box-shadow: 0 5px 50px #172b4d19;
        counter-increment: ol-cards-counter;
        text-align: left;
        background-color: var(--ol-cards-color-bg);
    }

    .ol-cards.alternate li:nth-child(even) {
        grid-template-areas:
            "title step"
            "content step";
        padding: 1em 0 1em 2em;
    }

    .ol-cards li .step {
        grid-area: step;
        display: flex;
        align-self: flex-start;
        background-color: #ba0000;
        border-radius: 15px 50px 50px 50px;
        padding: 1em;
        justify-content: flex-end;
        box-shadow: inset 0.25em 0.25em 0.5em rgba(0, 0, 0, 0.4), 0em 0.05em rgba(255, 255, 255, 1);
        flex: 1;
        gap: 1em;
        color: #fff;
    }

        .ol-cards li .step::before {
            
            flex: 1;
            align-self: center;
            color: var(--ol-cards-color-bg);
            font-weight: bold;
            font-size: 2em;
            text-shadow: 0.025em 0.025em 0.125em rgba(0, 0, 0, 0.4);
        }

    .ol-cards.alternate li:nth-child(even) .step {
        border-radius: 15px 50px 50px 50px;
        flex-direction: row-reverse;
    }

    .ol-cards li .title {
        grid-area: title;
        color: var(--ol-cards-color-accent);
        font-weight: bold;
    }

    .ol-cards li .content {
        grid-area: content;
        font-size: 0.9em;
    }

@media only screen and (max-width: 500px) {
    .ol-cards {
        padding: 1em;
    }

        .ol-cards li {
            column-gap: 0em;
            grid-template-areas:
                'step title'
                'content content';
            grid-template-columns: min-content auto;
            padding: 1em 0em;
        }

        .ol-cards.alternate li:nth-child(even) {
            column-gap: 0em;
            grid-template-areas:
                'title step'
                'content content';
            grid-template-columns: auto min-content;
            padding: 1em 0em;
        }

        .ol-cards li .title {
            padding: 0 1em;
            align-self: center;
            width: auto;
        }

        .ol-cards li .step {
            font-size: .5em;
            width:60px!important;
        }

        .ol-cards li .content {
            padding: 0 1em;
        }
}

.btn-floating:hover img {
    margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 0px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: all 1.0s ease-in-out;
}

    .btn-floating:hover {
        width: auto;
        padding: 0 20px;
        cursor: pointer;
    }

    .btn-floating span {
        font-size: 16px;
        margin-left: 5px;
        transition: .2s;
        line-height: 0px;
        display: none;
    }

    .btn-floating:hover span {
        display: inline-block;
    }

    .btn-floating.phone {
        bottom: 202px;
        background-color: #ba0000;
        animation: 1.5s linear 0s infinite normal pulse;
    }

        .btn-floating.phone:hover {
            background-color: #ba00006b;
            
        }

    .btn-floating.whatsapp {
        background-color: #34af23;
        bottom: 125px;
        animation: 1.5s linear 0s infinite normal pulse;
    }

        .btn-floating.whatsapp:hover {
            background-color: #1f7a128f
        }

.float {
    position: fixed;
    bottom: 40%;
    right: 11px;
    text-align: center;
    z-index: 1000;
    width:50px;
    height:50px;
}

    .float .trigger {
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
        position: relative;
        background: #ba0000;
        color: #fff;
        height: 60px;
        width: 60px;
        vertical-align: middle;
        animation: 1.5s linear 0s infinite normal pulse;
        transition: ease-in-out 0.2s;
        cursor: pointer;
    }

        .float .trigger:hover {
            transform: scale(1.1);
        }

    .float.open .trigger .fa::before {
        content: "\f00d";
    }

    .float .trigger .fa::after {
        transition: ease-in-out 1s;
    }

.fab.open .trigger i {
    transition: all 0.4s ease;
    transform: translateY(5px) rotate(360deg);
}

.float i {
    font-size: 28px;
    line-height: 58px;
}

.float .actions {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.float.open .actions {
    opacity: 1;
}

.float .p-info {
    position: absolute;
    opacity: 0;
    transition: transform 0.4s ease;
    transition: all 0.4s ease;
    transform: translateY(-156px);
    right: 60px;
    width: 100%;
    height: auto;
}

.float.open .p-info {
    opacity: 1;
    position: absolute;
    transition: transform 0.4s ease;
    transition: all 0.4s ease;
    transform: translateY(-186px);
    right: 60px;
    background-color: #00000050;
    margin: auto;
    padding: 20px;
    border: 2px solid #fff;
    width: 325px;
    height: 470px;
    border-radius: 1em;
}

.float .actions .p-info:nth-child(1) {
    transform: translateY(-210px)
}

.float .actions .p-info:nth-child(2) {
    transform: translateY(-260px)
}

.float .actions .p-info:nth-child(3) {
    transform: translateY(-330px)
}

.float .actions .p-info:nth-child(4) {
    transform: translateY(-400px)
}

.float .actions .p-info:nth-child(5) {
    transform: translateY(-470px)
}

.float .actions .p-info:nth-child(6) {
    transform: translateY(-540px)
}

@keyframes pulse {
    0% {
        box-shadow: 0px 1px 0px 3px #ab1a1a30, 0px 0px 0px 0px #ef242450;
    }

    30% {
        box-shadow: 0px 1px 0px 3px #ab1a1a30, 0px 0px 0px 5px #ef242450;
    }

    70% {
        box-shadow: 0px 1px 0px 3px #ab1a1a30, 0px 0px 0px 15px #ef242410;
    }

    100% {
        box-shadow: 1px 1px 2px 1px #ab1a1a30, 0px 0px 0px 20px transparent;
    }
}
:has(> :required) label::before {
    content: "*" / "Required";
    color: #ba0000;
}

.btn-floating span:hover{
    color:#000!important;
}