@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
.container-fluid {
  max-width: 1920px;
  margin: 0 auto;
}

.links {
  color: #0099ff;
  text-decoration: none;
}

.links:hover {
  color: #353E5B;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}

.media_div {
  width: auto;
  position: relative;
}

.media_div img {
  max-width: 100%;
}

.btn {
  padding: 12 16px;
  border-radius: 6px;
  border: none;
  background-color: #0099ff;
  color: #fff;
  font-size: 18px;
}

.btn:hover {
  background-color: #fff;
  color: #353E5B;
}

.btn.bordered {
  background: #fff;
  border: 1px solid #D9D9D9;
  color: #000;
}

.btn.bordered:hover {
  background-color: #0099ff;
  color: #fff;
  border-color: #0099ff;
}

.btn.brown {
  background: #0099ff;
}

.btn.brown:hover {
  background-color: #353E5B;
}

.heading_block {
  width: 100%;
  display: block;
  margin-bottom: 60px;
}

.heading_block > span {
  font-size: 14px;
  color: #0099ff;
  line-height: 30px;
  text-transform: uppercase;
}

.heading_block h2 {
  font-size: 30px;
  color: #2d2d2d;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .heading_block {
    margin-bottom: 20px;
  }
  .heading_block h2 {
    font-size: 30px;
  }
}

.heading_block h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #525252;
}

header {
  position: absolute;
  top: 0;
  padding: 10px;
  left: 0;
  width: 100%;
  z-index: 111;
  background: #fff;
}

header.sticky {
  position: fixed;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

header nav.navbar-light .navbar-nav .nav-item {
  margin-left: 30px;
}

header nav.navbar-light .navbar-nav .nav-item .nav-link {
  color: #2d2d2d;
  font-weight: 600;
}

@media only screen and (max-width: 575px) {
  header {
    background: #fff;
  }
  header nav.navbar-light .navbar-brand {
    margin-right: 0;
  }
  header nav.navbar-light .navbar-nav .nav-item {
    margin-left: 0;
  }
}

.banner {
  padding-top: 96px;
}

.banner h1 {
  font-size: 30px;
  color: #fff;
}

.banner label {
  margin-bottom: 10px;
}

.banner input {
  margin-bottom: 5px;
}

.banner label, .banner .links, .banner p {
  color: #fff;
}

.banner .form-group {
  margin-bottom: 15px;
}

.banner .contact_from {
  min-width: 600px;
  max-width: 600px;
  z-index: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner a.links {
  padding: 8px 16px;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
  margin-right: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

.banner .media_div img {
  min-width: 740px;
  margin-left: -100px;
}

.banner .arrow_div {
  margin-top: 50px;
  float: right;
  margin-right: 20%;
}

@media only screen and (max-width: 991px) {
  .banner .arrow_div {
    float: none;
    margin-right: 0;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .banner h1 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .banner .arrow_div {
    margin: 20px auto;
  }
  .banner .arrow_div img {
    width: 100px;
  }
}

.introduction .col-lg-6 .heading_block {
    padding: 30px;
    margin-left: -30px;
    background: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
}
.blog_setion {
  background: rgba(0, 153, 255, 0.2);
}

.blog_setion .heading_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_setion .heading_block .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog_setion .blog_items .blog_content {
  padding: 30px;
  width: 100%;
  border: 1px solid #D9D9D9;
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.blog_setion .blog_items .media_div {
  margin-bottom: -1;
  width: 100%;
}

.blog_setion .blog_items span {
  margin-bottom: 16px;
  width: 100%;
  display: block;
}

.blog_setion .blog_items h3 {
  font-size: 24px;
  margin-bottom: 0;
  min-height: 87px;
}

.blog_setion .blog_items p {
  font-size: 14px;
  margin: 16px 0 36px;
}

@media only screen and (max-width: 767px) {
  .blog_setion .blog_items .media_div img {
    width: 100%;
  }
  .blog_setion .blog_items .blog_content {
    padding: 15px;
  }
  .blog_setion .blog_items .blog_content span {
    margin-bottom: 15px;
  }
  .blog_setion .blog_items .blog_content h3 {
    min-height: auto;
    font-size: 20px;
  }
  .blog_setion .blog_items .blog_content p {
    margin: 15px 0;
  }
}

.used_vehicles ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.used_vehicles ul li {
  width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}

.used_vehicles ul li .feature_box {
  width: 100%;
  background: rgba(0, 153, 255, 0.2);
  padding: 30px;
  border-radius: 20px;
}

.used_vehicles ul li .feature_box h2 {
  font-size: 18px;
  margin: 20px 0 0;
}

.development {
  background-attachment: fixed;
  background-image: url(../images/development.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.development .heading_block h2, .development .heading_block p, .development .heading_block li{
  color: #fff;
}
.development ul{list-style: none; padding: 0; margin: 0; display: flex;}
.development ul li{width: 25%; }
.development ul li .feature_box{width: 100%; padding: 50px; height: 100%;}
.development ul li:nth-child(1) .feature_box{background: rgba(0, 153, 2555, 0.7);}
.development ul li:nth-child(2) .feature_box{background: rgba(0, 153, 2555, 0.6);}
.development ul li:nth-child(3) .feature_box{background: rgba(0, 153, 2555, 0.5);}
.development ul li:nth-child(4) .feature_box{background: rgba(0, 153, 2555, 0.4);}
.development ul li .feature_box .icon_div{margin-bottom: 20px; }
.development ul li .feature_box .icon_div img{max-height: 80px;}
.development.about_page ul li{width: 33.33%;}
.development.about_page ul li h3{color: #fff;}
.development.about_page ul li .feature_box{padding: 50px;}
.development.about_page ul li .feature_box ul{list-style: none; display: block;}
.development.about_page ul li .feature_box ul li{width: 100%; display: block; padding-left: 30px; margin-bottom: 5px;}
.development.about_page ul li .feature_box ul li > img{margin-left: -30px; width: 15px; margin-right: 10px;}
.links_list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.links_list li {
  width: 100%;
}

.links_list li a {
  color: #000;
  text-decoration: none;
  padding: 10px 0;
  display: block;
}

.links_list li a i {
  margin-right: 18px;
  float: left;
  color: #0099ff;
}

.links_list li a:hover {
  color: #0099ff;
}

@media only screen and (max-width: 767px) {
  .links_list li a {
    padding: 5px 0;
  }
}

.form-control {
  padding: 14px 15px;
  color: #000;
  font-size: 16px;
}
.form-control .form-select{padding-right: 40px;}
.form-check-input:checked {
  background-color: #353E5B;
  border-color: #353E5B;
}

.form-check-input[type="checkbox"] {
  border-radius: 2px;
}

form textarea {
  min-height: 150px;
}

form .btn {
  font-size: 20px;
  min-width: 120px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 20px;
}

footer {
  padding: 50px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

footer h3 {
  font-size: 18px;
  color: #0099ff;
  text-transform: uppercase;
}

footer .copyright {
  padding: 10px 0;
  background: #252525;
  margin-top: 30px;
}

footer .copyright p {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
}

footer .social {
  margin-top: 46px;
}

@media only screen and (max-width: 767px) {
  footer {
    padding-top: 30px;
  }
  footer h3 {
    margin-top: 10px;
    margin-bottom: -10px;
  }
  footer .copyright {
    margin-top: 0;
  }
}

.login_signin {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.login_signin::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  background: #000;
  content: '';
}

.login_signin .links {
  color: #fff;
  text-decoration: none;
}

.login_signin .links:hover {
  color: #0099ff;
}

.login_signin .media_div.login_image {
  min-height: 100vh;
  position: inherit;
}

.login_signin .media_div.login_image img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  height: 100vh;
  width: auto;
  z-index: -1;
  max-height: 768px;
}

.login_signin .main {
  padding-left: 60px;
  padding-bottom: 50px;
  position: relative;
}

.login_signin .heading_block {
  margin-top: 24px;
  margin-bottom: 32px;
}

.login_signin .heading_block h1 {
  color: #fff;
}

.login_signin .heading_block p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}

.login_signin .linkdin_login {
  text-decoration: none;
  height: 48px;
  border-radius: 5px;
  border: 1px solid #E8E8E8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
}

.login_signin .linkdin_login span {
  margin-left: 13px;
  color: #828282;
}

.login_signin .linkdin_login:hover {
  border-color: #0099ff;
}

.login_signin .linkdin_login:hover span {
  color: #0099ff;
}

.login_signin .divider {
  margin: 28px 0;
  width: 100%;
  position: relative;
  text-align: center;
  color: #A1A1A1;
  font-size: 12px;
}

.login_signin label {
  font-size: 14px;
  color: #fff;
}

.login_signin .form-control {
  border-color: #DED2D9;
  border-radius: 5px;
  padding: 13px 10px;
}

.login_signin .form-group {
  margin-bottom: 24px;
  width: 100%;
  display: block;
}

.login_signin .form-group.check-group {
  margin-top: 8px;
}

.login_signin .form-group .links {
  font-size: 12px;
}

.login_signin .btn.login_signin {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  background: #0099ff;
  border-radius: 6px;
}

.login_signin .btn.login_signin:hover {
  background: #fff;
}

.login_signin .not-register {
  margin-top: 40px;
}

.login_signin .not-register p {
  font-size: 14px;
  color: #828282;
  margin-bottom: 0;
}

.login_signin .logo {
  margin-top: 20px;
}

.login_signin .enter_otp .form-control {
  padding: 13px;
  max-width: 53px;
  text-align: center;
}

.login_signin.sign_up_steps .main {
  padding-top: 50px;
}

.login_signin .back_button {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 30px;
}

.login_signin .back_button i {
  color: #353E5B;
}

@media only screen and (max-width: 991px) {
  .login_signin .heading_block {
    margin: 20px 0;
  }
  .login_signin .heading_block h1 {
    font-size: 30px;
    text-align: center;
  }
  .login_signin .heading_block p {
    text-align: center;
  }
  .login_signin .logo {
    margin: 10px auto;
    display: table;
  }
  .login_signin .main {
    padding-left: 0;
    padding-bottom: 50px;
  }
  .login_signin .main .top-img {
    max-width: 300px;
    margin: 0 auto;
  }
}

.title_section {
  margin-top: 94px;
  background: #353E5B;
  background-image: url(../images/title-bg.png);
  background-position: right top;
  background-repeat: no-repeat;
}

.title_section .heading_block {
  border-bottom: 1px solid rgba(217, 217, 217, 0.16);
  padding-bottom: 16px;
  margin-bottom: 36px;
}

.title_section .heading_block h1 {
  color: #fff;
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.title_section .heading_block .links {
  color: #0099ff;
  text-decoration: none;
  font-size: 14px;
}

.title_section .note {
  height: 48px;
  padding: 0 30px;
  background: #574e5f;
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.title_section .note p {
  margin-bottom: 0;
  color: #fff;
}

.title_section .note i {
  color: #0099ff;
  font-size: 20px;
  float: left;
  margin-right: 10px;
}

.title_section .note span {
  color: #fff;
}

.title_section .note-white {
  width: 100%;
  display: block;
  margin: 32px 0;
  color: rgba(217, 217, 217, 0.6);
}

.title_section.settings {
  background-image: url(../images/title-bg1.png);
  background-position: left bottom;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .title_section .note {
    padding: 10px 30px;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .title_section .note {
    padding: 10px;
  }
  .title_section .note-white {
    margin: 10px 0 0;
  }
}


select.form-control{
  font-size: 14px;
}
.modal.login .modal-body{padding: 50px;}
.modal.login .modal-body .form-group {margin-bottom: 15px;}
.result_section .btn{background: #999; position: relative; min-width: 118px; height: 50px;}
.result_section .btn::after {
   width: 0;
   height: 0;
   border-left: 16px solid transparent;
   border-right: 16px solid transparent;
   border-bottom: 16px solid #0099ff;
   content: " ";
   position: absolute;
   top: -15px; left: 50%; display: none; margin-left: -16px;}

.gray{ background: #f1f1f1;}
.result_section .heading_block h2{font-size: 30px;}
.result_section .btn.active{background: #0099ff;}
.result_section .btn.active:after{display: block;}
.used_vehicles ul li .media_div{width: 50px; margin: 0 auto;}
.used_vehicles ul li{padding: 0;}
.used_vehicles ul li .feature_box{border-radius: 0;}
.used_vehicles ul li:nth-child(1) ,
.used_vehicles ul li:nth-child(9) ,
.used_vehicles ul li:nth-child(16) ,
.used_vehicles ul li:nth-child(8) .feature_box{background: rgba(0, 153, 2555, 1.0);}
.used_vehicles ul li:nth-child(10) ,
.used_vehicles ul li:nth-child(2) ,
.used_vehicles ul li:nth-child(15) ,
.used_vehicles ul li:nth-child(7) .feature_box{background: rgba(0, 153, 2555, 0.8);}
.used_vehicles ul li:nth-child(11) .feature_box,
.used_vehicles ul li:nth-child(3) .feature_box,
.used_vehicles ul li:nth-child(14) .feature_box,
.used_vehicles ul li:nth-child(6) .feature_box{background: rgba(0, 153, 2555, 0.6);}
.used_vehicles ul li:nth-child(4) .feature_box,
.used_vehicles ul li:nth-child(12) .feature_box,
.used_vehicles ul li:nth-child(13) .feature_box,
.used_vehicles ul li:nth-child(5) .feature_box{background: rgba(0, 153, 2555, 0.4);}

.heading_block h2.border-bottom{padding-bottom: 10px; border-bottom: 1px solid #0099ff !important; }



/*# sourceMappingURL=style.css.map */