@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* **** Color Variables **** */
:root {
    --white: #ffffff;
    --black: #000000;
    --blue: #49c5b6;
    --text: #5A5A5C;
    --text1: #fafafa;
    --text2: #090505;
    --text3: #455a64;
    --active: #01589b;
    --footbg: #e0f1ff;
    --inputbg: #f5f5f5;
}
/* **** End Color Variables **** */

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
}

a {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}
.main-wrpper{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/*.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width: 1440px;
}*/
/* **** Header **** */
header {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    background: #010006;
    padding: 0 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.42);
    transition: all 0.3s ease-in-out;
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
}
.navbar-brand img {
    max-width: 100%;
    /*height: 77px;*/
    padding: 5px 0px;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 10px 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav {
    margin-left: auto;
}
.navbar-light .navbar-nav li {
    margin-right: 12px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
}
.navbar-light .navbar-nav .nav-link {
    padding: 10px 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    /*text-transform: uppercase;*/
    letter-spacing: 0.50px;
}
.navbar-light .navbar-nav .nav-link i {
    padding-left: 5px;
}
.navbar-light .navbar-nav .nav-link:after {
    display: none;
}
.navbar .navbar-nav li.active .nav-link {
    color: #010c2a;
}
.navbar-light .navbar-nav li ul.dropdown-menu.show li a {
    font-size: 14px;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff!important;
    background-color: #1e97f0!important;
}
.navbar .navbar-nav li a:focus,
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:hover {
    color: #010c2a;
}
.navbar .navbar-nav .active a,
.navbar .navbar-nav .active a:focus,
.navbar .navbar-nav .active a:hover {
    color: #1d99f3;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #1d99f3;
}
.navbar-light .navbar-nav .loginbtn {
    padding: 10px 22px;
    background: #1d99f3;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    border-radius: 3px;
    padding: 8px 11px !important;
    margin-top: 6px;
}
.navbar-light .navbar-nav .loginbtn:hover {
    background: #fff;
    color: #000;
}
/* **** End Header **** */

/* **** Megamenu **** */
.dropdown-mega .dropdown-menu {
    padding: 0;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 9px rgba(128, 128, 128, 0.3);
    margin-top: 2px;
    width: 100%;
}
.dropdown-mega .dropdown-menu .row {
    margin: 0 -15px;
}
.dropdown-mega .dropdown-menu .col-md-4 {
    padding: 0 15px;
    width: 33.33%;
}
.mega-content {
    padding: 30px;
    width: 100%;
}
.navbar-light .navbar-nav .mega-content ul li {
    margin: 0 0 20px;
}
.mega-content ul li:last-child {
    margin: 0;
}
.mega-content ul li a {
    display: flex;
    align-items: center;
    border-radius: 0;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mega-content ul li a span {
    height: 55px;
    width: 55px;
    min-width: 55px;
    background: #1d99f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    border-radius: 28px;
    margin-right: 12px;
}
.mega-content ul li a span img{
    max-width: 50%;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}
.mega-content ul li a h2 {
    font-size: 14px;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 0 5px;
}
.mega-content ul li a p {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}
.navbar-light .navbar-nav .mega-content ul li.last-link-box {
    margin: 0;
}
.navbar-light .navbar-nav .mega-content ul li.last-link-box a {
    margin: 0;
    padding: 0;
    border: none;
}
/* **** End Megamenu **** */

/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 40px;width: 50px;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid var(--white);transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: var(--white);top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */


/* ***** Fix Header **** */
header.nav-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
header.nav-new .navbar {
    border-radius: 0;
    box-shadow: none;
}
/* ***** End Fix Header **** */

/*After Slider*/

.section-after .section-title.pt-4 {
    margin-bottom: 12%;
}

.text-primary {
    color: #0743aa !important;
}

section.section-after {
    padding: 80px 0 80px 0;
}
.section-after h2 {
    font-weight: 900;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
}
.section-after p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}
.service-item:nth-child(2n) .colored-box {
  color: #917AEB;
  background-color: rgba(145, 122, 235, 0.2);
}
.service-item .colored-box {
  display: inline-block;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 8px;
  color: #51B56D;
  background-color: rgba(81, 181, 109, 0.2);
}
.service-item .service-title {
    transition: color 0.3s;
    color: #000;
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 0.50px;
}
.service-item .service-title:hover {
    color: #0743aa;
}

.section-after .service-description {
    color: #000;
    font-size: 16px;
    line-height: 28px;
}


/*End After Slider*/


/*section-work-strct*/

section.section-work-strct {
    padding: 60px 0 40px 0;
}

.section-work-strct h2 {
    font-weight: 900;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
    /*color: #1d99f3;*/
}
.section-work-strct p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.difference-of-us-item .icon {
  height: 85px;
  flex: 0 0 auto;
  width: 85px;
  line-height: 85px;
  text-align: center;
  border-radius: 8px;
  color: #917AEB;
  background-color: rgba(145, 122, 235, 0.1);
}

.difference-of-us-item:nth-child(2n) .icon {
  color: #51B56D;
  background-color: rgba(81, 181, 109, 0.1);
}

.difference-of-us-item .icon {
  height: 85px;
  flex: 0 0 auto;
  width: 85px;
  line-height: 85px;
  text-align: center;
  border-radius: 8px;
  color: #917AEB;
  background-color: rgba(145, 122, 235, 0.1);
}
.section-work-strct h3.mb-3 {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.50px;
    margin-bottom: 6px !important;
    padding-bottom: 0px;
    color: #1d99f3;
    text-transform: uppercase;
}
.section-work-strct .difference-of-us-item.p-3.rounded.mr-0.me-lg-4 p {
    font-size: 15px;
    line-height: 26px;
}
.shadow-md, .difference-of-us-item:hover {
  box-shadow: 0px 25px 65px 0px rgba(0, 0, 0, 0.1) !important;
}
/*End section-work-strct*/



/*homepage_tab-sect*/

section#homepage_tab-sect {
    padding: 60px 0;
}


#homepage_tab-sect h2 {
    font-weight: 900;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 4%;
}
.homepage_tab .payment_info_tab .active {
  color: #fff !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #010c2a;
    font-size: 14px;
}

.homepage_tab  h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}
.homepage_tab p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 500;
}

.homepage_tab .has-shapes {
    display: none;
}
#homepage_tab-sect .nav-pills .nav-link {
    background: 0 0;
    border-radius: .25rem;
    border: 1px solid #1d99f3;
    font-size: 15px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #1d99f3 !important;
    font-size: 14px;
    border: 1px solid #fff !important;
}
.aligncenter {
    display: flex;
    justify-content: center;
}

#homepage_tab-sect .mb-2 {
    margin-bottom: 1.0rem !important;
}


/*End homepage_tab-sect*/

section.industries-wrp.newweb h2 {
    font-weight: 900;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
}

.international-wrp.newhmsectr {
    background: #f8f8f8;
    padding: 60px 0;
}

/*Contact & Faq*/

.contact-subs.newpg-contact {
    display: flex;
}
.faq-wrp-hm.newpgfaq .accordion .accordion-item {
    border-radius: 0px;
    padding: 15px 26px;
    margin: 0 0 21px;
}
.faq-wrp-hm .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: unset;
}
.faq-wrp-hm.newpgfaq .accordion .accordion-item .accordion-button {
    font-size: 13px;
    color: #112059;
    padding: 0;
    font-weight: 600;
    background-color: transparent;
    position: relative;
    text-transform: uppercase;
    line-height: 22px;
}
.faq-wrp-hm.newpgfaq .accordion-body {
    padding: 1rem 0rem 0 0;
}
.faq-wrp-hm.newpgfaq .accordion .accordion-body p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    line-height: 26px;
    padding-bottom: 1%;
}
.faq-wrp-hm.newpgfaq button.accordion-button {
    text-align: left;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    float: right;
    text-align: right;
    top: 0px;
    position: relative;
}
.accordion-button::after {
    float: right;
    top: 0px;
    position: relative;
}

/*end of contact and faq*/


.international-wrp.newhmsectr h2 {
    font-weight: 900;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 9px;
}
.contact-wrp.newrwsect h2 {
    font-weight: 900;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 9px;
}
.international-wrp.newhmsectr h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 5%;
}






.btn-main {
    font-size: 16px;
    font-weight: 500;
    background: #1d99f3;
    border-radius: 8px;
    color: var(--white);
    padding: 10px 20px;
    display: table;
}
.btn-main:hover {
    background: var(--black);
    color: var(--white);
}

.btn-main1 {
    font-size: 18px;
    font-weight: 600;
    /*background: #010c2a;*/
    border: 1px solid #1d99f3;
    border-radius: 2px;
    color: #1d99f3;
    padding: 10px 35px;
    display: table;
}
.btn-main1:hover {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

/* ***** growing **** */
.growing-wrp {
    padding: 80px 0 60px 0;
}
.growing-wrp .row {
    align-items: center;
}
.growing-wrp .growing-img img {
    max-width: 100%;
}
.growing-wrp .growing-info h2 {
        font-weight: 900;
        letter-spacing: 0.50px;
        text-transform: uppercase;
        font-size: 30px;
        line-height: 40px;
        /*color: #010c2a;*/
    }
.growing-wrp .growing-info p {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.growing-wrp .growing-info .btn-main1 {
    margin: 35px 0 0;
}

.growing-wrp .growing-info .btn-main1 {
        font-size: 14px;
        text-transform: uppercase;
        padding: 10px 20px;
    }
/* ***** End growing **** */

.titlebar h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    text-transform: capitalize;
    margin: 0 0 30px;
}
.titlebar p {
    font-size: 20px;
    line-height: 34px;
    color: #000;
    text-align: center;
    margin: 0 0 50px;
    font-weight: 500;
}

/* **** Solutions **** */
.solutions-wrp {
    padding: 100px 0 100px;
}
.solutions-wrp ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}
.solutions-wrp ul li {
    width: 25%;
    padding: 0 15px;
    margin: 0 0 20px;
}
.solutions-wrp ul li a {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 30px 10px 30px 20px;
    border-radius: 10px;
    height: 100%;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.solutions-wrp ul li a span img {
    width: 50px;
    margin: 0 auto 25px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.solutions-wrp ul li a h2 {
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin: 0 0 15px;
}
.solutions-wrp ul li a p {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #000;
    text-align: center;
    margin: 0;
}
.solutions-wrp ul li a:hover {
    background: #010c2a;
    box-shadow: 0 0 30px rgb(0 0 0 / 40%);
}
.solutions-wrp ul li a:hover h2 {
    color: var(--white);
}
.solutions-wrp ul li a:hover p {
    color: var(--white);
}
.solutions-wrp ul li a:hover span img {
    filter: brightness(0) invert(1);
}
/* **** End Solutions **** */

/* **** Features **** */
.feature-wrp {
    padding: 0;
}
.feature-wrp .titlebar p {
    margin: 0 0 60px;
}
.feature-wrp .nav-tabs {
    border: none;
    display: flex;
    align-items: center;
    background: #010c2a;
    border-radius: 8px;
    border: 2px solid var(--active);
    margin: 0 0 60px;
}
.feature-wrp .nav-tabs li {
    width: 12.5%;
    border-right: 2px solid var(--active);
}
.feature-wrp .nav-tabs li:last-child {
    margin: 0;
    border: none;
}
.feature-wrp .nav-tabs .nav-link {
    border: none;
    font-size: 18px;
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding: 12px 20px;
    background: transparent;
    border-radius: 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    border-radius: 8px;
}
.feature-wrp .nav-tabs .nav-item.show .nav-link,
.feature-wrp .nav-tabs .nav-link.active {
    background: var(--white);
    color: var(--active);
}
.feature-wrp .row {
    align-items: center;
}
.feature-wrp .map-box {
    width: 100%;
    border-radius: 8px;
}
.feature-wrp .map-box img {
    max-width: 100%;
    border-radius: 8px;
}
.feature-wrp .map-box iframe {
    height: 100%;
    width: 100%;
    border-radius: 8px;
}
.feature-wrp .features-info {
    padding-left: 50px;
}
.feature-wrp .features-info h2 {
    font-size: 30px;
    font-weight: bold;
    color: var(--black);
    margin: 0 0 30px;
}
.feature-wrp .features-info p {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin: 0;
}



/*new map design*/
    .map-sect {
        justify-content: center;
        display:flex;
    }
 .map-container {
            position: relative;
            width: 100%; /* Make it responsive */
            max-width: 980px; /* Keep the max width for larger devices */
        }
        .world-map {
            width: 100%;
            height: auto;
            /*filter: invert(80%) sepia(96%) saturate(245%) hue-rotate(224deg) brightness(100%) contrast(141%);*/
            /*filter: invert(92%) sepia(67%) saturate(251%) hue-rotate(93deg) brightness(60%) contrast(153%);*/
            filter: brightness(0) saturate(100%) invert(16%) sepia(91%) saturate(2550%) hue-rotate(185deg) brightness(75%) contrast(104%);
        }
        .city {
            position: absolute;
            display: inline-block;
            padding: 8px;
            background-color: white;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 0.8em;
            border: 1px solid #1d99f3;
        }
        .city img {
            width: 20px;
            height: 20px;
            margin-right: 5px;
        }
        
        /* Position cities relative to the map */
        .mexico { top: 57%; left: 11%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .usa { top: 28%; left: 6%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .uk { top: 38%; left: 47%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .australia { top: 80%; left: 82%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .hongkong { top: 57%; left: 79%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .canada { top: 32%; left: 22%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .japan { top: 46%; left: 86%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .india { top: 62%; left: 65%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .brazil { top: 69%; left: 31%; justify-content: center; display: flex; align-items: center; font-weight: 600; }
        .southafrica { top: 83%; left: 52%; justify-content: center; display: flex; align-items: center; font-weight: 600; }

        /* Media query for devices between 320px and 800px */
        @media (max-width: 800px) {
            .city {
                padding: 5px; /* Reduce padding for smaller devices */
                font-size: 12px; /* Adjust font size */
            }
            .city img {
                width: 16px; /* Reduce icon size */
                height: 16px;
            }
        }

        /* Media query for very small devices (320px width) */
        @media (max-width: 400px) {
            .city {
                padding: 4px; /* Even smaller padding */
                font-size: 10px; /* Smaller font size */
            }
            .city img {
                width: 14px; /* Reduce icon size further */
                height: 14px;
            }
        }

        @media (min-width: 320px) and (max-width: 480px) {
/* Position cities relative to the map */
.mexico { top: 57%; left: 4%; }
        .usa { top: 25%; left: 4%; }
        .uk { top: 38%; left: 47%; }
        .australia { top: 80%; left: 82%; }
        .hongkong { top: 55%; left: 79%; }
        .canada { top: 34%; left: 23%; }
        .japan { top: 32%; left: 86%; }
        .india { top: 58%; left: 52%; }
        .brazil { top: 69%; left: 31%; }
        .southafrica { top: 83%; left: 52%; }

        }
.mapsec-btn {
    display: flex;
    justify-content: center;
}

/*End New Map Section*/
/* **** End Features **** */

/* **** connect **** */
.connect-wrp .row {
    
}
.connect-wrp ul {
    margin: 30px 0 0;
}
.connect-wrp ul li {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}
.connect-wrp ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #000;
    top: 8px;
    left: 0;
}
.connect-wrp .growing-img img {
    margin-left: auto;
    margin-right: 0;
}
/* **** End connect **** */

/* **** Footer **** */
footer {
    background: #010005;
    padding: 40px 0 20px;
}
footer .logo-img img {
    max-width: 100%;
    /*height: 80px;*/
    margin: 0 0 15px;
}
footer .foot-logo p {
    font-size: 14px;
    color: #ffffff;
    font-weight:500;
    line-height: 24px;
    margin: 0 0 15px;
}
footer .foot-logo ul {
    display: flex;
    align-items: center;
}
footer .foot-logo ul li {
    margin-right: 15px;
}
footer .foot-logo ul li:last-child {
    margin: 0;
}
footer .foot-logo ul li a {
    font-size: 15px;
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d99f3b8;
}
footer .foot-logo ul li a:hover {
    background: #1d99f3;
    color: #fff;
}

footer .foot-blog ul li:hover a span {
    background: #1d99f3;
}

footer h3 {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.50px;
}
footer .quick-links {
    display: table;
    margin-left: 60px;
}
footer .quick-links ul li {
    margin: 0 0 14px;
}
footer .quick-links ul li:last-child {
    margin: 0;
}
footer .quick-links ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
}
footer .quick-links ul li a:hover {
    color: #1d99f3;
}
footer .foot-blog ul li {
    margin: 0 0 20px;
}
footer .foot-blog ul li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    /*word-break: break-all;*/
}
footer .foot-blog ul li a span {
    height: 40px;
    min-width: 40px;
    width: 40px;
    background: #1d99f3b8;
    margin-right: 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .foot-blog ul li a span img{
    filter: brightness(0) invert(1);
    max-width: 100%;
    width:16px;
}
footer .foot-blog ul li a:hover{
    color: #1d99f3;
}
footer .foot-blog ul li a h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
footer .foot-blog ul li a p {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}
footer .foot-blog ul li a:hover h3 {
    color: #1d99f3;
}
footer .copyright {
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid #1d99f3;
}
footer .copyright p {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin: 0;
}
/* **** End Footer **** */

/* **** Inner Banner **** */
.inner-banner {
    margin: 0px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    position: relative;
    background: #1d99f3;
}
.inner-banner:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    opacity: 0.3;
}
.inner-banner .banner-detail {
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 6;
    padding: 1% 0;
}
.inner-banner .banner-detail h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 0px;
    text-align: left;
    width: 60%;
}
.inner-banner .banner-detail ul {
    display: flex;
    align-items: center;
    justify-content: right;
    float: right;
    width: 0%;
    display:none;
}
.inner-banner .banner-detail ul li {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    margin-right: 30px;
    position: relative;
}
.inner-banner .banner-detail ul li a {
    color: var(--white);
}
.inner-banner .banner-detail ul li:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    position: absolute;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    right: -20px;
    top: 0;
}
.inner-banner .banner-detail ul li:last-child:after {
    display: none;
}
.inner-banner .banner-detail ul li:last-child {
    margin: 0;
}
/* **** ENd Inner Banner **** */

/* **** tracking **** */
.tracking-wrp {
    padding: 50px 0;
}
.tracking-wrp .tracking-block {
    padding: 50px 0;
}
.tracking-wrp .tracking-block .row {
    align-items: center;
}
.tracking-wrp .tracking-block img {
    max-width: 100%;
    margin: 0;
    border-radius: 10px;
}
.tracking-wrp .tracking-block .tracking-dt {
    padding-left: 30px;
}
.tracking-wrp .even-tracking-block .tracking-dt {
    padding: 0 30px 0 0;
}
.tracking-wrp .tracking-block .tracking-dt h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.tracking-wrp .tracking-block .tracking-dt p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.tracking-wrp .tracking-block .tracking-dt ul {
    margin: 0 0 20px;
}
.tracking-wrp .tracking-block .tracking-dt ul li {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}
.tracking-wrp .tracking-block .tracking-dt ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #000;
    top: 8px;
    left: 0;
}
.tracking-wrp .tracking-block .tracking-dt ul li:last-child {
    margin: 0;
}
/* **** End tracking **** */

/* **** Effeciency **** */
.effeciency-wrp {
    padding: 100px 0;
}
.effeciency-wrp .row {
    align-items: center;
}
.effeciency-wrp .effeciency-info {
    padding-right: 50px;
}
.effeciency-wrp h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.effeciency-wrp p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.effeciency-wrp ul li {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}
.effeciency-wrp ul li:last-child {
    margin: 0;
}
.effeciency-wrp ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #000;
    top: 8px;
    left: 0;
}
.effeciency-wrp ul li:last-child {
    margin: 0;
}
.effeciency-wrp img {
    border-radius: 10px;
    max-width: 100%;
}
/* **** End Effeciency **** */

/* **** monitoring-wrp **** */
.monitoring-wrp {
    padding: 100px 0;
}
.monitoring-wrp .row {
    align-items: center;
}
.monitoring-wrp h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 30px 0;
}
.monitoring-wrp p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.monitoring-wrp ul li {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}
.monitoring-wrp ul li:last-child {
    margin: 0;
}
.monitoring-wrp ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #000;
    top: 8px;
    left: 0;
}
.monitoring-wrp ul li:last-child {
    margin: 0;
}
/* **** Emd monitoring-wrp **** */

/* ***** mobile-telematics-wrp **** */
.mobile-telematics-wrp {
    padding: 100px 0 50px;
}
.mobile-telematics-wrp .telematics-info {
    width: 75%;
    margin: 0 auto 50px;
}
.mobile-telematics-wrp .telematics-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
    text-align: center;
}
.mobile-telematics-wrp .telematics-info p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
    text-align: center;
}
.mobile-telematics-wrp .mobile-telematics-block {
    padding: 50px 0;
}
.mobile-telematics-wrp .mobile-telematics-block .telematics-dt {
    padding-left: 30px;
}
.mobile-telematics-wrp .even-telematics-block .telematics-dt {
    padding: 0 30px 0 0;
}
.mobile-telematics-wrp .mobile-telematics-block .row {
    align-items: center;
}
.mobile-telematics-wrp .mobile-telematics-block img {
    max-width: 100%;
    border-radius: 10px;
}
.mobile-telematics-wrp .mobile-telematics-block h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.mobile-telematics-wrp .mobile-telematics-block p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
/* ***** End mobile-telematics-wrp **** */

/* ***** mobile-telematics-wrp **** */
.monitoring-wrp {
    padding: 100px 0;
}
.monitoring-wrp .monitoring-block {
    /*padding: 50px 0;*/
}
.monitoring-wrp .monitoring-block .row {
    align-items: center;
    margin: 0;
}
.monitoring-wrp .monitoring-block .col-md-6 {
    padding: 0;
}
.monitoring-wrp .monitoring-block img {
    max-width: 100%;
    border-radius: 0;
    min-height: 600px;
    object-position: center;
    object-fit: cover;
}
.monitoring-wrp .monitoring-block .monitoring-dt {
    padding-left: 30px;
}
.monitoring-wrp .even-monitoring-block .monitoring-dt {
    padding: 0 30px 0 0;
}
.monitoring-wrp .monitoring-block h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.monitoring-wrp .monitoring-block p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
/* ***** End mobile-telematics-wrp **** */

/* **** technology-wrp *** */
.technology-wrp {
    padding: 100px 0;
}
.technology-wrp .technology-info {
    width: 75%;
    margin: 0 auto 50px;
}
.technology-wrp .technology-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
    text-align: center;
}
.technology-wrp .technology-info p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
    text-align: center;
}

.technology-wrp .technology-bix {
    padding: 20px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    height: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.technology-wrp .technology-bix .icon-box {
    height: 100px;
    width: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #010c2a;
    margin: 0 0 30px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.technology-wrp .technology-bix .icon-box img {
    max-width: 100%;
    filter: brightness(0) invert(1);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.technology-wrp .technology-bix h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.technology-wrp .technology-bix p {
    font-size: 15px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.technology-wrp .technology-block a:hover .technology-bix {
    background: #010c2a;
}
.technology-wrp .technology-block a:hover .technology-bix .icon-box {
    background: var(--white);
}
.technology-wrp .technology-block a:hover .technology-bix .icon-box img {
    filter: unset;
}
.technology-wrp .technology-block a:hover .technology-bix h2 {
    color: var(--white);
}
.technology-wrp .technology-block a:hover .technology-bix p {
    color: rgba(255, 255, 255, 0.8);
}
/* **** End technology-wrp *** */

/* **** Contact **** */
.contact-wrp {
    padding: 100px 0;
}
.contact-wrp .contact-info {
    padding: 0 0 100px;
}
.contact-wrp .contact-info ul {
    display: flex;
    align-items: center;
    margin: 0 -15px;
}
.contact-wrp .contact-info ul li {
    padding: 0 15px;
    width: 33.33%;
}
.contact-wrp .contact-info ul li a {
    padding: 26px 10px;
    background: var(--text1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--text2);
    position: relative;
}
.contact-wrp .contact-info ul li a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #010c2a;
    box-shadow: 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0151852);
    border-radius: 24px;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.contact-wrp .contact-info ul li a:hover {
    color: var(--white);
}
.contact-wrp .contact-info ul li a:hover:before {
    opacity: 1;
}
.contact-wrp .contact-info ul li a span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    height: 66px;
    width: 66px;
    min-width: 66px;
    border-radius: 100%;
    background: var(--white);
    border-radius: 100%;
}
.contact-wrp .contact-info ul li a .cnt-info {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}
.contact-wrp .contact-info ul li a .cnt-info img {
    max-width: 100%;
    filter: brightness(0) invert(0);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.contact-wrp .contact-info ul li a:hover .cnt-info img {
    filter: unset;
}

.contact-wrp .contact-block .row {
    align-items: center;
}
.contact-wrp .contact-block .titlebar h2 {
    text-align: left;
    font-size: 25px;
    margin: 0 0 15px;
}
.contact-wrp .contact-block .titlebar p {
    font-size: 16px;
    text-align: left;
    line-height: 24px;
}
.contact-wrp .contact-block .form-group {
    margin: 0 0 20px;
}
.contact-wrp .contact-block .form-group .form-control {
    font-weight: 500;
    font-size: 16px;
    color: var(--text3);
    padding: 15px 27px;
    background:var(--inputbg);
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    border: none;
    resize: none;
}
.contact-wrp .contact-block button {
    background: #010c2a;
    box-shadow: 0px 20px 35px rgba(46, 57, 142, 0.1);
    border-radius: 10px;
    border: none;
    padding: 17px 65px;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--white);
    display: table;
    margin-left: auto;
    margin-right: 0;
    display: table;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.contact-wrp .contact-block button:hover {
    background: var(--black);
    color: var(--white);
}
.contact-wrp .contact-block .contact-form img {
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
}
/* **** End Contact **** */

/* **** construction **** */
.construction-wrp {
    padding: 100px 0;
}
.construction-wrp h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.construction-wrp p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.construction-wrp ul {
    margin: 0 0 30px;
}
.construction-wrp ul li {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 15px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}
.construction-wrp ul li:last-child {
    margin: 0;
}
.construction-wrp ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #000;
    top: 8px;
    left: 0;
}
.construction-wrp ul li:last-child {
    margin: 0;
}

.construction-wrp h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 50px 0 30px;
}
.construction-wrp ul.solutions-info {
    margin: 0 0 0 30px;
}
.construction-wrp ul.solutions-info li {
    margin: 0 0 10px;
}
/* **** End construction **** */

/* **** Industry **** */
.industry-wrp {
    padding: 100px 0;
}
.industry-wrp .industry-info {
    width: 65%;
    margin: 0 auto 100px;
}
.industry-wrp .industry-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
    text-align: center;
}
.industry-wrp .industry-info p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
    text-align: center;
}

.industry-wrp .industry-block .row {
    align-items: center;
}
.industry-wrp .industry-block .col-md-6 {
    padding: 0;
}
.industry-wrp .industry-block .industry-dt {
    padding-right: 50px;
}
.industry-wrp .industry-block .industry-dt h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.industry-wrp .industry-block .industry-dt p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.industry-wrp .industry-block .industry-img img {
    width: 100%;
    height: 500px;
    object-position: center;
    object-fit: cover;
}

.industry-wrp .even-industry-block .industry-dt {
    padding: 0 0 0 50px;
}
/* **** End Industry **** */

/* **** even-effeciency-block **** */
.finance-wrp {
    padding: 100px 0 50px;
}
.finance-wrp .effeciency-block {
    padding: 50px 0;
}
.finance-wrp .effeciency-block.even-effeciency-block .effeciency-info {
    padding: 0 0 0 30px;
}
/* **** End even-effeciency-block **** */

/* **** benefits **** */
.benefits-wrp {
    padding: 0 0 100px;
}
.benefits-wrp .titlebar {
    margin: 0 0 50px;
}
.benefits-wrp .routing-box {
    padding: 25px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    height: calc(100% - 30px);
    display: flex;
    align-items: flex-start;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.benefits-wrp .routing-box .icon-box {
    height: 100px;
    width: 100px;
    min-width: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #010c2a;
    margin: 0 15px 0 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.benefits-wrp .routing-box .icon-box img {
    max-width: 100%;
    filter: brightness(0) invert(1);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.benefits-wrp .routing-box h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.benefits-wrp .routing-box p {
    font-size: 15px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
/* **** End benefits **** */

/* **** telematics **** */
.telematics-wrp {
    padding: 100px 0;
}
.telematics-wrp h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 20px;
}
.telematics-wrp h3 {
    font-size: 26px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.telematics-wrp p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
/* **** End telematics **** */



/* **** connect **** */
.connect-wrp{
    padding: 100px 0;
}
.connect-wrp .connect-info{
    width: 75%;
    margin: 0 auto 50px;
}
.connect-wrp .connect-info h2{
    font-size: 36px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 20px;
    text-align: center;
}
.connect-wrp .connect-info p{
     font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
    text-align: center;
}
.connect-wrp .connect-box{
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);    
    margin: 0 0 30px;
    text-align: center;
    min-height: 400px;
}
.connect-wrp .connect-box .box-icon{
    height: 100px;
    width: 100px;
    background: #010c2a;
    border-radius: 100%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.connect-wrp .connect-box .box-icon img{
    max-width: 100%;
    filter: brightness(0) invert(1);

}
.connect-wrp .connect-box h2{
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 15px;
}
.connect-wrp .connect-box p{
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0;
    font-weight: 500;
    min-height: 110px;
}
/* **** End connect **** */


/* **** industriesRow **** */
.industries-wrp{
    padding: 0 0 100px;
}
.industries-wrp .slick-slide {
    margin: 0 10px;
}
.industries-wrp .slick-list {
    margin: 0 -10px;
}
.industries-wrp .slider-box a{
    display: block;
    position: relative;
}
.industries-wrp .slider-box img{
    width: 100%;
    border-radius: 10px;
    height: 270px;
    object-fit: cover;
    object-position: center;
}
.industries-wrp .slider-box a .box-info{
    background:rgb(248 155 34 / 70%);
    padding: 20px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.industries-wrp .slider-box a:hover .box-info{
    transform: scale(1.0);
    opacity: 1;
    visibility: visible;
}
.industries-wrp .slider-box a .box-info h2{
    font-size: 22px;
    margin: 0 0 30px;
    padding: 0 0 15px;
    font-weight: bold;
    color: var(--white);
    position: relative;
}
.industries-wrp .slider-box a .box-info h2:before{
    position: absolute;
    content: "";
    height: 4px;
    width: 60px;
    background: var(--white);
    border-radius: 4px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.industries-wrp .slider-box a .box-info p{
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    margin: 0;
}

.industries-wrp .slick-prev,
.industries-wrp .slick-next{
    position: absolute;
    left: -70px;
    font-size: 0;
    border: none;
    box-shadow: none;
    outline: none;
    top: 50%;
    z-index: 9;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.industries-wrp .slick-next{
    left: auto;
    right: -70px;
}
.industries-wrp .slick-prev:before,
.industries-wrp .slick-next:before {
    position: absolute;
    content: "\f060";
    height: 50px;
    width: 50px;
    background: #010c2a;
    border-radius: 100%;
    left: 0;
    top: -10px;
    display: flex;
    align-items: center;
    box-shadow: 3px 1px 9px rgba(0, 0, 0, 0.1);
    justify-content: center;
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    font-size:18px;
    color: var(--white);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.industries-wrp .slick-next:before {
    content: "\f061";
    left: auto;
    right: 0px;
}
.industries-wrp .slick-prev:hover:before,
.industries-wrp .slick-next:hover:before {
    background:var(--black);
    color: var(--white);
}
/* **** End industriesRow **** */



/* **** brading **** */
.brading-wrp{
    padding: 0 0 100px;
}
.brading-wrp .titlebar h2{
    margin: 0 0 50px;
}
.brading-wrp .nav-tabs {
    border: none;
    display: flex;
    align-items: center;
    background: #010c2a;
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto 40px;
    width: 50%;
}
.brading-wrp .nav-tabs li {
    width: 33.33%;
}
.brading-wrp .nav-tabs li:last-child {
    margin: 0;
    border: none;
}
.brading-wrp .nav-tabs .nav-link {
    border: none;
    font-size: 18px;
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding: 12px 20px;
    background: transparent;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}
.brading-wrp .nav-tabs .nav-item.show .nav-link,
.brading-wrp .nav-tabs .nav-link.active {
    background: var(--white);
    color: var(--active);
}
.brading-wrp .brading-block .row{
    align-items: center;
}
.brading-wrp .brading-block h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.brading-wrp .brading-block p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.brading-wrp .brading-block ul li {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}
.brading-wrp .brading-block ul li:last-child {
    margin: 0;
}
.brading-wrp .brading-block ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #000;
    top: 8px;
    left: 0;
}
.brading-wrp .brading-block ul li:last-child {
    margin: 0;
}
.brading-wrp .brading-block img {
    border-radius: 10px;
    max-width: 100%;
}
/* **** End brading **** */


/* **** Map **** */
.map-wrp{
    position: relative;
    width: 100%;
    height: 500px;
}
.map-wrp .container-fluid{
    padding: 0;
}
.map-wrp iframe{
    height: 500px;
    width: 100%;
}
.map-wrp .map-block{
    border-radius: 20px;
    box-shadow: 0 0 9px rgb(0 0 0 / 10%);
    background: var(--white);
    padding: 30px 20px;
    width: 50%;
    position: absolute;
    left: 50%;
    border-radius: 30px;
    bottom: 40px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.counter-box h3{
    font-size: 40px;
    color: #010c2a;
    font-weight: bold;
    margin: 0 0 10px;
    text-transform: capitalize;
    text-align: center;
}
.counter-box p{
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
    text-align: center;
}
/* **** End Map **** */


/* ***** contact-title **** */
.contact-wrpper{
    position: relative;
    padding: 100px 0;
}
.contact-wrpper .contact-title{
    background: #010c2a;
    padding: 100px 50px 300px;
    border-radius: 20px;
}
.contact-wrpper .contact-title h3{
    color: var(--white);
    text-align: center;
}
.contact-wrpper .contact-title h2{
    color: var(--white);
}
.contact-wrpper .contact-form{
    background: var(--white);
    padding: 75px;
    border-radius: 20px;
    width: 75%;
    margin: -250px auto 0;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
}
.contact-wrpper .contact-form .form-group {
    margin: 0 0 20px;
}
.contact-wrpper .contact-form .form-group .form-control {
    font-weight: 500;
    font-size: 16px;
    color: var(--text3);
    padding: 15px 27px;
    background:var(--inputbg);
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    border: none;
    resize: none;
}
.contact-wrpper .contact-form button {
    background: #010c2a;
    box-shadow: 0px 20px 35px rgba(46, 57, 142, 0.1);
    border-radius: 10px;
    border: none;
    padding: 17px 65px;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--white);
    display: table;
    margin-left: auto;
    margin-right: 0;
    display: table;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.contact-wrpper .contact-form button:hover {
    background: var(--black);
    color: var(--white);
}
/* **** Ebd contact-title ***** */


/* **** Video **** */
.video-wrp{
    padding: 0 0 120px;
}
.video-wrp .video-box{
    height: 720px;
    border-radius: 20px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
}
.video-wrp .video-box video{
    height: 100%;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}
/* **** End Video **** */


.international-wrp .titlebar p{
    margin: 0 0 50px;
}
.international-wrp .row{
    align-items: center;
}
.international-info h4{ 
    font-size: 18px;
    font-weight: 600;
    color: #010c2a;
    margin: 0 0 10px;
    text-transform: capitalize;
}
.international-info h2{
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 80px;
}
.international-info ul{
    display: flex;
    flex-wrap: wrap;
}
.international-info ul li{
    width: 50%;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin: 0 0 15px;
}
.international-info ul li img{
    width: 28px;
    margin-right: 12px;
}
.international-img img{
    width: 100%;
}


.wizard-wrp{
    padding: 180px 0 100px;
    position: relative;
}
.wizard-wrp .titlebar h2{
    margin: 0 0 80px;
    font-size: 30px;
}
.wizard-wrp form{
    max-width: 800px;
    margin: 0 auto;
}
.form-wizard .wizard-fieldset {
    display: none;
}
.form-wizard .wizard-fieldset.show {
    display: block;
}


.form-wizard-header{
    position: relative;
    margin: 0 0 50px;
    display: flex;
    align-items: center;
}
.form-wizard-header h2{
    font-size: 30px;
    color: #000;
    font-weight: 700;
    margin: 0;
}
.form-wizard-header .form-wizard-steps{
    width: 100%;
    background: var(--inputbg);
    height: 8px;
    margin-left: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.form-wizard-header .form-wizard-steps li{
    width: 12.5%;
    height: 8px;
}
.form-wizard-header .form-wizard-steps li.activated,
.form-wizard-header .form-wizard-steps li.active{
    background: #010c2a;
}
.wizard-block .select-block{
    width: 60%;
    margin: 0 auto;
}
.wizard-block .select-block ul{
    display: flex;
    align-items: center;
    margin: 0 -15px;
    flex-wrap: wrap;
}
.wizard-block .select-block ul li{
    padding: 0 15px;
    margin: 0 0 30px;
    width: 50%;
}
.wizard-block .select-block .select-box{
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 9px rgba(128, 128, 128, 0.3);
    position: relative;
    cursor: pointer;
}
.wizard-block .select-block .select-box img{
    max-width: 120px;
    margin: 0 auto 15px;
    filter: grayscale(100%);
    opacity: 0.4;
}
.wizard-block .select-block .select-box h4{
    font-size: 18px;
    color: #000;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
}
.wizard-block .select-block .select-box input{
    position: absolute;
    opacity: 0;
}
.wizard-block .select-block .select-box span{
    position: absolute;
    right: 15px;
    top: 15px;
    border-radius: 4px;
    height: 25px;
    width: 25px;
    border: 1px solid #010c2a;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wizard-block .select-block .select-box.selected img{
    filter: unset;
    opacity: 1;
}
.wizard-block .select-block .select-box.selected span{
    background: #010c2a;
    color: #fff;
}

.btn-block ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-block ul li{
    margin-right: 16px;
}
.btn-block ul li:last-child{
    margin: 0;
}
.btn-block ul li a{
    text-transform: capitalize;
    font-weight: 500;
    min-width: 140px;
    text-align: center;
}


/* **** select-quantity **** */
.select-quantity{
    max-width: 60%;
    margin: 0 auto 40px;
}
.select-quantity li{
    margin-bottom: 16px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}
.select-quantity li .quantity-box{
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 0 9px rgba(128, 128, 128, 0.3);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.select-quantity li .quantity-box span{
    position: relative;
    display: block;
    height: 25px;
    width: 25px;
    border-radius: 100%;
    border: 1px solid #010c2a;
    margin-right: 15px;
}
.select-quantity li .quantity-box span:before{
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 100%;
    background: #010c2a;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.select-quantity li .quantity-box input{
    position: absolute;
    opacity: 0;
    right: 0;
}
.select-quantity li .quantity-box.selected span:before{
    opacity: 1;
}
/* **** End select-quantity **** */

/* **** select-interested **** */
.select-interested ul{
    display: flex;
    align-items: center;
    margin: 0 -15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.select-interested ul li{
    padding: 0 15px;
    margin: 0 0 30px;
    width: 33.33%;
}
.select-interested .select-box{
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 0 9px rgba(128, 128, 128, 0.3);
    position: relative;
    cursor: pointer;
}
.select-interested .select-box img{
    height: 50px;
    margin: 0 auto 20px;
    filter: grayscale(100%);
    opacity: 0.4;
}
.select-interested .select-box h4{
    font-size: 18px;
    color: #000;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
}
.select-interested .select-box input{
    position: absolute;
    opacity: 0;
}
.select-interested .select-box span{
    position: absolute;
    right: 15px;
    top: 15px;
    border-radius: 4px;
    height: 25px;
    width: 25px;
    border: 1px solid #010c2a;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.select-interested .select-box.selected img{
    filter: unset;
    opacity: 1;
}
.select-interested .select-box.selected span{
    background: #010c2a;
    color: #fff;
}
/* **** End select-interested **** */


.wizard-block .email-box{
    margin: 0 0 40px;
}
.wizard-block .email-box label{
    margin: 0 0 10px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
}
.wizard-block .email-box .form-control{
    font-weight: 600;
    font-size: 16px;
    color: #000;
    padding: 15px 25px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    background: var(--inputbg);
    box-shadow: none;
    border: none;
    border-radius: 10px;
}

/* ***** growing **** */
.growing-wrp {
    padding: 60px 0 20px 0;
}
.growing-wrp .row {
    align-items: center;
}
.growing-wrp .growing-img img {
    max-width: 100%;
}
.growing-wrp .growing-info h2 {
        font-weight: 900;
        letter-spacing: 0.50px;
        text-transform: uppercase;
        font-size: 30px;
        line-height: 40px;
        /*color: #010c2a;*/
    }
.growing-wrp .growing-info p {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.growing-wrp .growing-info .btn-main1 {
    margin: 35px 0 0;
}
/* ***** End growing **** */


/* **** brading **** */
.brading-wrp{
    padding: 0 0 100px;
}
.brading-wrp .titlebar h2{
    margin: 0 0 50px;
}
.brading-wrp .nav-tabs {
    border: none;
    display: flex;
    align-items: center;
    background: #010c2a;
    border-radius: 10px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto 40px;
    width: 100%;
}
.brading-wrp .nav-tabs li {
    width: 16.66%;
}
.brading-wrp .nav-tabs li:last-child {
    margin: 0;
    border: none;
}
.brading-wrp .nav-tabs .nav-link {
    border: none;
    font-size: 16px;
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding: 12px 15px;
    background: transparent;
    border-radius:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    margin: 0;
}
.brading-wrp .nav-tabs .nav-item.show .nav-link,
.brading-wrp .nav-tabs .nav-link.active {
    background: var(--white);
    color: #111;
}
.brading-wrp .brading-block .row{
    align-items: center;
}
.brading-wrp .brading-block h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.brading-wrp .brading-block p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 500;
}
.brading-wrp .brading-block ul li {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}
.brading-wrp .brading-block ul li:last-child {
    margin: 0;
}
.brading-wrp .brading-block ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #000;
    top: 8px;
    left: 0;
}
.brading-wrp .brading-block ul li:last-child {
    margin: 0;
}
.brading-wrp .brading-block img {
    border-radius: 10px;
    max-width: 100%;
}
/* **** End brading **** */


/* **** plan **** */
.plan-wrp{
    padding: 100px 0 50px;
}
.plan-wrp .plan-block{
    padding: 0 0 50px;
}
.plan-wrp .plan-block .row{
    justify-content: center;
}
.plan-wrp .plan-block .plan-title h2{
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 30px;
    color: var(--black);
}
.plan-wrp .plan-block .plan-title h2 strong{
    font-weight: 700;
    font-size: 24px;
}
.plan-wrp .titlebar p{
    margin: 0 0 15px;
}
.plan-block .row{
    justify-content: center;
}
.plan-wrp p{
    font-size: 15px;line-height: 24px;
    color: #333;
}
.plan-wrp .plan-block .plan-box{
    background: var(--inputbg);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 15px 0 30px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plan-wrp .plan-block .plan-box h3 {
    font-size: 28px;
    text-transform: uppercase;
    margin: 0 0 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-weight: 900;
    letter-spacing: 1.0px;
}
.plan-wrp .plan-block .plan-box h2{
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #1d99f3;
    color: #1d99f3;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plan-wrp .plan-block .plan-box h2 span{
    font-size: 20px;
    vertical-align: top;
    margin: 0 5px 0 0;
}
.plan-wrp .plan-block .plan-box h2 small{
    font-size: 20px;
}
.plan-wrp .plan-block .plan-box h6{
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 25px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plan-wrp .plan-block .plan-box ul{
    margin: 0 0 30px;
}
.plan-wrp .plan-block .plan-box ul li{
    font-size: 16px;
    font-weight: 600;
    color: var(--text3);
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plan-wrp .plan-block .plan-box ul li:last-child{
    margin: 0;
    padding: 0;
    border: none;
}
.plan-wrp .plan-block .plan-box .btn-main{
    display: inline;
    text-align: center;
    width: 100%;
    padding: 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plan-wrp .plan-block .plan-box:hover,
.plan-wrp .plan-block .plan-box.active{
    background: #1d99f3;
    color: var(--white);
}
.plan-wrp .plan-block .plan-box:hover h2,
.plan-wrp .plan-block .plan-box.active h2{
    color: var(--white);
}
.plan-wrp .plan-block .plan-box:hover h6,
.plan-wrp .plan-block .plan-box.active h6{
    color: var(--white);
}
.plan-wrp .plan-block .plan-box:hover ul li,
.plan-wrp .plan-block .plan-box.active ul li{
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}
.plan-wrp .plan-block .plan-box:hover .btn-main,
.plan-wrp .plan-block .plan-box.active .btn-main{
    background: var(--white);
    color: #1d99f3;
}
.plan-wrp .plan-block .plan-box.active .btn-main:hover{
    background: var(--black);
    color: var(--white);
}
.plan-wrp .plan-info{
    padding: 50px 0 0;
}
.plan-wrp .plan-info p{
    font-size: 18px;
    font-weight: 500;
    color: var(--text3);
    line-height: 28px;
    text-align: center;
}

.pric-btn .btn-main {
    font-size: 14px!important;
    font-weight: 600!important;
    background: #1d99f3!important;
    border-radius: 4px!important;
    color: var(--white);
    padding: 12px 35px!important;
    display: table;
}
.plan-wrp .plan-block .plan-box:hover .pric-btn .btn-main {
    background: #010c2a !important;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.50px;
}
.plan-wrp .plan-block .plan-box:hover h2 {
    border-bottom: 1px solid #fff;
}

/* **** End plan **** */


.counter-row{
    padding: 0 0 100px;
}
.counter-bx{
    padding: 30px;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.counter-bx h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1d99f3;
    text-align: center;
    margin: 0 0 15px;
}
.counter-bx h5 {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin: 0;
    text-transform: capitalize;
}
.counter-btn-sect {
    display: flex;
    margin-top: 4%;
    justify-content: center;
}

.btn-main2 {
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #1d99f3;
    border-radius: 2px;
    color: #fff;
    padding: 12px 18px;
    display: inline;
    background: #1d99f3;
}

.btn-main2:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #000;
}

.counter-btn-sect .btn-main {
    font-size: 16px;
    font-weight: 600;
    background: #1d99f3;
    border-radius: 3px;
    color: var(--white);
    padding: 12px 35px;
    display: table;
    margin-right: 2%;
}

.counter-btn-sect .btn-main1:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000000;
}

div#counter .row {
    display: flex
;
    justify-content: center;
}

/***** # Hero Section *****/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
  background: #010c2a;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: #010c2a;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #1d99f3;
}

.hero h1 span {
  color: #fff;
}

.hero p {
    color: #fff;
    margin: 5px 0 30px 0;
    font-size: 16px;
    font-weight: 500;
}

.hero .btn-get-started {
  color: #ffffff;
  background: #1d99f3;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: #000;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 15px;
  transition: 0.5s;
  margin-left: 25px;
  color:#fff;
  font-weight: 500;
}

.hero .btn-watch-video i {
  color: #1d99f3;
  font-size: 18px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #010c2a;
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #010c2a;
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #fff;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}














/* ***** About Page ***** */
.about-wrp{
    padding: 60px 0 60px;
}
.about-img{
    margin: 0 0 35px;
}
.about-img img{
    width: 100%;
}
.about-wrp h1{
    font-size: 32px;
    font-weight: bold;
    color: #111;
    margin: 0 0 30px;
}
.about-wrp h3 {
    font-size: 26px;
    font-weight: bold;
    color: #111;
    margin: 0 0 15px;
}
.about-wrp p{
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin: 0 0 25px;
    color: #333;
}
.about-wrp ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 15px;
    color: #333;
}
.about-wrp ol li {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 15px;
    color: #333;
}

.industries-wrp{
    padding: 0px 0 0;
}
.indus-row{
    padding: 60px 0;
}
.indus-row:nth-child(even){
    background: #f5f5f5;
}
.indus-row:nth-child(even) .row{
    flex-flow: row-reverse;
}
.indus-row .row{
    align-items: center;
}
.industry-img img{
    width: 100%;
}
.industry-data h3{
    font-size: 28px;
    font-weight: bold;
    color: #111;
    margin: 0 0 15px;
}
.industry-data p{
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 28px;
    margin: 0;
}
.navbar-light .navbar-nav .dropdown .nav-link {
    background: none;
    border: none;
    outline: none;
}
.dropdown-item {
    padding: 0.65rem 1rem;
    font-weight: 500;
}
.navbar-light .navbar-nav li ul.dropdown-menu.show li {
    margin-right: 0px;
}
.dropdown-menu {
    padding: 0rem;
}
.navbar-light .navbar-nav a.nav-link.loginbtn:focus {
    color: #010c2a;
    background: var(--white);
}

/* ***** End About Page ***** */




/* ***** product **** */
.product-wrp{
    padding: 40px 0;
}
.product-wrp .form-group{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 30px;
}
.product-wrp .form-group label{
    font-weight: 600;
    color: var(--text2);
    font-size: 16px;
    margin: 0 12px 0 0;
}
.product-wrp .form-group .form-control{
    font-weight: 600;
    color: #000;
    font-size: 16px;
    padding: 10px 15px;
    width: 270px;
    box-shadow: none;
    outline: none;
    border-radius: 4px;
    border: 1px solid var(--text1);
    background-color: var(--inputbg);
}
select.form-control {
    width: 100%;
    display: inline-block;
    margin: 0 0;
    -webkit-appearance: none;
    background-image: url(../images/down-arrow.svg) !important;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center right 15px;
}

/*.product-box{*/
/*    background-color: var(--inputbg);*/
/*    border: 2px solid  var(--inputbg);*/
/*    cursor: pointer;*/
/*}*/
.product-box {
    background-color: #ffffff;
    border: 1px solid #1d99f3;
    cursor: pointer;
}
.product-box .product-img{
    position: relative;
    overflow: hidden;
    padding: 15px;
}
.product-box .product-img img{
    max-width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.product-box .product-img ul{
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.product-box:hover .product-img img{
    opacity: 0.3;
}
.product-box:hover .product-img ul{
    bottom: 0;
}
.product-box .product-img ul:before{
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 1px;
    background: #fff;
}
.product-box .product-img ul li{
    width: 50%;
    display: block;
    background: #010c2a;
    font-size: 20px;
    padding: 10px;
    color: var(--white);
    text-align: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.product-box .product-img ul li:hover{
    background: #108de8;
    color: #fff;
}
.product-box .product-img img{
    width: 100%;
}
.product-box .product-dt{
    padding: 15px 5px;
    background: #1d99f3;
    height: 120px;
}
.product-box .product-dt h4{
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0 0 6px;
    line-height: 20px;
}
.product-box .product-dt h3 {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.50px;
}
#product_gct-b2 {
    border: 1px solid #0063ae6b;
    box-shadow: 0px 0px 6px 0.3px #0000005c;
    transition: .5s linear;
    background: #fff;
}
#product_gct-b2 .product-dt {
    background: #0f9080;
    color: #fff;
}
#product_gct-b2 .product-dt h3 {
    color: #fff;
}
#product_gct-b2 .product-dt h4 {
    color: #fff;
    line-height: 23px;
    font-weight: 500;
}
#product_gct-b2:hover .product-img {
    border-bottom: 1px solid #ffffff63;
}
#product_gct-b2 .product-dt:hover {
    background: #000000;
}


#product_gct-10 {
    border: 1px solid #0063ae6b;
    box-shadow: 0px 0px 6px 0.3px #0000005c;
    transition: .5s linear;
    background: #fff;
}
#product_gct-10 .product-dt {
    background: #0f9080;
    color: #fff;
}
#product_gct-10 .product-dt h3 {
    color: #fff;
}
#product_gct-10 .product-dt h4 {
    color: #fff;
    line-height: 23px;
    font-weight: 500;
}
#product_gct-10:hover .product-img {
    border-bottom: 1px solid #ffffff63;
}
#product_gct-10 .product-dt:hover {
    background: #000000;
}

.product-box .product-dt p {
    margin-bottom: 0px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-top: 2px;
    font-size: 12px;
}

/* ***** End product **** */


/* **** prodct-detail **** */
.about-wrp.inrpage_product {
    padding: 120px 0 20px;
    background: #010c2a;
    text-align: center;
}
.about-wrp.inrpage_product h1 {
    color: #fff;
    font-weight: 800;
    font-size: 38px;
    line-height: 44px;
    letter-spacing: 1px;
}

.product-detail-wrp{
    padding: 40px 0;
}
.product-detail-wrp .product-img{
    background: var(--inputbg);
}
.product-detail-wrp .product-img img{
    width: 80%;
    margin: 0 auto;
}
.product-detail-wrp .product-dt{
    padding-left: 30px;
}
.product-detail-wrp .product-dt h2{
    font-size: 30px;
    font-weight: bold;
    color: var(--black);
    margin: 0 0 15px;
}
.product-detail-wrp .product-dt h5{
    font-size: 20px;
    font-weight: 700;
    color: #010c2a;
}
.product-detail-wrp .product-dt .form-group{
    margin: 0 0 30px;
    display: flex;
    align-items: center;
}
.product-detail-wrp .product-dt .form-group button{
    border: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.product-detail-wrp .product-dt .form-group .form-control{
    font-size: 18px;
    font-weight: 600;
    background: var(--inputbg);
    border-radius: 8px;
    color: var(--black);
    padding: 11px 15px;
    display: table;
    width: 100px;
    margin: 0 15px 0 0;
    box-shadow: none;
    outline:none;
}

.product-detail-wrp .product-dt h6{
    font-size: 20px;
    color: var(--text2);
    font-weight: 600;
    margin: 0 0 25px;
}
.product-detail-wrp .product-dt h6 a{
    color: #010c2a;
    font-weight: 700;
}
.product-detail-wrp .product-dt h6 a:hover{
    color: var(--black);
}
.product-detail-wrp .product-dt p{
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    line-height: 28px;
}

.product-filter{
    margin: 25px 0;
}
.product-filter ul{
    display: flex;
    align-items: center;
}
.product-filter ul li{
    margin-right: 20px;
}
.product-filter ul li:last-child{
    margin: 0;
}

.redio-box [type="radio"]:checked,
.redio-box [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.redio-box [type="radio"]:checked + label,
.redio-box [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--text3);
    font-weight: 500;
    font-size: 16px;
}
.redio-box [type="radio"]:checked + label:before,
.redio-box [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.redio-box [type="radio"]:checked + label:after,
.redio-box [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #010c2a;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.redio-box [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.redio-box [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.prd-box{
    margin: 40px 0 0;
}
.prd-box h3{
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 10px;
    text-transform: capitalize;
}
.prd-box h3 a{
    font-size: 24px;
    font-weight: 700;
    color: #010c2a;
    margin: 0 0 10px;
    text-transform: capitalize;
}
.prd-box p{
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 15px;
}
.prd-box p a{
    color: #010c2a;
}
.prd-box p:last-child{
    margin: 0;
}
.prd-box ul{
    padding-left: 15px;
}
.prd-box ul li{
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 5px;
    list-style: disc;
    line-height: 28px;
    padding-bottom: 8px;
}
.prd-box .table{
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.prd-box .table tbody tr td{
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}
/* **** End product-detail **** */


/* **** Related Products **** */
.related-products-wrp{
    padding: 0 0 100px;
}
.related-products-wrp .titlebar h2{
    margin: 0 0 60px;
}
/* **** End Related Products **** */


/* **** product-woosg-wrp **** */
.product-woosg-wrp{
    padding: 0 0 30px;
}
.product-woosg-wrp ul{margin: 0 0 20px;}
.product-woosg-wrp h5{
    margin: 0;
}
.product-woosg-wrp .row{
    align-items: center;
}
.product-woosg-wrp .btn-main{
    margin-left: auto;
}
.product-woosg-wrp ul li{
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    position: relative;
}
.product-woosg-wrp ul li .woosg-img{
    display: block;
    width: 100px;
    padding: 10px;
    background: var(--inputbg);
    margin-right: 15px;
}
.product-woosg-wrp ul li .woosg-img img{
    max-width: 100%;
}
.product-woosg-wrp ul li a{
    font-size: 16px;
    font-weight: 600;
    color: #010c2a;
    display: block;
}
.product-woosg-wrp ul li span.price{
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    display: block;
}
.product-woosg-wrp ul li .number-input{
    font-size: 18px;
    font-weight: 600;
    background: var(--inputbg);
    border-radius: 8px;
    color: var(--black);
    padding: 11px 15px;
    display: table;
    width: 100px;
    box-shadow: none;
    outline:none;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.variation-box{
    margin: 10px 0 0;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.variation-box label{
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0 0 5px;
}
.variation-box select.form-control{
    font-size: 14px;
    border: none;
    font-weight: 500;
    background-color: var(--inputbg);
    border-radius: 8px;
    color: var(--black);
    padding: 8px 15px;
    box-shadow: none;
    outline:none;
    width: 270px;
    display: block;
}
/* **** End product-woosg-wrp **** */

.refndpl h4 {
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
}
.privcypolcls ul li {
    list-style: disc;
    list-style-position: inside;
    line-height: 28px;
    font-size: 16px;
}
ol.trmsrvs li {
    list-style: lower-latin!important;
    font-size: 15px;
    line-height: 28px;
    color: #000;
    list-style-position: inside!important;
    margin-bottom: 1%;
    font-weight: 500;
}
ol.trmsrvs {
    margin-bottom: 10px;
}

ol.trmsrvsct li {
    list-style: upper-latin!important;
    font-size: 15px;
    line-height: 28px;
    color: #000;
    list-style-position: inside!important;
    margin-bottom: 1%;
    font-weight: 500;
}
ol.trmsrvsct {
    margin-bottom: 10px;
}
ol.trmsrvsct li ul li {
    padding-top: 0px;
    padding-bottom: 0px;
    list-style: upper-roman!important;
    list-style-position: inside!important;
}
ol.trmsrvsct li ul {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 1%;
}
ol.trmsrvsct li ul li ul li {
    list-style: lower-alpha!important;
    list-style-position: inside!important;
}
.vdpgs h4 {
    font-weight: 600;
    text-align: center;
    font-size: 17px;
    text-transform: capitalize;
    color: #064676;
    line-height: 26px;
}
.vdpgs {
    padding-top: 2%;
}

.thnkpgcntent h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    color: #091135;
}
.thnkpgcntent h5 {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
}
.thnkpgcntent a.btn.btn-primary.gtrh {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    margin-top: 4%;
}
.thnkpgcntent .btn-primary:focus {
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, .5);
}


section.privacy-wrapper.privcypolcls {
    padding: 60px 0;
}

section.privacy-wrapper {
    padding: 60px 0;
}

section.privacy-wrapper p {
    font-size: 15px;
    line-height: 28px;
}

section.privacy-wrapper.privcypolcls p {
    font-size: 15px;
    line-height: 28px;
}

.service-item {
    float: left;
    margin-bottom: 40px;
    padding: 0 10px;
}

.section-work-strct .align-items-center {
    align-items: flex-start!important;
}

.section-after .section-title.pt-4 img {
    margin-top: 15%;
    width: 100%;
}

.get-start-wrp h2 {
    font-size: 30px;
    font-weight: 900;
    /*color: #1d99f3;*/
    margin: 0 0 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 38px;
}
section#hmstrt h5 {
    text-align: center;
    margin-bottom: 4%;
    font-size: 17px;
    letter-spacing: 0.50px;
    color: #010c2a;
}
.get-start-wrp p {
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    color: var(--black);
    margin: 0 0 15px;
}
.pointer-info .growing-info ul li {
    color: #fff;
    font-size: 15px;
    line-height: 28px;
    padding-bottom: 12px;
    font-weight: 500;
    list-style: inside;
    list-style-image: url(https://www.gpsmyworld.com/gpsretailcanada/images/write.png);
    list-style-position: outside;
    margin-left: 5%;
}
.pointer-info {
    padding: 60px 10% 40px 0px;
}
.pointer-info .growing-info h2 {
    color: #1d99f3;
}
.pointer-info .growing-info p {
    color: #fff;
    font-size: 15px;
}
.product-wrp.produt-newcls h2 {
    font-size: 30px;
    font-weight: 900;
    /*color: #1d99f3;*/
    margin: 0 0 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 38px;
    margin-bottom: 3%;
}
.product-wrp.produt-newcls h5 {
    text-align: center;
    margin-bottom: 4%;
    font-size: 16px;
    letter-spacing: 0.50px;
    color: #010c2a;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    position: relative;
}
.contact .section-title div {
    color: #000;
    font-weight: 900;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 9px;
}

.contact .info-item i {
color: #1d99f3;
    background: #1d99f35e;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #1d99f3;
  color: #fff;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #000;
    background-color: #f6f2f2;
    border-color: #9e9a9a;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #000;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #000;
}

.contact .php-email-form button[type=submit] {
  color: #fff;
    background: #1d99f3;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #1d99f3;
}
.contact .text-center {
    text-align: right !important;
}

.btn-check:active+.btn-outline-primary:focus, .btn-check:checked+.btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
    box-shadow: 0 0 0 .25rem rgb(0 0 0 / .20);
}




section.inner-citypgbanner.solutions-citypgwrp {
    padding: 15% 0;
}
.citypgbanner-detail h2 {
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.50px;
    color: #fff;
    margin-bottom: 20px;
}
.citypgbanner-detail p {
    color: #fff;
    font-size: 15px;
    text-align: center;
}
.hero-button-sect {
    display: flex;
    margin-top: 5%;
    justify-content: center;
}
.hero-button-sect ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-button-sect ul li a.btn-main2 {
    margin-right: 25px;
}
i.fas.fa-phone {
    content: '\e8f4';
    transform: rotate(100deg) !important;
    font-size: 13px;
}

.btn-check:focus+.btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem rgb(255 255 255 / 50%);
}

.btn-check:active+.btn-outline-primary:focus, .btn-check:checked+.btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
    box-shadow: 0 0 0 .25rem rgb(0 0 0 / 0);
}
.international-wrp.newhmsectr .btn-main {
    font-size: 16px;
    font-weight: 500;
    background: #1d99f3;
    border-radius: 8px;
    color: var(--white);
    padding: 12px 35px;
    display: table;
}


.plan-wrp .plan-block .plan-box.slvr:hover {
    background: #898989!important;
    color: var(--white);
}

.plan-wrp .plan-block .plan-box.gold:hover {
    background: #e2a431!important;
    color: var(--white);
}

.plan-wrp .plan-block .plan-box.pltnm:hover {
    background: #1d99f3!important;
    color: var(--white);
}


.plan-box.highlight {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.plan-wrp .plan-block .plan-box.slvr h2 {
    color: #686666;
}
.plan-wrp .plan-block .plan-box.slvr:hover h2 {
    color: #ffffff;
}
.plan-wrp .plan-block .plan-box.slvr h3{
    color: #686666;
}
.plan-wrp .plan-block .plan-box.slvr:hover h3{
    color: #fff;
}

.plan-wrp .plan-block .plan-box.gold h2 {
    color: #e2a431;
}
.plan-wrp .plan-block .plan-box.gold:hover h2 {
    color: #ffffff;
}
.plan-wrp .plan-block .plan-box.gold h3{
    color: #e2a431;
}
.plan-wrp .plan-block .plan-box.gold:hover h3{
    color: #fff;
}

.plan-wrp .plan-block .plan-box.pltnm h2 {
    color: #1d99f3;
}
.plan-wrp .plan-block .plan-box.pltnm:hover h2 {
    color: #ffffff;
}
.plan-wrp .plan-block .plan-box.pltnm h3{
    color: #1d99f3;
}
.plan-wrp .plan-block .plan-box.pltnm:hover h3{
    color: #fff;
}

.most-popular {
    display: inline-block;
    background-color: #e2a431;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 14px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.plan-box.pltnm {
    position: relative;
}
.most-valuble {
    display: inline-block;
    background-color: #1d99f3;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 14px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.plan-box.gold {
    position: relative;
}

/*Location Box*/
.location-box {
    background-color: #ffffff;
    cursor: pointer;
    border: 1px solid #97949454;
    min-height: 360px;
}
.location-box .location-dt {
    padding: 10px 10px 5px 10px;
}
.location-box .location-dt h4 {
    font-size: 13px;
    color: #000000;
    text-align: left;
    margin: 0 0 6px;
    line-height: 19px;
    font-weight: 500;
    letter-spacing: 0.50px;
}
.location-box .location-dt h3 {
    font-size: 15px;
    font-weight: 800;
    color: #0063ae;
    text-align: left;
    margin-bottom: 0px;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    margin-top: 10px;
}

.location-box .location-dt .location-address {
    display: flex;
    margin-top: 10px;
}

.location-box .location-dt .location-address span {
    display: flex;
    justify-content: center;
}
.location-box .location-dt .location-address span img {
    width: 15px;
}

.location-box .location-dt p {
    margin-bottom: 0px;
    text-align: left;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-top: 2px;
    font-size: 13px;
}
.product-wrp h2 {
    font-size: 24px;
    font-weight: 700;
    color: #3a3a3a;
}
/*End of Location Box*/

.inner-banner .banner-detail h1
 {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 0px;
    text-align: left;
    width: 60%;
}

.loctn-hd-mn {
    font-weight: 700;
    font-size: 21px;
    line-height: 28px;
    color: #1d99f3;
    margin-top: 1%;
    margin-bottom: 2%;
}
.btn-sect-acrding button.accordion-button.collapsed {
    background: #e0f1ff;
}
.accordion-button a
 {
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: block;
    font-weight: 600;
}
.city-grid
 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.localst ul li {
    list-style-image: url(/images/loct.png);
    font-size: 15px;
    line-height: 34px;
    list-style-position: inside;
    font-weight: 500;
}
.localst ul li a {
    color: #141414;
}





.refndpol1 h2
 {
    font-size: 26px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 0 0px;
    text-align: left;
    padding-bottom: 10px;
    line-height: 34px;
}

.refndpol1 h3
 {
    font-size: 22px;
    line-height: 28px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 0 0px;
    text-align: left;
    padding-bottom: 10px;
}
.refndpol1 h4
 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 0 0px;
    text-align: left;
    padding-bottom: 10px;
}

.refndpol1 ul li {
    list-style: circle;
    line-height: 28px;
    list-style-position: inside;
    padding-bottom: 10px;
}

.refndpol1 ol li {
    list-style: decimal;
	line-height: 28px;
    list-style-position: inside;
    padding-bottom: 10px;
}