﻿*,
/* Ensure the main content is centered and responsive on mobile devices */
body {
    margin: 0;
    padding: 0;
   /* width: 100vw;
    max-width: 100vw;*/
    /*overflow-x: hidden;*/
    box-sizing: border-box;
}

/* Make sure the main container stretches to full width */
/*.main_container,*/
/*.city-container,*/
.transforming-city-container,
.our-services-container,
.boxnmove-container,
.values-container,
.standout-container,
.happy-clients-container {
   
 /*   max-width: 100vw;*/
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Responsive padding for mobile */
@media (max-width: 768px) {
    /*.main_container,*/
    /*.city-container,*/
    .transforming-city-container,
    /*.our-services-container,*/
    .boxnmove-container,
    .values-container,
    .standout-container,
    .happy-clients-container {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    body {
        padding: 0;
    }
}
*::before,
*::after {
    box-sizing: border-box;
}

/** {
     font-family:Arial,sans-serif !important;
    margin: 0;
    padding: 0;
}
*/
ul[class],
ol[class] {
    list-style: none;
}


.nav_logo {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    background: transparent;
    cursor: pointer;
}

/* END */

/* Declaring global custom CSS properties */

:root {
    --main-width: 1280px;
    --main-side-margin: 1rem;
    --main-side-padding: 1rem;
}



.main_container {
    width: 100%;
    height: 65px;
    max-width: var(--main-width);
    padding: 0 var(--main-side-padding);
    margin: 0 auto;
}

/* Main navigation bar */

.header_navigation {
    position: fixed;
    background-color: #FFFFFF;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: rgba(149, 149, 149, 0.15) 0 3px 10px;
}

.navigation_bar {
    padding: var(--main-side-padding);
    height: 3.5rem;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.navigation_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 110;
}

.navigation_logo {
    display: flex;
}

.navigation_menu {
    display: flex;
    align-items: center;
}

.navigation_list {
    padding: 0;
    order: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    column-gap: 1rem;
}

.navigation_item {
    width: 100%;
}

.navigation_link {
    display: flex;
    cursor: pointer;
    position: relative;
    align-items: center;
    white-space: nowrap;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    color: black;
    width: 100%;
    font-weight: bold;
}

    .navigation_link:hover {
        color: #3051A3;
    }

.get-btn {
    background: linear-gradient(0deg, rgb(239, 80, 22) 0%, rgb(255, 255, 255) 100%);
    background: linear-gradient(11deg, rgb(237 63 0) 0%, rgb(241 106 57) 100%);
    border: 0;
    border-radius: 6px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    height: 45px;
    width: 9em;
    letter-spacing: .4px;
    line-height: 1;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

    .get-btn:active {
        outline: 0;
    }

    .get-btn:hover {
        outline: 0;
        opacity: .90;
    }

.button {
    display: inline-block;
    border-radius: 7px;
    border: none;
    background: #3051A3;
    color: white;
    font-family: inherit;
    text-align: center;
    font-size: 13px;
    width: 10em;
    padding: 1em;
    transition: all 0.4s;
    cursor: pointer;
    margin-bottom: auto;
}

    .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.4s;
    }

        .button span:after {
            content: 'MOVER';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.7s;
        }

    .button:hover span {
        padding-right: 3.55em;
    }

        .button:hover span:after {
            opacity: 4;
            right: 0;
        }

/* Custom toggle(checkbox) for the mobile version */

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    display: none;
    opacity: 0;
    pointer-events: none;
}

.blog-form [type="checkbox"]:checked,
.blog-form [type="checkbox"]:not(:checked) {
    position: absolute;
    display: block;
    opacity: revert;
}

.navigation_extras {
    display: flex;
    align-items: center;
    color: #69699b;
    z-index: 110;
    order: 1;
}


#navigation_toggle ~ .navigation_extras label .navigation_close,
#navigation_toggle ~ .navigation_extras label .navigation_open {
    display: none;
}

@media screen and (max-width: 900px) {
    .nav-logo {
        max-width: 130px;
    }

    .button {
        margin-left: 20px;
    }

    .navigation_extras {
        column-gap: 1rem;
    }

    #navigation_toggle:checked ~ .navigation_extras label,
    #navigation_toggle:not(:checked) ~ .navigation_extras label {
        display: flex;
        cursor: pointer;
    }

    .navigation_list {
        position: fixed;
        flex-direction: column;
        align-items: flex-start;
        width: 50%;
        height: 100%;
        top: 0;
        right: -100%;
        padding: 4rem 0 1rem 0;
        row-gap: 1rem;
        transition: .3s;
        background-color: #FFFFFF;
        box-shadow: rgba(149, 149, 149, 0.15) 0 3px 10px;
    }

        .navigation_list .navigation_link {
            border-radius: unset;
        }

    #navigation_toggle:checked ~ .navigation_list {
        right: 0;
    }

    #navigation_toggle:not(:checked) ~ .navigation_extras label .navigation_open,
    #navigation_toggle:checked ~ .navigation_extras label .navigation_close {
        display: flex;
    }
}

/* Footer */

.small-res-social-icons {
    display: none;
}

.medium-res-social-icons {
    display: inline;
}

.footer {
    background: linear-gradient(0deg, rgb(23, 23, 23) 0%, rgb(128, 119, 119) 100%);
    position: relative;
    color: #adb5bd;
}

.footer-container {
    padding: 0px 100px 0px 100px
}

.footer-logo {
    color: #f8f9fc;
    font-weight: 600;
    font-size: 14px;
    padding: 3px 0;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}


.footer-text-under-logo {
    font-size: 14px;
    opacity: .6;
    /*font-family: var(--font-regular);*/
    color: #fff;
}

.footer-logo-text-wrapper {
    max-width: 400px;
}

.footer-logo-link {
}

.footer-top-link-head {
    font-size: 14px;
}

.footer-top-links-list {
    padding: 0px;
    list-style: none;
}

.footer-top-links {
    column-gap: 2.1 em;
}

.footer-connect-with-us-wrapper {
    width: 300px;
}

.footer-connect-with-us-heading {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}

.footer-social-media-wrapper {
    padding: 10px 20px 10px 20px;
    background-color: #20294e;
    border-radius: 8px;
    height: 50px;
    width: 300px;
}

.footer-download-app-head {
    font-size: 14px;
    padding-top: 10px;
    color: #fff;
    padding-bottom: 10px;
}

.footer-most-searched-links {
    text-align: center;
    font-size: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-play-store-icon {
    width: 150px;
    height: 50px;
}

.footer-get-in-touch {
}

.footer-social-icon-wrapper {
    justify-content: space-around;
    align-items: center;
    height: 100%;
    display: flex;
    width: 100%;
}

.footer-social-icon {
    flex-grow: 1;
}

.footer-social-svg {
    scale: 1;
    fill: white;
}

.footer-top-link-individual {
    text-decoration: none;
    font-size: 14px;
    color: #267dfd !important;
}

.footer-nav-item {
    padding: 20px;
    text-decoration: none;
    transition: .3s;
    z-index: 1;
    font-size: 14px;
    position: relative;
    border-radius: 8px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav .is-active {
    background: #000;
}

.footer-category-heading {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 0px;
}

.footer-city-list {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.footer-city-list-item.active {
    background-color: #000000;
    color: white !important;
}

.footer-city-list-item {
    margin: 20px;
    font-size: 20px;
    text-decoration: none;
    color: #fff !important;
    border: 1px solid #fff;
    padding: 5px 10px;
    display: inline-block;
}

.footer-trust-content > p {
    color: white;
    font-size: 14px;
    opacity: .6;
    font-family: Arial,sans-serif !important;
    color: #fff;
}

.nav {
    display: flex;
    position: relative;
    max-width: 1100px;
    border-radius: 8px;
    opacity: 0;
    height: 0;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-device-width:768px) {
    .nav_logo {
              max-width: 125px;
        margin-top: 5px;
    }

    .navigation_item {
        margin-left: 10px;
    }

    .get-btn {
        width: 9.7em;
        padding-left: 0px;
        padding-right: 0px;
        margin-left: 20px;
        font-size: 12px;
    }

    .medium-res-social-icons {
        display: none;
    }

    .small-res-social-icons {
        display: inline;
    }

    .footer {
        position: relative;
        color: #adb5bd;
        /*width: 100%;*/
    }

    .footer-container {
        padding: 0px 30px 0px 30px;
        width: 100vw;
    }

    .footer-logo {
        color: #f8f9fc;
        font-weight: 600;
        font-size: 24px;
        padding: 3px 0;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 5px;
        height: 75px;
    }

    .footer-text-under-logo {
        font-size: 15px;
        opacity: .6;
        font-family: Arial,sans-serif !important;
        color: #fff;
    }

    .footer-logo-text-wrapper {
    }

    .footer-logo-link {
        display: inline-block;
    }

        .footer-logo-link > img {
            width: 100%;
        }

    .footer-top-link-head {
        font-size: 20px;
    }

    .footer-top-links-list {
        padding: 0px;
        list-style: none;
    }

    .footer-top-links {
    }

    .footer-connect-with-us-wrapper {
        width: 100%;
    }

    .footer-connect-with-us-heading {
        padding-bottom: 10px;
        text-align: center;
        font-size: 15px;
    }

    .footer-social-media-wrapper {
        padding: 25px 40px 35px 40px;
        background-color: #20294e;
        border-radius: 8px;
        height: 50px;
        width: 100%;
    }

    .footer-download-app-head {
        text-align: center;
        font-size: 15px;
        padding-top: 40px;
        padding-bottom: 10px;
    }

    .footer-most-searched-links {
        text-align: center;
        font-size: 15px;
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .footer-play-store-icon {
        width: 100%;
        height: 60px;
        margin-bottom: 40px;
    }

    .footer-get-in-touch {
    }

    .footer-social-icon-wrapper {
        justify-content: space-around;
        align-items: center;
        height: 100%;
        display: flex;
        width: 100%;
        viewbox: 0 0 0 0;
    }

    .footer-social-icon {
        flex-grow: 1;
        width: 20px;
        height: 20px;
    }

    .footer-social-svg {
        scale: 2;
        fill: white;
    }

    .footer-top-link-individual {
        text-decoration: none;
        font-size: 14px;
    }

    .footer-nav-item {
    }

    .nav {
        flex-wrap: wrap;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }

        .nav .is-active {
            background: #000
        }


    .footer-city-list {
        list-style: none;
        padding: 0px;
        display: flex;
        flex-wrap: wrap;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;
        justify-content: space-around;
    }

    .footer-city-list-item {
        margin: 10px;
        font-size: 16px;
    }

    .footer-trust-content > p {
        color: white;
        font-size: 15px;
        opacity: .6;
        font-family: Arial,sans-serif !important;
        color: #fff;
    }

    .nav .horizontalDivider:not(:last-child) {
        border-left: 0.5px solid #fff;
        height: 20px;
        margin-bottom: auto;
        margin-top: auto;
        opacity: .4;
    }
}

@media screen and (min-width:768px) and (max-width:990px) {
    .fb-icon-sm {
        display: none;
    }

    .fb-icon-md {
        display: block;
    }
}

.footer-connect-with-us-heading, .footer-top-link-head, .footer-top-link-individual, .footer-text-under-logo, .footer-most-searched-links, .footer-category-heading, .footer-trust-content > p {
    color: #fff !important;
    opacity: 1;
}

.track-img-container > h1 {
    background: -webkit-linear-gradient(#ed3f00, #ed3f00);
}

.footer-social-media-wrapper {
    background-color: #000;
}

.step-number {
    color: #ee4f15 !important
}

.footer-logo-link {
    display: inline-block;
}

    .footer-logo-link > img {
        width: auto;
        height: 70px;
        max-width: 100%;
        padding: 10px 0px;
    }




.landing-text-container > h1 {
    color: #ed3f00;
}

.app-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f05a24; /* iOS blue */
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


    .app-download .arrow-icon {
        width: 20px;
        height: 20px;
        margin-left: 5px;
        transition: transform 0.2s ease-in-out;
    }

    .app-download:hover {
        color: white;
        transform: translateY(-1px);
    }

        .app-download:hover .arrow-icon {
            transform: translateX(1px);
        }


#autocomplete-dropdown-1 {
    max-width: 100% !important;
}

    #autocomplete-dropdown-1 .dropdown-item {
        white-space: wrap;
    }
