@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: #0063ae;
    --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: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 10px 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.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: 95px;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav {
    margin-left: auto;
    padding-top: 10px;
}
.navbar-light .navbar-nav li {
    margin-right: 14px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
}
.navbar-light .navbar-nav .nav-link {
    padding: 12px 10px;
    color: #112059;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    text-transform: capitalize;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.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: #ae662b;
}
.navbar .navbar-nav li a:focus,
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:hover {
    color: #ae662b;
}
.navbar .navbar-nav .active a,
.navbar .navbar-nav .active a:focus,
.navbar .navbar-nav .active a:hover {
    color: #ae662b;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #ae662b;
}

.navbar-light .navbar-nav .nav-link.head-btn{
    background: #ae662b;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
}
.navbar-light .navbar-nav .nav-link.head-btn:hover{
    background-color: #112059;
    color: var(--white);
}
.navbar-light .navbar-nav .dropdown .dropdown-menu{
    padding: 0;
    border: none;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}
.navbar-light .navbar-nav .dropdown .dropdown-menu li{
    margin: 0;
}
.navbar-light .navbar-nav .dropdown .dropdown-menu .dropdown-item{
    color: var(--black);
    font-size: 14px;
    display: block;
    padding: 10px 15px;
    font-weight: 600;
    background: transparent;
    border: none;
}
.navbar-light .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover{
    background:#112059;
    color: #fff;
}

/* **** End Header **** */

/* **** 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 **** */

/* **** Hero ***** */
.hero-wrp {
    width: 100%;
    position: relative;
    margin: 81px 0 0;
    background-image: url(https://gpscotech.com/images/header-bg.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 200px 0;
}
.hero-wrp .container-fluid {
    padding: 0;
}
.hero-wrp .video-box {
    height: auto;
    width: 100%;
    position: relative;
}
.hero-wrp .video-box:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    opacity: .50;
}
.hero-wrp .video-box video {
    height: auto;
    width: 100%;
   /* object-fit: cover;
    object-position: bottom;*/
}

.hero-wrp .hero-dt{
    position: relative;
    left: 0;
    right: 0;
    top: auto;
    z-index: 5;
    /*-webkit-transform: translate(0, -50%);*/
    /*transform: translate(0, -50%);*/
}
.hero-wrp .hero-dt h1{
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 5px;
    text-transform: uppercase;
}

.hero-wrp .hero-dt h2{
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 25px;
    text-transform: capitalize;
}
.hero-wrp .hero-dt h3 {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    margin: 0 0 40px;
    line-height: 28px;
}
.hero-wrp .hero-dt ul{
    display: flex;
    align-items: center;
}
.hero-wrp .hero-dt ul li{
    margin-right: 25px;
}
.hero-wrp .hero-dt ul li:last-child{
    margin: 0;
}
.hero-wrp .hero-dt ul li .btn-main:hover{
    color: var(--black);
    background: var(--white);
}
.hero-wrp .hero-dt ul li .btn-main1{
    border-color: var(--white);
    color: var(--white);
    padding: 10px 25px;
}
.hero-wrp .hero-dt ul li .btn-main1:hover{
    border-color: #ae662b;
    background: #ae662b;
}


.hero-wrp .hero-details {
    position: relative;
    margin-top: -104px;
}
.hero-wrp .hero-details .requestdemo {
    margin: 0 auto;
    background: #112059;
    border-radius: 15px;
    padding: 40px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-wrp .hero-details .requestdemo .row {
    align-items: center;
}
.hero-wrp .hero-details .requestdemo h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 10px;
}
.hero-wrp .hero-details .requestdemo h3 {
    font-size: 22px;
    color: var(--white);
    font-weight: bold;
    margin: 0 0 25px;
}
.hero-wrp .hero-details .requestdemo h4 {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    margin: 0;
}
.hero-wrp .hero-details .requestdemo h4 a {
    color: var(--white);
    text-decoration: underline;
}
.hero-wrp .hero-details .requestbtn {
    border-radius: 40px;
    border: 2px solid var(--white);
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    padding: 15px 30px;
    display: table;
    margin-left: auto;
    margin-right: 0;
}
.hero-wrp .hero-details .requestbtn i {
    padding-right: 5px;
}
.hero-wrp .hero-details .requestbtn:hover {
    color: #112059;
    background: var(--white);
}
/* **** End Hero ***** */

.btn-main {
    font-size: 18px;
    font-weight: 600;
    background: #ae662b;
    border-radius: 8px;
    color: var(--white);
    padding: 12px 35px;
    display: table;
}
.btn-main:hover {
    background: var(--black);
    color: var(--white);
}

.btn-main1 {
    font-size: 18px;
    font-weight: 600;
    /*background: #112059;*/
    border: 2px solid #112059;
    border-radius: 8px;
    color: #112059;
    padding: 12px 35px;
    display: table;
}
.btn-main1:hover {
    background: #112059;
    color: var(--white);
}

/* ***** growing **** */
.get-start-wrp{
    padding: 60px 0;
}
.get-start-wrp h2{
    font-size: 40px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 45px;
    text-align: center;
}
.get-start-wrp h3{
    font-size:26px;
    font-weight:600;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 15px;
}
.get-start-wrp p{
    font-size:14px;
    font-weight:500;
    line-height: 24px;
    color: var(--black);
    /*text-transform: capitalize;*/
    margin: 0 0 15px;
}
.get-start-wrp ul{
    margin: 25px 0 25px;
}
.get-start-wrp ul li{
    padding: 5px 0 5px 15px;
    position: relative;
    font-size: 15px;
    font-weight: normal;
    color: var(--black);
    display: block;
}
.get-start-wrp ul li:before{
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    opacity: 0.70;
    border-radius: 50%;
    top: 12px;
    left: 0;
}
.get-start-wrp .btn-group{
    display: flex;
    align-items: center;
}
.get-start-wrp .btn-group .btn-main{
    margin-right: 15px;
}
.get-start-wrp .btn-group .btn-main:last-child{
    margin: 0;
}
.growing-wrp {
    padding: 100px 0;
}
.growing-wrp .row {
    align-items: center;
}
.growing-wrp .growing-img img {
    max-width: 100%!important;
}
.growing-wrp .growing-img.growing-img2 img{
    margin-left: auto;
    margin-right: 0;
    display: table;
}
.growing-wrp .growing-info h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
}
.growing-wrp .growing-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 10px;
}
.growing-wrp .growing-info p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 500;
}
.growing-wrp .growing-info .btn-main1 {
    margin: 35px 0 0;
}
/* ***** 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: var(--text);
    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: 50%;
    padding: 0 15px;
    margin: 0 0 20px;
}
.solutions-wrp ul li a {
    display: flex;
    align-items: flex-start;
    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-right: 18px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.solutions-wrp ul li a h2 {
    font-size: 26px;
    font-weight: bold;
    color: var(--black);
    margin: 0 0 15px;
}
.solutions-wrp ul li a p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin: 0;
}
.solutions-wrp ul li a:hover {
    background: #112059;
    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: 100px 0;
    background: #f5f5f5;
}
.feature-wrp .titlebar h2 {
    margin: 0 0 60px;
}
.feature-wrp .nav-tabs {
    border: none;
    display: flex;
    align-items: center;
    background: #112059;
    border-radius: 8px;
    border: 2px solid var(--active);
    margin: 0 0 60px;
}
.feature-wrp .nav-tabs li {
    width: 14.28%;
    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: 16px;
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding: 12px 12px;
    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;
    text-align: center;
}
.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: var(--text);
    margin: 0;
}
/* **** End Features **** */

/* **** connect **** */
.connect-wrp .row {
    align-items: flex-end;
}
.connect-wrp ul {
    margin: 30px 0 0;
}
.connect-wrp ul li {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    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: var(--text);
    top: 8px;
    left: 0;
}
.connect-wrp .growing-img img {
    margin-left: auto;
    margin-right: 0;
}
/* **** End connect **** */

/* **** Footer **** */
footer {
    background: var(--footbg);
    padding: 60px 0 20px;
}
footer .logo-img img {
    max-width: 100%;
    height: 50px;
    margin: 0 0 15px;
}
footer .foot-logo p {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 15px;
}
footer .foot-logo ul {
    display: flex;
    align-items: center;
}
footer .foot-logo ul li {
    margin-right: 10px;
}
footer .foot-logo ul li:last-child {
    margin: 0;
}
footer .foot-logo ul li a {
    font-size:16px;
    color: var(--white);
    height: 40px;
    width: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #112059;
}
footer .foot-logo ul li a:hover {
    background: var(--black);
    color: var(--white);
}

footer h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 20px;
}
footer .quick-links {
    display: table;
    margin-left: 60px;
}
footer .quick-links ul li {
    margin: 0 0 10px;
}
footer .quick-links ul li:last-child {
    margin: 0;
}
footer .quick-links ul li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-transform: capitalize;
}
footer .quick-links ul li a:hover {
    color: #112059;
}
footer .foot-blog ul li {
    margin: 0 0 10px;
}
footer .foot-blog ul li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
   /* text-transform: capitalize;*/
}
footer .foot-blog ul li a span {
    height: 35px;
    min-width:35px;
    width: 35px;
    background: #112059;
    margin-right: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .foot-blog ul li a span img{
    filter: brightness(0) invert(1);
    max-width: 50%;
}
footer .foot-blog ul li a:hover{
    color: #112059;
}
footer .foot-blog ul li a h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    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: var(--black);
    font-weight: 500;
    margin: 0;
}
footer .foot-blog ul li a:hover h3 {
    color: #112059;
}
footer .copyright {
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid #112059;
}
footer .copyright p {
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
    text-align: center;
    margin: 0;
}
/* **** End Footer **** */

/* **** Inner Banner **** */
.inner-banner {
    margin: 68px 0 0;
    background-image: url("../images/inner-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    position: relative;
}
.inner-banner:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #112059;
    opacity: 0.3;
}
.solutions-pgwrp{
    height: 450px;
    background-image: url("../images/vehicle-tracking-devices-banner.jpg");    
}
.solutions-pgwrp:before{
    background: #000;
}

.inner-banner .banner-detail {
    margin: 0 auto;
    display: table;
    position: relative;
    z-index: 6;
}
.inner-banner .banner-detail h2 {
    font-size: 46px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 30px;
    text-align: center;
}
.inner-banner .banner-detail ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner .banner-detail ul li {
    font-size: 16px;
    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: var(--text);
    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: var(--text);
    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: var(--text);
    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: var(--text);
    margin: 0 0 20px;
    font-weight: 500;
}
.effeciency-wrp ul li {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    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: var(--text);
    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: var(--text);
    margin: 0 0 20px;
    font-weight: 500;
}
.monitoring-wrp ul li {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    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: var(--text);
    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: var(--text);
    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: var(--text);
    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: var(--text);
    margin: 0 0 20px;
    font-weight: 500;
}
/* ***** End mobile-telematics-wrp **** */

/* **** technology-wrp *** */
.technology-wrp {
    padding:  0 0 100px;
}
.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: var(--text);
    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: #112059;
    margin: 0 0 30px;
    font-size: 40px;
    color: var(--white);
    -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: var(--text);
    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: #112059;
}
.technology-wrp .technology-block a:hover .technology-bix .icon-box {
    background: var(--white);
    color: #112059;
}
.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: #112059;
    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
 {
    font-size: 30px;
    line-height: 45px;
    margin: 0 0 10px;
    color: #ae662c;
    text-align: center;
}
.contact-wrp .contact-block .titlebar p {
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    color:#000;
}
.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: #112059;
    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: var(--text);
    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: var(--text);
    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: var(--text);
    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: var(--text);
    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 .dt-box{
    margin: 0 0 30px;
}
.industry-wrp .industry-block .industry-dt .dt-box:last-child{
    margin: 0;
}
.industry-wrp .industry-block .industry-dt .dt-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 10px;
}
.industry-wrp .industry-block .industry-dt p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 500;
}
.industry-wrp .industry-block .industry-dt ul li {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}
.industry-wrp .industry-block .industry-dt ul li:before {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background: var(--text);
    top: 8px;
    left: 0;
}
.industry-wrp .industry-block .industry-img{
    width: 100%;
    background: var(--inputbg);
}
.industry-wrp .industry-block .industry-img img{
    max-width: 100%;
    margin: 0 auto;
}

.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: #112059;
    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: var(--text);
    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: var(--text);
    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: var(--text);
    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);
    height: 100%;
    margin: 0 0 30px;
    text-align: center;
}
.connect-wrp .connect-box .box-icon{
    height: 100px;
    width: 100px;
    background: #112059;
    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: var(--text);
    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:rgba(1, 88, 155, 0.6);
    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: 17px !important;
    margin: 0 0 18px;
    padding: 0 0 10px;
    font-weight: bold;
    color: var(--white);
    position: relative;
    line-height: 22px !important;
}
.industries-wrp .slider-box a .box-info h2:before{
    position: absolute;
    content: "";
    height: 2px;
    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: #112059;
    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: #112059;
    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: var(--text);
    margin: 0 0 20px;
    font-weight: 500;
}
.brading-wrp .brading-block ul li {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    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: var(--text);
    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: #112059;
    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: #112059;
    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: #112059;
    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 100px;
}
.international-wrp .row{
    align-items: center;
}
.international-info h4{ 
    font-size: 18px;
    font-weight: 600;
    color: #112059;
    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: var(--text);
    margin: 0 0 15px;
}
.international-info ul li img{
    width: 28px;
    margin-right: 12px;
}
.international-img img{
    width: 100%;
}


.growing-info ul{
    margin: 0 0 40px;
}
.growing-info ul li{
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
}
.growing-info ul li:last-child{
    margin: 0;
}
.growing-info ul li span{
    margin: 0;
    color: #112059;
    margin-left: auto;
}

.contact-growing-wrp .growing-info .btn-box{
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}
.contact-growing-wrp .growing-info .btn-main1{
    margin: 0 0 0 20px;
    padding: 10px 35px;
}
.contact-growing-wrp .growing-info h5{
    font-size: 20px;
    color: var(--text2);
    font-weight: 600;
    margin: 0;
}
.contact-growing-wrp .growing-info h5 a{
    color: #112059;
}



/* **** faq **** */
.faq-wrp{
    padding: 100px 0 100px;
    background: #f5f5f5;
}
.faq-wrp .accordion{
    width: 75%;
    margin: 0 auto;
}
.faq-wrp .accordion .accordion-item {
    margin: 0;
    background-color: transparent;
    border: none;
    background: #fff;
    margin: 0 0 20px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px 35px;
}
.faq-wrp .accordion .accordion-item .accordion-button {
    font-size: 20px;
    color: #000;
    padding: 0;
    font-weight: 600;
    background-color: transparent;
    position: relative;
}
.faq-wrp .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: unset;
}
.faq-wrp .accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.faq-wrp .accordion .accordion-item .accordion-button::after {
    display: none;
}
.faq-wrp .accordion .accordion-item .accordion-button:before {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    right: 0;
    top: 50%;
    font-size: 20px;
    color: #000;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.faq-wrp .accordion .accordion-item .accordion-button.collapsed:before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
}
.faq-wrp .accordion .accordion-body {
    padding: 25px 0 0;
}
.faq-wrp .accordion .accordion-body p {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    line-height: 28px;
    padding-bottom: 1%;
}
.faq-wrp .accordion .accordion-body p a{
    color: #112059;
}


/* ***** reviews-wrp ***** */
.reviews-wrp{
    padding: 100px 0 100px;
}
.reviews-wrp .reviews-box{
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.reviews-wrp .reviews-box img{
    max-width: 100%;
    margin: 0 auto 15px;
}
.reviews-wrp .reviews-box span{
    font-size: 40px;
    margin: 0 auto 10px;
    color: #112059;
}
.reviews-wrp .reviews-box h3{
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
    margin: 0 0 20px;
}
.reviews-wrp .reviews-box p{
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color: var(--text3);
    font-style: italic;
}
/* ***** End reviews-wrp ***** */

.technology-information{
    padding: 100px 0 0;
}
.technology-information .info-box{
    padding-left: 45px;
    position: relative;
    margin: 0 0 50px;
}
.technology-information .info-box:before{
    position: absolute;
    content: "";
    height: 60px;
    width: 60px;
    left: 0;
    top: -5px;
    content: "\f33b";
    color: #112059;
    font-size: 30px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}
.technology-information .info-box h4{
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
    color: var(--black);
}
.technology-information .info-box p{
    font-size: 16px;
    color: var(--text3);
    font-weight: 600;
    margin: 0;
}
.trackers-industry-wrp.industry-wrp .industry-block .industry-img img{width: 100%;}
.industry-wrp .industry-block .industry-img.industry-img2 img{width: 100%;}


/* ***** product **** */
.product-wrp{
    padding: 100px 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 .product-img{
    position: relative;
    overflow: hidden;
   /* padding: 15px;*/
    padding: 0 0 0px 0;
}
.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: 100%;
    display: block;
    background: var(--black);
    color: var(--white);
    font-size: 20px;
    padding: 10px;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    justify-content: center;
    display: flex;
}

.product-box .product-img ul li img{
    width:100px;
    opacity: 1!important;
}
.product-box .product-img ul li:hover{
    background: var(--black);
    color: var(--white);
}
.product-box .product-img img{
    width: 100%;
}
.product-box .product-dt{
    padding: 15px;
    background: #fff;
}
.product-box .product-dt h4{
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 0 0 10px;
}
.product-box .product-dt h3{
    font-size: 14px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}
/* ***** End product **** */


/* **** 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: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plan-wrp .plan-block .plan-box h2{
    font-size: 40px;
    font-weight: 500;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #d2d2d2;
    color: #112059;
    -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 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-size:14px;
}
.plan-wrp .plan-block .plan-box:hover,
.plan-wrp .plan-block .plan-box.active{
    background: #112059;
    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: #112059;
}
.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;
}
/* **** End plan **** */

/* **** plan-table **** */
.plan-table{
    padding: 0 0 100px;
}
.plan-table .table{
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.plan-table .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;
    text-align: center;
}
/* **** End plan-table **** */


/* **** prodct-detail **** */
.product-detail-wrp{
    padding: 100px 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: 34px;
    font-weight: bold;
    color: var(--black);
    margin: 0 0 15px;
}
.product-detail-wrp .product-dt h5{
    font-size: 20px;
    font-weight: 700;
    color: #112059;
}
.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: #112059;
    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;
}

.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: #112059;
    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: 30px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 20px;
    text-transform: capitalize;
}
.prd-box h3 a{
    font-size: 30px;
    font-weight: 700;
    color: #112059;
    margin: 0 0 20px;
    text-transform: capitalize;
}
.prd-box p{
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 15px;
}
.prd-box p a{
    color: #112059;
}
.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;
}
.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: #112059;
    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 **** */

.features-block{
    padding: 30px 30px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0,0.05);
    margin: 0 0 30px;
}
.features-block img{
    margin: 0 auto 25px;
}
.features-block h3{
    font-size: 16px;
    font-weight: bold;
    color: #111;
    text-align: center;
    margin: 0 0 15px;
}
.features-block p{
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #333;
    margin: 0;
    min-height: 100px;
}

.privacy-wrapper{
    padding: 60px 0;
}
.privacy-wrapper p{
    font-size: 15px;
    font-weight: normal;
    color: #333;
    line-height: 24px;
    margin: 0 0 20px;
}
a[href="dog-bike-mini-trackers.html"] {
    display: none !important;
}

/*City Page CSS*/

.citypage-wrp {
    padding: 50px 0;
}
.citypage-wrp .citypage-block .citypage-disc p {
    font-size: 15px;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 500;
    text-align: justify;
}
.solutions-citypgwrp {
    height: 450px;
}
.citypage-wrp {
    padding: 50px 0 0px 0;
}
.citypage-disc h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 38px;
    margin-bottom: 10px!important;
}

.inner-citypgbanner {
    margin: 68px 0 0;
    background-image: url(../images/merit.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
    position: relative;
}
.inner-citypgbanner .citypgbanner-detail h2 {
    font-size: 46px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 30px;
    text-align: center;
}
.inner-citypgbanner .citypgbanner-detail ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-citypgbanner .citypgbanner-detail ul li {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    margin-right: 10px;
    position: relative;
}
.inner-citypgbanner .citypgbanner-detail h3 {
    font-weight: 700;
    color: var(--white);
    margin: 0 0 25px;
    text-transform: capitalize;
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}
.inner-citypgbanner .citypgbanner-detail ul li a {
    color: var(--white);
}
.hwitwrk h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 10px;
    text-align: center;
}



.product-wrp {
    padding: 0px;
}
.product-wrp .product-block .row {
    align-items: center;
}
.product-wrp .product-block .col-md-6 {
    padding: 0;
}
.product-wrp .product-block .product-dt {
    padding-right: 50px;
}
.product-wrp .product-block .product-dt h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 10px;
}
.product-wrp .product-block .product-dt p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 20px;
    font-weight: 500;
    text-align: justify;
}
.product-wrp .product-block .product-img {
    width: 100%;
}
.product-wrp .product-block .product-img img {
    width: auto;
}
.produc1 {
    margin-bottom: 50px!important;
}
.produc2 {
    margin-bottom: 50px!important;
}
.produc3 {
    margin-bottom: 50px!important;
}
.citypage-wrp .citypage-block .citypage-disc ol li {
    line-height: 26px;
    color: #000000;
    margin: 0 0 0px;
    text-align: justify;
    list-style: inside;
    list-style-type: auto;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.get-start-wrp .inrpg p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 15px;
}
.get-start-wrp .inrpg ol li {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 15px;
    list-style: inside;
    list-style-type: auto;
}
.growing-info.grow-sec {
    text-align: center;
}
.plan-wrp .ctypg p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
}
.industry-wrp .industry-block .industry-img.indsimg {
    width: 100%;
    background: transparent;
}
/*.navbar-light .navbar-nav li {*/
/*    margin-right: 30px;*/
/*}*/
.navbar-light .navbar-nav .nav-link.head-btn {
    padding: 12px 12px;
}
.navbar-light .navbar-nav .nav-link {
    padding: 13px 6px;
    font-size: 14px;
}
.inner-citypgbanner .citypgbanner-detail p {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    margin-right: 10px;
    position: relative;
    text-align: center;
}
.get-start-wrp .inrpg ol li {
    line-height: 26px;
    color: #000000;
    margin: 0 0 0px;
    text-align: justify;
    list-style: inside;
    list-style-type: auto;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.citypage-wrp .citypage-block .citypage-disc p a {
    color: #0063ae;
}
.inner-banner.locpg {
    margin: 68px 0 0;
    background-image: url(../images/inner-banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    position: relative;
}
.inner-banner.locpg .banner-detail h2 {
    font-size: 46px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 0px;
    text-align: center;
}
.localst h4 {
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
}
.localst h4 a {
    color: #126db1;
}
.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;
}
.product-box {
    margin-top: 5%;
}

.technology-info-city ul.sectn1 li
 {
    list-style: circle;
    font-size: 14px;
    line-height: 29px;
    color: #000;
    font-weight: 500;
    position: relative;
  padding-bottom: 0%;
}
.technology-info-city p
 {
    list-style: circle;
    font-size: 14px;
    line-height: 29px;
    color: #000;
    font-weight: 500;
    position: relative;
  padding-bottom: 0%;
}

/*End Of City Page*/

.industry-dt.indus-nwchng ol li {
    list-style: decimal;
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
    padding-bottom: 2%;
}
.industry-dt.indus-nwchng p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text);
}

.industry-dt.indus-nwchng ul {
    display: flex
;
    justify-content: center;
}

.industry-dt.indus-nwchng ul li {
    margin-right: 25px;
}

.effeciency-block.indus-nwchng ol li {
    list-style: decimal;
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    margin: 0 0 5px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
    padding-bottom: 2%;
}
.hero-wrp .hero-dt.lnding-pg h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 11px;
    text-transform: capitalize;
}
.inner-citypgbanner .citypgbanner-detail.lnding-pg h2 {
    font-size: 30px;
    margin: 0 0 14px;
}
.inner-citypgbanner .citypgbanner-detail.lnding-pg h3 {
    font-size: 20px;
}

section.inner-citypgbanner.landing-pgsec {
   /* margin: 0 0 0 0;*/
   height: 468px;
   padding: 15% 0 0 0;
}
.citypage-wrp.landing-pg-wrp1 {
    padding: 0px 0 0px 0;
}

/*Installer page*/
.lst2 {float: left; overflow: hidden;}
.lst2 img.aligncenter {margin-bottom: 5px; width: 100%;}

.lst3 {float: right; padding: 2% 1% 2% 3%; min-height: 150px;}
.lst1 {
    border: 1px solid #bdbdbd;
    overflow: hidden;
    margin-bottom: 0px;
    padding: 2% 1%;
    box-shadow: 0px 0px 6px 0.3px rgba(0, 0, 0, 0.09);
}
.features-block .lst3 h3 {
    font-size: 16px;
    font-weight: bold;
    color: #111;
    text-align: left;
    margin: 0 0 10px;
    text-transform: uppercase;
    color: #0d6efd;
}
.features-block .lst3 h6 {
    text-align: left;
    color: #333;
    font-size: 14px;
}
.features-block .lst3 p {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #333;
    margin: 0;
    min-height: auto;
}
.inner-banner.insg {
    margin: 69px 0 0;
}
.features-block.nwinst p {
    text-align: left;
}

.features-block.nwinst p {
    font-weight: 500;
	min-height: auto;
	}

.features-block.nwinst ul {
    min-height: 100px;
}

.nwinst h4 a {
    color: #000000;
}

.nwinst ul p a {
    color: #0063ad;
}
a.btn-main2 {
    font-size: 16px;
    font-weight: 600;
    background: #112059;
    border-radius: 8px;
    color: #ffffff;
    padding: 12px 20px;
    display: table;
}
a.btn-main2:hover {
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: #fefefe;
    padding: 12px 20px;
    display: table;
}
.btn-main {
    font-size: 16px;
}
a.btn-main.btn-extr {
    background: #ae662b4a;
    border: 2px solid #fff;
}
i.fas.fa-phone {
    content: '\e8f4';
    transform: rotate(100deg)!important;
    font-size: 14px;
}
.hero-wrp .hero-dt .btn-main {
    font-size: 14px;
    font-weight: 500;
}
.hero-wrp .hero-dt .btn-main1 {
    font-size: 14px;
    font-weight: 500;
}
.hero-wrp .hero-dt .btn-main2 {
    font-size: 14px;
    font-weight: 500;
}
.butnsec {
    display: flex;
    justify-content: center;
    align-items: center;
}
.industry-wrp .industry-block .industry-dt .product-dt p {
    margin-bottom: 5px;
}
.product-box .product-dt {padding: 10px 4px;}
.product-box .product-dt h4 {font-size: 14px;}
/*
#product_gct-b2 .product-dt {background: #112059; 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-dt {border-top: 1px solid #fff;}
#product_gct-b2 .product-dt:hover {background: #000000;}
#product_gct-b2 {border: 1px solid #0063ae6b; box-shadow: 0px 0px 6px 0.3px #0000005c; transition: .5s linear; background: #fff;}
#product_gct-b2:hover {border: 1px solid #00000063;}

#product_gct-10 .product-dt {background: #112059; 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-dt {border-top: 1px solid #fff;}
#product_gct-10 .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:hover {border: 1px solid #00000063;}
*/
.get-start-wrp.pointr ul li {font-weight: 600; letter-spacing: 0.50px;  font-size: 15px; line-height: 28px;}
.get-start-wrp.pointr ul {margin: 0px 0 0px;}
.refndpol h3 {font-size: 30px; font-weight: bold; line-height: 38px; margin-bottom: 10px!important;}
.refndpol h4 {line-height: 26px; color: #000000; margin: 0 0 0px; text-align: left; font-weight: 600; font-size: 20px; margin-bottom: 10px; letter-spacing: 1px;}

.titlebar.appstr ul {display: flex; justify-content: center; align-items: center;}
.titlebar.appstr ul li {padding-left: 25px;}

.product-box {
    border: 1px solid #0000006b;
    box-shadow: 0px 0px 6px 0.3px #0000005c;
    transition: .5s linear;
    background: #fff;
}
.product-box .product-dt {
    padding: 10px 4px;
    background: #87a9c557;
    color: #fff;
}
.product-box .product-dt h4 {
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
}
.product-box .product-dt h4 strong {
    color: #dc3545;
}
.related-products-wrp .product-box .product-dt {
    padding: 10px 4px;
    min-height: auto;
    background: #87a9c557;
    color: #fff;
}
.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: #333;
    list-style-position: inside!important;
    margin-bottom: 1%;
}
ol.trmsrvs {
    margin-bottom: 10px;
}

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

/*Blog Page*/
.blg-sect{background:#f9f9f9;box-shadow:0 0 6px .3px #212121;transition:.5s linear;border:0;padding:0!important}.blg-sect .blg-discrip,.blg-sect .blg-title{padding:10px;text-align:center}a.btn-rd{text-align:center;justify-content:center;display:inherit;margin-bottom:10px;font-weight:600;text-transform:uppercase;color:#0063ad}.blg-sect .blg-title h3 a{font-size:18px;font-weight:600;color:#0063ad;margin-top:5%;text-transform:unset;line-height:28px}.blg-discrip p{font-size:15px;line-height:28px}.blg-sect:hover{background:#fff}.inner-banner .banner-detail h1{font-size:46px;font-weight:700;color:var(--white);margin:0 0 30px;text-align:center}


/*Single Blog CSS*/
.singblg-discrip ol.mtr li,.singblg-discrip ul li,ol.mtrinr li{padding-bottom:18px;font-size:16px}.inner-banner .banner-detail h1{font-size:22px; letter-spacing: 0.50px; font-weight:700;color:var(--white);margin:0;text-align:left;float:left}.singleblg-title h3{font-weight:700;font-size:24px}.singblg-discrip img{display:block;text-align:center; width: 100%; margin:10px auto}.singblg-discrip p{font-size:16px;line-height:28px}.singblg-discrip h3{font-size:19px;font-weight:700;margin-bottom:1%;margin-top:2%}.singblg-discrip h4{font-size:16px;font-weight:700}.singblg-discrip ul li{line-height:28px;list-style:disc inside}.singblg-discrip ol.mtr li{line-height:28px;list-style:upper-alpha inside}ol.mtrinr{margin-left:20px}ol.mtrinr li{list-style:auto inside!important}main{display:flex}article{flex:3;padding-left:20px}aside{flex:1;position:sticky;position:-webkit-sticky;top:20px;padding:10px;border:1px solid #ccc;height:fit-content}aside nav ul{list-style-type:none;padding:0 0 0 15px}aside nav ul li{margin-bottom:23px;list-style:circle}aside nav ul li a{font-weight:600;text-decoration:none;color:#000}aside nav ol li a{font-size:14px!important}aside nav ol{padding-left:12px;padding-top:15px}aside nav ol li{list-style:auto}aside nav ul li a:hover{color:#007bff}.singblg-discrip ol.mtr li, .singblg-discrip ul li, ol.mtrinr li {letter-spacing: 0.50px; font-size: 14px; font-weight: 500;}.singblg-discrip p {font-size: 14px; line-height: 28px; letter-spacing: 0.50px; color: #000; font-weight: 500;}

.product-dt.produc-discrip p {
    line-height: 28px;
}

.pointr-sect1 {
    background: #eff5fa;
    color: #000;
    padding: 30px 90px 20px 90px!important;
}
.get-start-wrp .pointr-sect1 ul li {
    color: #ffffff;
}

.get-start-wrp .pointr-sect1 ul li {
    font-weight: 600;
    letter-spacing: 0.50px;
    font-size: 15px;
    line-height: 22px;
    padding-bottom: 16px;
    list-style: circle;
    color: #000;
    list-style-image: url(https://gpscotech.com//images/list-symbal.png);
    display: list-item;
	position: inherit;
    padding: 0 0 20px 0;
}
.get-start-wrp.hmstrt-sect p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--black);
    margin: 0 0 15px;
    text-align: center;
}
.get-start-wrp.hmstrt-sect h2 {
    font-size: 35px;
    font-weight: 900;
    color: #112059;
    text-transform: uppercase;
    margin: 0 0 45px;
    text-align: center;
    line-height: 45px;
}
.get-start-wrp.hmstrt-sect h5 {
    margin-bottom: 2% !important;
    color: #ae662b !important;
}
.product-sectn.product-sectn1 h5 {
    font-size: 15px;
    text-transform: uppercase;
    line-height: 28px;
    color: #ae662b;
}

.product-sectn.product-sectn1 h2 {
    font-size: 40px;
    font-weight: 900;
    color: #112059;
    text-transform: uppercase;
    margin: 0 0 10px;
    text-align: left;
    line-height: 48px;
    letter-spacing: 2px;
}
#prduct-sects1 .product-block-home {
    background: transparent;
}
#prduct-sects1 .product-dt-home h5 {
    color: #ffffff;
}

#prduct-sects1 .product-dt-home h3 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding-bottom: 5px;
}
#prduct-sects1 .product-dt-home h2 {
    font-weight: 700;
    color: #ffffff;
    line-height: 38px;
    font-size: 30px;
    margin-bottom: 0px;
}

#prduct-sects1 .product-dt-home p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 15px;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: 0.50px;
}
#prduct-sects1 .product-dt-home .btn-main1 {
    border: 1px solid #ffffff;
    color: #ffffff;
}


#prduct-sects1 .product-dt-home .btn-main {
    font-weight: 500;
}

#prduct-sects1 .product-wrp-homesec1 .product-img-home.indsimg-home img {
    width: 100%;
    padding: 3%;
}

#prduct-sects2 .product-dt-home h3 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #112059;
    color: #000;
    padding-bottom: 5px;
}

#prduct-sects2 .product-dt-home h5 {color: #112059!important;}

#prduct-sects2 .product-dt-home p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 15px;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: 0.50px;
}

#prduct-sects3 .product-block-home {
    background: transparent;
}
#prduct-sects3 .product-dt-home h5 {
    color: #ffffff;
}

#prduct-sects3 .product-dt-home h3 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding-bottom: 5px;
}
#prduct-sects3 .product-dt-home h2 {
    font-weight: 700;
    color: #ffffff;
    line-height: 38px;
    font-size: 30px;
    margin-bottom: 0px;
}

#prduct-sects3 .product-dt-home p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 15px;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: 0.50px;
}
#prduct-sects3 .product-dt-home .btn-main1 {
    border: 1px solid #ffffff;
    color: #ffffff;
}


#prduct-sects3 .product-dt-home .btn-main {
    font-weight: 500;
}

#prduct-sects3 .product-wrp-homesec1 .product-img-home.indsimg-home img {
    width: 100%;
    padding: 3%;
}

.monitering-sectn.product-sectns2 h2 {
    font-size: 40px;
    font-weight: 900;
    color: #112059;
    text-transform: uppercase;
    margin: 0 0 10px;
    text-align: left;
    line-height: 48px;
    letter-spacing: 2px;
}
.monitering-wrp-new .part2-moniter {
    width: 84%;
    background-color: #1120596e;
}

.product-sectn.product-sectns3 h5 {
    color: #ae662b;
}

.product-sectn.product-sectns3 h2 {
    font-size: 40px;
    font-weight: 900;
    color: #112059;
    text-transform: uppercase;
    margin: 0 0 10px;
    text-align: left;
    line-height: 48px;
    letter-spacing: 2px;
}


.faq-wrp-hm.newpgfaq {
    padding: 0px 0 0px;
    background: transparent;
}
.faq-wrp-hm.newpgfaq button.accordion-button {
    text-align: left;
}

.faq-wrp-hm.newpgfaq .accordion-body {
    padding: 1rem 0rem 0 0;
}

.faq-wrp-hm.newpgfaq .accordion .accordion-item {
    border-radius: 0px;
    padding: 15px 26px;
    margin: 0 0 40px;
}
.faq-wrp-hm.newpgfaq .accordion-button::after {
    display: flex;
    float: right;
    text-align: right;
    top: 0px;
    position: relative;
}

.faq-wrp-hm.newpgfaq .accordion-button:not(.collapsed)::after {
    float: right;
    text-align: right;
    top: 0px;
    position: relative;
}

.faq-wrp-hm.newpgfaq .accordion .accordion-item .accordion-button {
    font-size: 15px;
    padding: 0;
    font-weight: 600;
    position: relative;
    line-height: 22px;
    letter-spacing: 0.50px;
}

.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%;
}

.contact-wrp .contact-block .newpg-contact button {
    padding: 10px 30px;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
}

.growing-wrp-newpg .newpg-rst.industry-dt {
    background-color: #ae662b;
    color: white;
    padding: 36px 2% 50px 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.get-start-wrp-hm.strsr-dt .features-block {
    padding: 60px 30px;
}
.get-start-wrp-hm.strsr-dt .features-block img {
    margin: 0 auto 40px;
}

.get-start-wrp-hm.strsr-dt .features-block p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    margin: 0;
    min-height: 100px;
    font-weight: 500;
}
.get-start-wrp-hm.strsr-dt  .features-block h3 {
    font-size: 16px;
    font-weight: bold;
    color: #112059;
    text-align: center;
    margin: 0 0 15px;
}
/*.sect-rt1 {*/
/*    background-image: url(https://gpscotech.com/images/imgr1-1.png);*/
/*    padding: 1% 2%;*/
/*    background-size: cover;*/
/*    color: #fff;*/
/*    background-position: bottom;*/
/*    background-repeat: no-repeat;*/
/*}*/

.sect-rt1 {
    background-image: url(https://gpscotech.com/images/bgr1.jpg);
    padding: 1% 2% 3% 2%;
    background-size: cover;
    color: #fff;
    background-position: top;
    background-repeat: no-repeat;
}

.sect-rt1 h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #ffffff;
}

.sect-rt1 p {
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin: 0;
    min-height: 100px;
    font-weight: 500;
}
.sect-rt1 h4 {
    font-size: 16px;
    line-height: 28px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.sect-rt1 h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.sect-rt1 .product-btn {
    display: flex;
    margin-top: 1%;
}
.sect-rt1 .product-btn .btn-main1 {
    font-size: 15px !important;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 25px;
    display: table;
}
.sect-rt1 .product-btn .btn-main1:hover {
    background: #fff;
    color: #000;
}
.sect-rt1 .product-btn .btn-main {
    font-size: 15px !important;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #000;
    padding: 10px 15px;
    display: table;
    background: #fff!important;
}
.sect-rt1 .product-btn .btn-main:hover {
    background: #fff;
    color: #000;
}
/*.sect-rt2 {*/
/*    background-image: url(https://gpscotech.com/images/imgr2.png);*/
/*    padding: 1% 2%;*/
/*    background-size: cover;*/
/*    color: #fff;*/
/*    background-position: bottom;*/
/*    background-repeat: no-repeat;*/
/*}*/

.sect-rt2 {
    background-image: url(https://gpscotech.com/images/bgr4.jpg);
    padding: 1% 2% 3% 2%;
    background-size: cover;
    color: #fff;
    background-position: top;
    background-repeat: no-repeat;
}

.sect-rt2 h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #ffffff;
}
.sect-rt2 p {
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin: 0;
    min-height: 100px;
    font-weight: 500;
}
.sect-rt2 h4 {
    font-size: 16px;
    line-height: 28px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.sect-rt2 h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.sect-rt2 .product-btn {
    display: flex;
    margin-top: 6%;
}
.sect-rt2 .product-btn .btn-main1 {
    font-size: 15px !important;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 25px;
    display: table;
}
.sect-rt2 .product-btn .btn-main1:hover {
    background: #fff;
    color: #000;
}
.sect-rt2 .product-btn .btn-main {
    font-size: 15px !important;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #000;
    padding: 10px 15px;
    display: table;
    background: #fff!important;
}
.sect-rt2 .product-btn .btn-main:hover {
    background: #fff;
    color: #000;
}

/*.sect-rt3 {*/
/*    background-image: url(https://gpscotech.com/images/imgr3-1.png);*/
/*    padding: 1% 2%;*/
/*    background-size: cover;*/
/*    color: #fff;*/
/*    background-position: bottom;*/
/*    background-repeat: no-repeat;*/
/*}*/

.sect-rt3 {
    background-image: url(https://gpscotech.com/images/bgr3.jpg);
    padding: 1% 2% 3% 2%;
    color: #fff;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.sect-rt3 h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #ffffff;
}
.sect-rt3 p {
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin: 0;
    min-height: 100px;
    font-weight: 500;
}
.sect-rt3 h4 {
    font-size: 16px;
    line-height: 28px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.sect-rt3 h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.sect-rt3 .product-btn {
    display: flex;
    margin-top: 1%;
}
.sect-rt3 .product-btn .btn-main1 {
    font-size: 15px !important;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 25px;
    display: table;
}
.sect-rt3 .product-btn .btn-main1:hover {
    background: #fff;
    color: #000;
}
.sect-rt3 .product-btn .btn-main {
    font-size: 15px !important;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #000;
    padding: 10px 15px;
    display: table;
    background: #fff!important;
}
.sect-rt3 .product-btn .btn-main:hover {
    background: #fff;
    color: #000;
}
/*.sect-rt4 {*/
/*    background-image: url(https://gpscotech.com/images/imgr1-1.png);*/
/*    padding: 1% 2%;*/
/*    background-size: cover;*/
/*    color: #fff;*/
/*    background-position: bottom;*/
/*    background-repeat: no-repeat;*/
/*}*/

.sect-rt4 {
    background-image: url(https://gpscotech.com/images/bgr2.jpg);
    padding: 1% 2% 3% 2%;
    background-size: cover;
    color: #fff;
    background-position: top;
    background-repeat: no-repeat;
}

.sect-rt4 h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #ffffff;
}

.sect-rt4 p {
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin: 0;
    min-height: 100px;
    font-weight: 500;
}
.sect-rt4 h4 {
    font-size: 16px;
    line-height: 28px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.sect-rt4 h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.sect-rt4 .product-btn {
    display: flex;
    margin-top: 5%;
}
.sect-rt4 .product-btn .btn-main1 {
    font-size: 15px !important;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 25px;
    display: table;
}
.sect-rt4 .product-btn .btn-main1:hover {
    background: #fff;
    color: #000;
}
.sect-rt4 .product-btn .btn-main {
    font-size: 15px !important;
    font-weight: 600;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #000;
    padding: 10px 15px;
    display: table;
    background: #fff!important;
}
.sect-rt4 .product-btn .btn-main:hover {
    background: #fff;
    color: #000;
}
.sect-rt1 img {
    width: 350px;
    height: 350px;
}
.sect-rt2 img {
    width: 350px;
    height: 350px;
}
.sect-rt3 img {
    width: 350px;
    height: 350px;
}
.sect-rt4 img {
    width: 350px;
    height: 350px;
}

footer {
    background: #000000;
}
footer .foot-logo p {
    color: #ffffff;
}
footer h3 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.50px;
}
footer .quick-links ul li a {
    color: #ffffff;
}
footer .foot-blog ul li a {
    color: #ffffff;
}
footer .copyright {
    border-top: 1px solid #ffffff;
}
footer .copyright p {
    color: #ffffff;
}
footer .quick-links ul li a:hover {
    color: #ae662b;
}

footer .foot-blog ul li a:hover {
    color: #ae662b;
}
footer .foot-blog ul li a span {
    background: #945725;
}

.growing-img img {
    width: 100%;
}

section.get-start-wrp-hm.strsr-dt1 .carousel-control-next, .carousel-control-prev {
    width: 2%;
}

section.get-start-wrp-hm.strsr-dt1 .carousel-control-next, .carousel-control-prev{
    width: 2%;
}

.get-start-wrp-hm.strsr-dt1 .features-block {
    /*background: #e18c2e;*/
    background-image: url(https://gpscotech.com/images/img-bgr.png);
    background-size: cover;
    padding: 50px 30px;
}

.get-start-wrp-hm.strsr-dt1 .features-block h3 {
    color: #ffffff;
}
.get-start-wrp-hm.strsr-dt1 .features-block p {
    color: #ffffff;
}



.blue-button {
            background-color: #1a9af7; 
            color: white;
            padding: 7px 10px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
            width: auto;
            display: flex;
            flex-direction: row; 
            align-items: center;
            justify-content: space-between; 
            text-align: center;
        }

        .blue-button:hover {
            background-color: #0073e6;
        }

        .prime-logo {
            margin-top: 0px;
            vertical-align: middle;
        }

        .logo-prt {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-right: 10px; 
        }

		.logo-prt h4 {
			margin: 0;
			font-size: 10px;
			line-height: 17px;
		}

        .text-btn {
            text-align: right; 
            flex-grow: 1; 
        }


ul.keypoint-sect {
    padding-right: 7%;
}


ul.clickfrodemo-btn li.demobtnmob {
    list-style: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.get-start-wrp ul.clickfrodemo-btn li.demobtnmob:before {
    list-style: none;
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
}

.homepage_tab h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

.homepage_tab p {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #112059;
    font-size: 16px;
    padding: 10px 20px;
}

.btn-outline-primary.active:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .0);
}

.has-shapes {
    display: none;
}

.technology-information.pnt-sect {
    padding: 40px 0 0;
}

.technology-information.pnt-sect h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
    text-align: left;
}

.technology-information.pnt-sect .info-box h4 {
    font-size: 19px;
    font-weight: bold;
    margin: 0 0 10px;
    color: var(--black);
}
.technology-information.pnt-sect .info-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: -5px;
    content: "\f33b";
    color: #112059;
    font-size: 25px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    padding: 0px;
}


.lst-sect2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 30px;
    text-align: left;
}


section.hero-wrp:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.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: #091135;
    border-color: #091135;
    margin-top: 4%;
}




.cit_bner ul.keypoint {
    margin-bottom: 2%;
    margin-top: 2%;
    display: block !important;
}
.cit_bner .keypoint li
 {
    margin-right: 25px;
    line-height: 28px;
    padding-bottom: 5px;
    letter-spacing: 0.50px;
    font-weight: 500;
    font-size: 15px;
    list-style-image: url(https://www.gpscanadatrack.com/images/arrow.png);
    list-style-position: inside;
    color: #fff;
}

.cit_bner .btn-main {
    font-size: 13px !important;
    font-weight: 600 !important;
    background: #ae662b;
    border-radius: 2px!important;
    color: var(--white);
    padding: 8px 20px!important;
    display: table;
    letter-spacing: 0.50px!important;
}












.hero-wrp .hero-dt.cit_bner h3
 {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 28px;
}

span.ctylink {
    color: #ae662c;
}
.cities-pg a {
    color: #ae662c;
}
.technology-info-city ul
 {
    margin-left: 10px;
}

    .titlebar h2 {
        line-height: 45px!important;
        font-size: 28px!important;
        font-weight: bold!important;
        color: #ae662c!important;
        text-transform: capitalize!important;
        margin: 0 0 20px!important;
        text-align: center!important;
        margin: 0 0 10px!important;
    }

    .titlebar p {
        font-size: 14px!important;
        line-height: 28px!important;
        color: #000!important;
    }








@media screen and (max-width: 767px) and (min-width: 320px) {
aside {
    display: none;
}
.inner-banner .banner-detail h1 {
    font-size: 22px;
    line-height: 30px;
}
article {
    padding-left: 0px;
}
.inner-banner.hrts-sect {
    margin: 60px 0 0;
    padding: 100px 0;
}
.blg-sect {
    background: #f9f9f9;
    box-shadow: 0 0 6px .3px #212121;
    transition: .5s linear;
    border: 0;
    padding: 0 !important;
    width: 94%;
    margin-left: 3% !important;
    margin-right: 3%;
}
}






/*New Home Page*/
section#hmstrt h2 {
    margin-bottom: 5px;
}
section#hmstrt h5 {
    text-align: center;
    margin-bottom: 4%;
}
section#hmstrt h5 {
    text-align: center;
    margin-bottom: 4%;
    font-size: 17px;
    letter-spacing: 0.50px;
    color: #0063ae;
}
/*.hero-wrp #hero-dt-new {*/
/*    top: 60%;*/
/*}*/

.growing-wrp-newpg {
    display: flex;
}

.growing-wrp-newpg .industry-dt {
    background-color: #112059;
    color: white;
    padding: 36px 2% 50px 9%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.growing-wrp-newpg .industry-dt h2 {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 4%;
}
.growing-wrp-newpg .industry-dt h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}
.growing-wrp-newpg .industry-dt p {
    color: #fff;
}
.growing-wrp-newpg .industry-dt .dt-box {
    padding-bottom: 35px;
}
.growing-wrp-newpg .btn-main {
    background: #112059;
    border-radius: 8px;
    color: var(--white);
    padding: 12px 35px;
    display: table;
}
.industry-wrp-new {
    padding: 50px 0;
}
.line-container {
    width: 100%;
    height: 2px;
    display: flex;
	margin-bottom: 2%;
}
.part1 {
    width: 26%;
    background-color: #ae662b;
}
.part2 {
    width: 84%;
    background-color: #04040433;
}
.product-sectn h5 {
    font-size: 15px;
    text-transform: uppercase;
    line-height: 28px;
}
.product-sectn h2 {
    font-size: 64px;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 10px;
    text-align: left;
    line-height: 76px;
}

.sectionlg {
    position: relative;
    width: 100%;
    /*min-height: 100vh;*/
    padding: 50px 0;
}
        .sticky {
            position: sticky;
            top: 0;
            z-index: 10;
        }
		.product-wrp-homesec1 .product-img-home.indsimg-home img {
			width: 100%;
		}
		.product-wrp-homesec2 .product-img-home.indsimg-home img {
			width: 100%;
		}
		.product-wrp-homesec3 .product-img-home.indsimg-home img {
			width: 100%;
		}
		div#prduct-sect1 {
			background: #112059;
			z-index: 0;
		}
		
		div#prduct-sects1 {
			background: #112059;
			z-index: 0;
		}
		div#prduct-sect2 {
			background: #fff;
			z-index: 1;
		}
		
		div#prduct-sects2 {
			background: #fff;
			z-index: 1;
		}
		div#prduct-sect3 {
			background: #112059;
			z-index: 3;
		}
		div#prduct-sects3 {
			background: #112059;
			z-index: 3;
		}
		.product-block-home {
			background: #fff;
		}
		.product-dt-home h5 {
			font-size: 15px;
			color: #0063b8;
			font-weight: 700;
			line-height: 28px;
			margin-bottom: 25px;
		}
		.product-dt-home h3 {
			font-size: 23px;
			font-weight: 700;
			border-bottom: 1px solid #555;
			padding-bottom: 10px;
			margin-bottom: 25px;
		}
		.product-dt-home h2 {
			font-weight: 700;
			color: #333;
			line-height: 38px;
			font-size: 30px;
			margin-bottom: 20px;
		}
		.product-dt-home p {
			font-size: 16px;
			line-height: 28px;
			margin-top: 30px;
			margin-bottom: 30px;
		}
		
		.product-wrp-homesec1 .product-block-home .product-dt-home {
			padding-right: 20px;
			padding-left: 20px;
			padding-top: 40px;
			padding-bottom: 20px;
		}
		.product-wrp-homesec2 .product-block-home .product-dt-home {
			padding-right: 20px;
			padding-left: 20px;
			padding-top: 40px;
			padding-bottom: 20px;
		}
		.product-wrp-homesec3 .product-block-home .product-dt-home {
			padding-right: 20px;
			padding-left: 20px;
			padding-top: 40px;
			padding-bottom: 20px;
		}
		
		.product-dt-home .btn-main1 {
			font-size: 15px !important;
			font-weight: 500;
			border: 2px solid #112059;
			border-radius: 8px;
			color: #112059;
			padding: 10px 24px;
			display: table;
		}
		.product-dt-home .btn-main1:hover {
			color: #fff;
		}
.monitering-wrp-new {
    padding: 50px 0;
	z-index: 4;
    position: relative;
}
.line-container-moniter {
    width: 100%;
    height: 2px;
    display: flex;
	margin-bottom: 2%;
}
.part1-moniter {
    width: 26%;
    background-color: #ae662b;
}
.part2-moniter {
    width: 84%;
    background-color: #ffffff;
}
.monitering-sectn h5 {
    font-size: 15px;
    text-transform: uppercase;
    line-height: 28px;
	color: #ae662b;
}
.monitering-sectn h2 {
    font-size: 64px;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
    margin: 0 0 10px;
    text-align: left;
    line-height: 76px;
	color:#fff;
}
.get-start-wrp-hm {
    padding: 30px 10px 10px 10px;
}
.faq-wrp-hm {
    padding: 50px 0 50px;
    background: #0063ae;
}

.faq-wrp-hm .accordion {
    width: 75%;
    margin: 0 auto;
}

.faq-wrp-hm .accordion .accordion-item {
    margin: 0;
    background-color: transparent;
    border: none;
    background: #fff;
    margin: 0 0 20px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px 35px;
}
.faq-wrp-hm .titlebar h2 {
    color: #fff;
}
.faq-wrp-hm  .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: unset;
}
.faq-wrp-hm .accordion .accordion-item .accordion-button {
    font-size: 16px;
    color: #000;
    padding: 0;
    font-weight: 600;
    background-color: transparent;
    position: relative;
}
.faq-wrp-hm .accordion .accordion-body p {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    line-height: 28px;
    padding-bottom: 1%;
}

.contact-wrp .newsletter {
    background-color: #0063ae4a;
    padding: 40px 20px;
    text-align: center;
    margin-top: 25%;
    margin-left: 4%;
}
.contact-wrp .newsletter h2 {
    color: #333;
    margin-bottom: 20px;
    float: left;
    font-size: 25px;
    font-weight: 700;
}
.contact-wrp .newsletter .form-control {
    border-radius: 0;
}
.contact-wrp .newsletter .btn {
    background-color: #84c529;
    color: white;
    border-radius: 0;
    display: block;
    padding: 7px 15px;
    font-weight: 700;
}
.contact-wrp .newsletter .btn:hover {
    background-color: #2a9f6b;
}
.contact-wrp .newsletter label {
	display: flex;
}
.contact-subs {
    display: flex;
}
.get-start-wrp-hm .features-block {
    padding: 30px 30px;
    background: #fff;
    margin: 0 0 30px;
    box-shadow: 0px 0px 6px .1px #212121;
    transition: .5s linear;
}
.faq-wrp-hm .accordion.hmpgfq {
    width: 100%;
}

.app-btn-wrp {
    padding: 50px 0 50px;
    border-bottom: 1px solid #0063ae;
}
.app-btn-wrp .app-btn-apple {
    display: flex;
    justify-content: center;
}
.app-btn-apple img {
    padding: 0 12px;
}

    .applicn {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.applicn h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.applicn a img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.qr-code img {
    width: 150px;
    height: auto;
    margin-top: 20px;
}
.app-bttn-android img {
    justify-content: center;
    display: inline-block;
}
.app-bttn-apple img {
    justify-content: center;
    display: inline-block;
}
.app-bttn-android {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
    padding: 20px;
    background-color: #e0f1ff;
    box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.5);
}
.app-bttn-apple {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
    padding: 20px;
    background-color: #e0f1ff;
    box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .column {
        margin-bottom: 40px;
    }
}

.product-btn {
    display: flex;
}
.product-btn a.btn-main {
    margin-left: 2%;
}


.cnt1 .contact-form {
    border: 1px solid #ccc7c7;
    padding: 4%;
}
.navbar h2 {
    font-weight: 900;
    color: #fff;
    font-size: 23px;
    letter-spacing: 1px;
    line-height: 28px;
}
.foot-logo h2{
    font-weight: 900;
    color: #0063ae;
    font-size: 23px;
    letter-spacing: 1px;
    line-height: 28px;
}

@media (min-width: 820px) and (max-width: 1180px) {
.btn-main {
    font-size: 18px;
}
.product-dt-home .btn-main1 {
    padding: 10px 11px;
}

}
@media (min-width: 768px) and (max-width: 991px) {
    footer .col-md-4 {
        width: 100%;
}
footer .col-md-8 .foot-rw .col-md-4 {
    width: 100%;
    margin-top: 5%;
}
.get-start-wrp-hm .features-block {
   min-height: 460px !important;
}
}


@media screen and (max-width: 1024px) and (min-width: 768px) {
.get-start-wrp.pointr ul {
    margin: 0px 0 0px 20px;
}
.get-start-wrp h2 {
    font-size: 32px;
}	
.growing-wrp-newpg .industry-dt {
    padding: 20px 2% 20px 2%!important;
}
.growing-wrp-newpg .industry-dt .dt-box {
    padding-bottom: 5px;
}
.product-sectn h2 {
    font-size: 42px;
    line-height: 50px;
}
.product-dt-home h5 {
    margin-bottom: 5px;
}
.product-dt-home h3 {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.product-dt-home h2 {
    font-size: 21px!important;
    margin-bottom: 5px;
}
.product-dt-home p {
    font-size: 15px;
    margin-bottom: 10px;
}
.product-dt-home .btn-main1 {
    padding: 6px 15px;
}
.product-wrp-homesec1 .product-block-home .product-dt-home {
    padding-top: 20px;
}
.sectionlg {
    min-height: auto;
}
.monitering-sectn h2 {
    font-size: 42px;
    line-height: 50px;
}
.features-block {
    padding: 30px 15px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin: 0 0 30px;
    min-height: 300px !important;
}
.industry-wrp-new {
    padding: 50px 0 10px 0;
}
.monitering-wrp-new {
    padding: 50px 0 20px 0;
}
.faq-wrp-hm .accordion {
    width: 92%;
}
.hero-wrp #hero-dt-new {
    top: 35%;
}
}
@media screen and (min-width: 641px) and (max-width: 767px) {
#hmstrt {
    padding: 10px 0 10px 0 !important;
}
.growing-wrp-newpg .growing-img img {
    width: 100%!important;
}
}
@media screen and (min-width: 320px) and (max-width: 640px) {
.app-btn-wrp .app-btn-apple {
    display: grid;
    justify-content: center;
}
.app-btn-apple img {
    padding: 8px 8px;
}
.product-btn {
    display: block;
}

.product-btn a.btn-main {
    margin-left: 0%;
    margin-top: 2%;
}

.product-dt-home .btn-main1 {
    font-size: 14px !important;
    padding: 6px 20px;
}
#hmstrt {
    padding: 10px 0 10px 0 !important;
}
.growing-wrp-newpg .growing-img img {
    width: 100%!important;
}
}

@media screen and (max-width: 767px) and (min-width: 320px) {
.growing-wrp-newpg {
  display: contents!important;
}
section.get-start-wrp.pointr {
    padding: 20px 0 !important;
}
.get-start-wrp.pointr ul {
    margin: 0px 10px 0px 20px;
}
section#hmstrt h5 {
    font-size: 14px!important;
    line-height: 22px!important;
}
.product-sectn h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 43px;
}
.monitering-sectn h2 {
	font-size: 35px;
    font-weight: 700;
    line-height: 43px;
}
.monitering-wrp-new {
    padding: 30px 0 10px 0;
}
.industry-wrp-new {
    padding: 30px 0 10px 0;
}
.contact-subs {
    display: contents;
}
.contact-wrp .newsletter {
    margin-top: 0%;
}
.contact-wrp .newsletter label {
    display: flex;
    justify-content: left;
    text-align: left;
}
.faq-wrp-hm .accordion .accordion-item {
    padding: 15px 10px;
}
.faq-wrp-hm .accordion .accordion-item .accordion-button {
    font-size: 14px;
}
.faq-wrp-hm .accordion .accordion-body p {
    font-size: 14px;
    line-height: 25px;
}
.faq-wrp-hm .accordion {
    width: 90%;
}
.accordion-button::after {
    width: 1.10rem;
    height: 1.10rem;
}
.product-dt-home h3 {
    font-size: 20px;
	margin-bottom: 15px;
}
.product-dt-home h2 {
    line-height: 28px;
    font-size: 24px;
}
.product-dt-home p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 15px;
}
.sectionlg {
    min-height: auto;
}

}

@media (min-width: 576px) and (max-width: 767px) {
.get-start-wrp-hm .row {
   flex-direction: unset;
}
.get-start-wrp-hm .col-sm-6 {
     width: 50%;
}
.get-start-wrp-hm .features-block {
    min-height: 320px;
}
footer .row {
   flex-direction: unset;
}
footer .col-sm-6 {
     width: 50%;
}
}

@media (max-width: 768px) {
    .row {
        flex-direction: unset;
        align-items: normal;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
.product-block-home .btn-main {
    padding: 12px 12px;
	font-size: 15px !important;
}
.product-dt-home .btn-main1 {
    padding: 6px 5px;
    font-size: 15px !important;
    align-items: center;
    display: flex;
}    
.app-bttn-android h2 {
    font-size: 18px;
    font-weight: 600;
}
.app-bttn-apple h2 {
    font-size: 18px;
    font-weight: 600;
}

}

@media (min-width: 768px) and (max-width: 991px) {
    footer .col-md-8 .foot-rw .col-md-4 {
        width: 50%;
    }
}
@media (min-width: 992px) and (max-width: 1280px) {
.get-start-wrp-hm .features-block {
        min-height: 330px !important;
    }
}




/*Button Popup*/
 /* Button Styling */

        /* Popup Modal Styling */
        #popupModal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #ccc;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            text-align: center;
        }

        /* Overlay Styling */
        #overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* Button in Popup */
        #confirmCall,
        #cancelCall {
            padding: 10px 20px;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        #confirmCall {
            background: #112059;
        }

        #confirmCall:hover {
            background: #112059;
        }

        #cancelCall {
            background: #ae662b;
            margin-left: 10px;
        }

        #cancelCall:hover {
            background: #ae662b;
        }
/*End Of Button Popup*/


/*Pricing packages CSS*/

.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: #112059!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: #112059;
}
.plan-wrp .plan-block .plan-box.pltnm:hover h2 {
    color: #ffffff;
}
.plan-wrp .plan-block .plan-box.pltnm h3{
    color: #112059;
}
.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: #112059;
    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;
}

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

.plan-box.highlight {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
/*Pricing Packages CSS End*/




.inner-banner .banner-detail h1
 {
    font-size: 46px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 30px;
    text-align: center;
}

.inner-banner .banner-detail {
    margin: 0 auto;
    position: relative;
    z-index: 6;
    display: grid
;
}

.inner-banner .banner-detail ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loctn-hd-mn {
    font-weight: 700;
    font-size: 21px;
    line-height: 28px;
    color: #ae662c;
    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;
}



.product-box .product-dt p {
    margin-bottom: 0;
    text-align: center;
    color: #054f94;
    font-weight: 500;
    padding-top: 3px;
}
.thq-card.fzf {
    text-align: center;
    background: #ffffff;
    overflow: hidden;
    margin: 5% 0;
}
.thq-card.fzf img {
    width: 100% !important;
}




/*Citypage CSS*/
.hero-wrp.solutn-pg.city-pg {
    padding: 60px 0 80px 0;
}

.img-subs img {
    width: 250px;
    height: 250px;
    float: right;
}





.choose-intro
 {
    margin-top: -100px;
    z-index: 999;
    position: relative;
}
  
 .intro-box {
    color: #000;
    padding: 25px;
    background: #f2f2f2;
}
  
  
  .choose-intro-box {
    text-align: center;
  }
  
  .choose-intro-box h6 {
    margin-bottom: 8px;
    color: #112059;
    font-size: 14px;
    font-weight: 800;
}
  
  .choose-intro-box p {
    line-height: 27px;
    font-size: 15px;
    color: #000;
  }
  
.choose-intro-box i.fa {
    font-size: 30px;
    margin-bottom: 11px;
    background: #949d9d4d;
    padding: 10px;
    border-radius: 27px;
}

.hero-wrp.solutn-pg.city-pg .hero-dt h2 {
    font-size: 37px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
    text-transform: capitalize;
}

.city-pg .nav-link
 {
    font-weight: 800;
    font-size: 14px;
}

.city-pg .nav-link.active, .nav-pills .show>.nav-link {
    font-size: 14px;
}

.choose-intro-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.industry-wrp.cities-pg .industry-info p {
    font-size: 14px;
    line-height: 28px;
    color: #000000;
    margin: 0 0 20px;
    font-weight: 500;
    text-align: center;
}

.city-pgr h2 {
    font-size: 28px;
    font-weight: bold;
    color: #ae662c;
    text-transform: capitalize;
    margin: 0 0 30px;
    text-align: center;
}
.city-pgr.homepage_tab h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 13px !important;
    padding-bottom: 0px !important;
    letter-spacing: 0.50px;
    color: #112059;
}
.city-pgr h5 {
    font-size: 16px;
    font-weight: 800;
    color: #ae662c;
}
.city-pgr.homepage_tab p {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
}

.technology-wrp .technology-info-city h2 {
    font-size: 28px;
    font-weight: bold;
    color: #ae662c;
    text-transform: capitalize;
    margin: 0 0 30px;
    text-align: center;
}
.technology-info-city ul li {
    list-style: circle;
    font-size: 14px;
    line-height: 26px;
    color: #000;
    font-weight: 500;
    position: relative;
    padding-bottom: 3%;
}
p.bgr {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}


.btnsec_cntr ul {
    display: flex;
    justify-content: center;
}

.btnsec_cntr ul li {
    margin-right: 25px;
}
.btnsec_cntr .btn-main1 {
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    border: 2px solid #ae662b;
    border-radius: 8px;
    color: #ae662b;
    padding: 12px 35px;
    display: table;
}

.btnsec_cntr {
    margin-top: 25px;
    margin-bottom: 25px;
}

.rts-city img
 {
    width: 100%;
}


.citypges_wyoming .titlebar h2
 {
        font-size: 30px;
        line-height: 45px;
        margin: 0 0 10px;
        color: #ae662c;
    }
.citypges_wyoming .titlebar p {
        font-size: 14px;
        line-height: 28px;
        letter-spacing: 0.50px;
        color: #000;
        margin-bottom: 50px !important;
    }
.plan-wrp.citypges_wyoming p
 {
    font-size: 14px;
    line-height: 28px;
    color: #000000;
    letter-spacing: 0.50px;
    font-weight: 500;
}
.plan-wrp.citypges_wyoming .plan-block .plan-box h2 {
    font-size: 25px;
    font-weight: 600;
}

.plan-wrp.citypges_wyoming .plan-block .plan-box h3 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.50px;
}

.bx1:hover {
    background: #FF9800;
    transform: translateY(-6px);
}
.industry-wrp.cities-pg .industry-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: #ae662c;
    text-transform: capitalize;
    margin: 0 0 20px;
    text-align: center;
}









    
@media only screen and (max-width: 767px) {
  .choose-intro {
    margin-top: 0px;
  }   
  
  .img-subs img {
    width: 200px;
    height: 200px;
    float: none;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 30px;
}
    .hero-wrp .hero-dt ul li .btn-main {
        border: 0px solid var(--blue)!important;
    }
    
  .hero-wrp .hero-dt ul li:last-child {
        display: block!important;
    }
    .hero-wrp.solutn-pg.city-pg .hero-dt h2 {
        font-size: 25px;
        line-height: 35px;
        font-weight: 900;
    }
  
 .hero-wrp.solutn-pg.city-pg {
    padding: 50px 0 50px 0;
}  

.intro-box {
    margin-bottom: 10px;
}
.choose-intro {
        margin-top: 0px;
        padding: 30px 20px;
    }
    
    .industry-wrp.cities-pg .industry-info h2 {
    font-size: 24px;
    margin: 0 0 10px;
}
.city-pgr h2 {
    font-size: 24px;
    margin: 0 0 40px;
}
.city-pg .nav-link.active, .nav-pills .show>.nav-link {
    font-size: 12px;
}
.city-pg .nav-link {
    font-weight: 800;
    font-size: 12px;
}

.technology-wrp .technology-info-city h2 {
    font-size: 24px;
    margin: 0 0 20px;
}

.technology-info-city ul {
    padding-left: 10px!important;
}
    .btnsec_cntr .btn-main {
        font-size: 12px;
        padding: 6px 9px;
        font-weight: 500;
    }
        .btnsec_cntr .btn-main1 {
        font-size: 12px;
        padding: 6px 9px;
        font-weight: 500;
    }
.citypges_wyoming .titlebar h2 {
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 10px;
    color: #ae662c;
}
.navbar-light .navbar-toggler
 {
    background-color: #ae662b;
}

}






















@media screen and (min-width: 320px) and (max-width: 447px) {
	
	.hero-wrp.solutn-pg.city-pg .hero-dt h2 {
    font-size: 25px;
	}
	
	.hero-wrp.solutn-pg.city-pg {
    padding: 100px 0 90px 0;
}

.choose-intro-box p {
    font-size: 14px;
}

.industry-wrp .industry-info h2 {
    font-size: 25px;

}

.city-pgr h2 {
    font-size: 25px;
}

.technology-wrp .technology-info-city h2 {
    font-size: 25px;
}

.lts-city ul {
    padding-left: 25px;
}
	
.rts-city img {
    width: 100%;
}

p.bgr {
    font-size: 15px;

}	

    .btn-main1 {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
	
	    .btn-main {
        font-size: 10px !important;
        padding: 6px 10px !important;
    }
	
	.plan-wrp p {
    font-size: 14px;
}

.plan-wrp .plan-block .plan-box h2 {
    font-size: 28px;
}

.plan-wrp .plan-block .plan-box h3 {
    font-size: 20px;
}

.plan-wrp .plan-block .plan-box ul li {
    font-size: 14px;
}

.plan-wrp .plan-block h2{
    font-size: 25px !important;
    margin-bottom: 20px !important;
}

.plan-wrp p {
    font-size: 14px;
}
.hero-wrp.solutn-pg.city-pg {
    padding: 50px 0 50px 0;
}


}



@media (min-width: 576px) and (max-width: 767px) {
    .hero-wrp.solutn-pg.city-pg .hero-dt h2 {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 30px;
    }
	
	    .hero-wrp .hero-dt h3 {
        font-size: 15px;
		}
		
		.hero-wrp.solutn-pg.city-pg {
    padding: 100px 0 90px 0;
}

.technology-wrp .technology-info-city h2 {
    font-size: 25px;
}

.industry-wrp .industry-info h2 {
    font-size: 25px;
}

.plan-wrp p {
    font-size: 14px;
}

.plan-wrp .plan-block .plan-box h2 {
    font-size: 28px;
}

.plan-wrp .plan-block .plan-box h3 {
    font-size: 20px;
}

.plan-wrp .plan-block .plan-box ul li {
    font-size: 14px;
}

.plan-wrp .plan-block h2{
    font-size: 25px !important;
    margin-bottom: 20px !important;
}

.plan-wrp p {
    font-size: 14px;
}
	
	
}

@media (min-width: 768px) and (max-width: 991px) {
	
	#languageDropdown {
    margin: 4px 10px !important;
    font-size: 10px !important;
	padding-right: 20px !important;
}

.navbar-light .navbar-nav .nav-link {
    padding: 13px 3px !important;
    font-size: 9px !important;
}

div#bx1
 {
    margin-bottom: 20px;
}

}

@media (min-width: 992px) and (max-width: 1024px) {
    
	
	.navbar-light .navbar-nav .nav-link {
    padding: 13px 4px !important;
    font-size: 11px !important;
}

#languageDropdown {
    margin: 4px 10px !important;
    font-size: 10px !important;
}
div#bx1
 {
    margin-bottom: 20px;
}
}


@media (min-width: 768px) and (max-width: 1024px) {
    
	
.hero-wrp.solutn-pg.city-pg .hero-dt h2 {
    font-size: 30px;
    line-height: 40px;
	margin-bottom: 20px;
}

.hero-wrp .hero-dt h3 {
    font-size: 15px;
    line-height: 25px;
}


.choose-intro-box p {
    font-size: 14px;
}


.technology-wrp .technology-info-city h2 {
    font-size: 25px;
}

.lts-city ul {
    padding-left: 25px;
}

.rts-city img {
    width: 100%;
}

p.bgr {
    text-align: center;
    font-size: 14px;
}

.plan-wrp .titlebar p {
    margin: 0 0 30px;
    font-size: 14px;
}

.plan-wrp .plan-block .plan-box h2 {
    font-size: 28px;
}

.plan-wrp .plan-block .plan-box h3 {
    font-size: 20px;
}

.plan-wrp .plan-block .plan-box ul li {
    font-size: 14px;
}

.plan-wrp .plan-block h2{
    font-size: 25px !important;
    margin-bottom: 20px !important;
}

.plan-wrp p {
    font-size: 14px;
}
div#bx1
 {
    margin-bottom: 20px;
}
}



@media (min-width: 1025px) and (max-width: 1200px) {
	
	#languageDropdown {
    font-size: 12px !important;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 11px !important;
}
	
	.rts-city img {
    width: 100%;
}

}













.industry-wrp.cities-pg {
    padding: 50px 0 50px 0 !important;
}

/*section#homepage_tab-sect {*/
/*    padding: 0px !important;*/
/*}*/


.industry-wrp .industry-info img {
    width: 100%;
}

.city-pgr.homepage_tab .content ul li {
    list-style: circle;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    padding-bottom: 10px;
}

.city-pgr.homepage_tab .content ul {
    margin-left: 15px;
}
.industry-wrp.cities-pg .industry-info
 {
    margin-bottom: 0px;
}

@media (min-width: 320px) and (max-width: 922px) {

.cit_bner .btn-main {
    font-size: 9px !important;
    
}
}

@media (min-width: 320px) and (max-width: 767px) {

.hero-wrp .hero-dt ul {
    display: grid;
    justify-items: start;
    gap: 10px !important;
}

}
/*End of City pages*/