@font-face {
  font-family: Poppins;
  src: url(poppins.woff) format('woff');
}

@font-face {
    font-family: Montserrat;
    src: url(montserrat.woff) format('woff');
  }
body{
    overflow-x: hidden;
}

body img{
    max-width: 100% !important;
}


.grey_section{
    background-color: #f8f8f8;
    padding: 40px 0;
    margin-top: 60px;
}
/*HEADER*/
/*Responsive*/
.header.mobile_view{
    display:none
}
@media(max-width:992px){
    .header.desktop_view{
        display:none
    }

    .header.mobile_view{
        display:block
    }
}



.header{
    padding: 10px 5px;
}
/*Logo*/
.header .logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header .logo img{
    max-width: 100%;
    width: 240px;

}

/*Menu*/
.header .menu{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .menu ul{
    list-style: none;
}

.header .menu ul li{
    display:inline-block
}

.header .menu ul li a{
    font-size: 14px;
    font-family: Poppins;
    font-weight: 600;
    color:#000;
    text-decoration: none;
    padding: 10px 20px;
    transition: 0.3s all;
}

.header .menu ul li a:hover{
    color:#257dc7;
}

/*Right Nav*/
.header .right_nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .right_nav ul{
    list-style: none;
}

.header .right_nav ul li{
    display:inline-block
}

.header .right_nav ul li a{
    font-size: 14px;
    font-family: Poppins;
    font-weight: 600;
    color:#257dc7;
    text-decoration: none;
    padding: 5px 10px;
}

.header .right_nav ul li a.register_btn{
    padding: 5px 20px;
    background-color: #257dc7;
    color:#fff;
    border-radius: 5px;
}

/*Header Mobile Responsive*/
.header_row_mobile{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.header.mobile_view{
padding: 10px 15px;
}
.header.mobile_view .logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header.mobile_view .logo img{
    width: 200px;
}

.header.mobile_view .menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 999; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #fff; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    box-shadow: 2px 2px 10px #ddd;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    display: block;
    transition: 0.3s;
    font-family: Poppins;
    font-weight: 600;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #257dc7;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    transition: margin-left .5s;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

.menu_trigger{
    cursor: pointer;
    font-size: 20px;
}

/*Title Section*/
.title_section{
    height: 600px;
    max-height: 500px;
    background-color:#fff;
    background-size: 500px;
    border-radius: 10px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    position: relative;
}

.title_section .title_heading{
    font-family: poppins;
    font-weight: 900;
    font-size: 45px;
    color:#fff;
    text-transform: capitalize;
    background: -webkit-linear-gradient(#257dc7, #164d7c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title_section .title_description{
    font-family: poppins;
    font-weight: 600;
    font-size: 20px;
    color:#222;
    text-transform: capitalize;

}

.title_section .app_btns{
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.title_section .app_btns img{
    width: 150px;
}

#animation-container{
    width:50%;
    height:550px;
    position: absolute;
    right:0;
    top:0;
    z-index: 0;
}

.car_image{
    z-index: 2;
    width:50%;
    position: absolute;
    right:0;
    top:0;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%
}
.car_image img{
    width: 100%;
}

.car_status_container{
    width: 100%;
    height: 100%;
    position: relative;
}
.car_status{
    background-color: #fff;
    box-shadow: 2px 2px 10px #ddd;
    width:80%;
    z-index: 100;
    height:80px;
    border-radius: 10px;
    position: absolute;
    bottom: -90px;
    right: 0;
    left: 0;
    margin:0 100px
}

.car_status_row{
    height: 100%;
    width: 100%;
    margin: 0;
}

.car_status_column{
    position: relative;
}

.car_status_column_right{
    border-width: 0;
    border-right-width: 3px;
    border-style: solid;
    border-image: 
    linear-gradient(
      to bottom,
      #fff, 
      #ddd, 
      #fff
    ) 0 100%;
}
@media(max-width:768px){
    .title_section{
        height: 350px;
    }
    .title_section .title_heading{
        font-size: 25px;
        width:100%
    }
    .title_section .title_description{
        font-size: 16px;
        width: 100%;
    }
}

.owl-stage-outer{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 2px 2px 10px #ddd;
}

.owl-item{
    display: flex;
    justify-content: center;
    border-width: 0;
    border-right-width: 3px;
    border-style: solid;
    border-image: 
    linear-gradient(
      to bottom,
      #fff, 
      #ddd, 
      #fff
    ) 0 100%;
}
.owl-nav{
    visibility: hidden !important;
}


.item img{
    width:170px !important;
    max-width: 100%;
    filter: grayscale(1);
    transition: 0.3s all;
    cursor:pointer;
    opacity: 0.6;
}

.item:hover img{
    filter: none;
    opacity: 1;
    transform: translateY(-20px);
}

.item span{
    transform: translateY(100px);
    position: absolute;
    bottom: 15px;
    left: 0;
    text-align: center;
    width: 100%;
    font-family: poppins;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s all;
}

.item:hover span{
    transform: translateY(0);
}

.brands_heading{
    font-family: poppins;
    font-size: 30px;
    font-weight: bold;
    color:#000;
    text-align: center;
    margin-bottom: 30px;
}

.mockup_section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.mockup_section h1{
    font-family: Montserrat;
    font-weight: bold;
    font-size: 25px;
    color:#000
}

@media(max-width:768px){
    .mockup_section h1{
        font-size: 25px;
    }
   
}

.mockup_section .button_sec{
    margin-top: 40px;
}

.mockup_section .button_sec a{
    background-color: #257dc7;
    color:#fff;
    border:2px solid transparent;
    border-radius: 10px;
    padding: 15px 25px;
    text-decoration: none;
    font-family: poppins;
    font-size: 16px;
    transition: 0.3s all;
}

.mockup_section .button_sec a:hover{
    background-color: #fff;
    color:#257dc7;
    border:2px solid #257dc7
}

@media(max-width:768px){
    .mockup_section .button_sec{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .mockup_section .button_sec a{
        padding:10px 15px;
        font-size: 12px;

    }
}

.mockup_section .text_col, .mockup_section .image_col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.mockup_section .image_col img{
    max-width: 100%;
}

.mockup_section p{
    font-family: poppins;
    font-size: 14px;
}

.footer{
    background-color: #eee;
    padding: 50px 30px;
}

.footer h1{
    font-family: poppins;
    font-size: 18px;
    font-weight: bold;
}

.footer ul{
    list-style: none;
    padding: 0;
}
.footer ul li{
    padding: 6px 0;
}
.footer ul li a{
    font-family: poppins;
    font-size: 14px;
    font-weight: normal;
    color:#aaa;
    text-decoration: none;
}

.footer ul li a:hover{
    color:#222
}

.footer_end{
    padding: 15px 15px;
}
.footer_end a{
    font-weight: bold;
    font-family: poppins;
    font-size: 14px;
    text-decoration: none;
    color:#222
}

.footer_end_column{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer_end span{
    font-family: poppins;
    font-size: 14px;
    color:#222
}

@media(max-width:768px){
    .footer_end_column{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.color_dots{
    display: flex;
    justify-content: center;
    align-items: center;
}
.color_dots span{
    margin: 2px;
}
.color_dots span i{
    font-size: 20px;
}

.color_dots span .blue{
    color:#2196f5
}

.color_dots span .yellow{
    color:#ffc000
}

.btns_container{
    display: flex;
    flex-direction: row;

}
.button_dark a{
    background-color: #257dc7;
    color:#fff;
    border:2px solid transparent;
    border-radius: 10px;
    padding: 10px 25px;
    text-decoration: none;
    font-family: poppins;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s all;
    margin-right: 5px;
}

.button_dark a:hover{
    background-color: #fff;
    color:#257dc7;
    border:2px solid #257dc7
}

.button_light a{
    background-color: #fff;
    color:#257dc7;
    border:2px solid #257dc7;
    border-radius: 10px;
    padding: 10px 25px;
    text-decoration: none;
    font-family: poppins;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s all;
}

.button_light a:hover{
    background-color: #257dc7;
    color:#fff;
    border:2px solid transparent
}

@media(max-width:1200px){
    .car_status_container{
        display: none;
    }
}

@media(max-width:992px){
    .car_animation{
        display: none;
    }

    .top_title{
        width: 100% !important;
    }

    .title_section{
        height:unset
    }

    .button_dark a{
        padding: 5px 15px;
        font-size: 13px;
    }
    
    .button_light a{
        padding: 5px 15px;
        font-size: 13px;
    }
    
}

.dealers p{
    text-align: center;
    font-family: poppins;
    font-size: 14px;
}
.dealers img{
    width:120px;
    max-width: 100%;
}

.dealers .dealers_column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:20px;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s all;
}

.dealers .dealers_column h2{
    font-family: poppins;
    font-size: 20px;
    font-weight: bold;
}

.dealers .dealers_column p{
    font-size: 12px;
}

.dealers .dealers_column:hover{
    background-color: #fff;
    transform: translateY(-20px);
    box-shadow: 2px 2px 10px #ddd;
}

.final_section .text_col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.final_section h1{
    font-size: 50px;
    font-family: poppins;
    color:#000;
    font-weight: bold;
}


.final_section p{
    font-family: poppins;
    font-size: 20px;
    font-weight: normal;
    color:#222
}
@media(max-width:768px){
    .final_section{
        margin-top: 30px;
    }
}
.fancy_heading{
    font-family: Montserrat;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    background: -webkit-linear-gradient(#257dc7, #164d7c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.info_container{
    background-color: #fcfcfc;
    padding: 20px 40px;
    margin:30px 0;
    box-shadow: 2px 2px 10px #ddd;
    border-radius: 15px;
}

.info_section{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

.info_section.no_border{
    border: none;
}

.info_section .info_content{
    margin-left:18px
}
.info_section img{
    width:60px;
    margin-bottom: 20px;
}

.info_section h2{
    font-size: 17px;
    font-family: poppins;
    color:#000;
    font-weight: 600;
}

.info_section p{
    font-size: 12px;
    font-family: poppins;
    color:#222
}

.register_btn{
    color:#000;
    font-family: poppins;
    font-size:30px;
    font-weight: bold;
    text-transform: uppercase;
}

.form_section{
    font-family: poppins;
}

.form_section input{
    margin-bottom: 18px;
}

.form_p{
    font-size: 14px;
    font-family: poppins;
    color:#222
}

button.button_dark{
    background-color: #257dc7;
    color:#fff;
    border:2px solid transparent;
    border-radius: 10px;
    padding: 10px 25px;
    text-decoration: none;
    font-family: poppins;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s all;
    margin-right: 5px;
}

button.button_dark:hover{
    background-color: #fff !important;
    color:#257dc7 !important;
    border:2px solid #257dc7 !important
}

@media(max-width:1200px) and (min-width:768px){
    .info_section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #ddd;
        padding: 20px;
        text-align: center;
    }

    .info_section .info_content{
        margin-left:0
    }
}

.thankyou{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.thankyou img{
    width:400px;
    max-width: 100%;
}

.thankyou p{
    text-align: center;
}

.cars_image img{
    max-width:100%;
}

.inspection_img{
    background-image:url(../images/inspection.jpg);
    background-size:auto 100%;
    background-position: bottom right;
    background-repeat:no-repeat;
    min-height:500px;
}

.inspection_content{
    margin-top: 50px;
    margin-bottom: 50px;
    background: #fff;
    padding: 20px 40px;
    border-radius: 20px;
    margin-left:20px;
    box-shadow:2px 2px 10px #aaa;
}

.inspection_content h1{
    font-family:Poppins;
    font-size:16px;
    font-weight:bold;
}

.inspection_content p{
    font-family:Poppins;
    font-size:12px;
    
}

.inspection_content i{
    color:#2b7dc1;
    font-size:25px;
    margin-right:20px;
}

.inspection_item{
    display:flex;
    flex-direction:row;
    align-items:center;
}

.inspection_item p{
    margin-bottom:0;
}

.inspection_item h1{
    margin-bottom:2px;
}

.bmw_image img{
    max-width:100%;
}

.buyer_feature .col-md-6 h1{
    font-family:Poppins;
    font-size:16px;
    font-weight:bold;
}

.buyer_feature ul{
    padding-left:12px;
}

.buyer_feature ul li{
    font-family:Poppins;
    font-size:12px;
}

.car_deal img{
    max-width:100%;
    border-radius:20px;
    box-shadow:2px 2px 10px #ddd;
}

.car_deal_content h1{
    font-family:poppins;
    font-size:24px;
    font-weight:bold;
}
.car_deal_content p{
    font-family:poppins;
    font-size:14px;
    line-height:28px;
}

.car_inspection_img{
    background-image:url(../images/car_inspection.jpg);
    background-size:auto 100%;
    background-position: bottom right;
    background-repeat:no-repeat;
    min-height:500px;
}

.about_features img{
    max-width:100%;
}
.about_our_features{
    font-family:Poppins;
}
.about_our_features .accordion-header .accordion-button.collapsed{
    background-color:#eee;
    color:#222;
}
.about_our_features .accordion-header .accordion-button{
    background-color:#2b7dc1;
    color:#fff;
}
.about_our_features .accordion-header .accordion-button.collapsed:after{
    filter:invert(0);
}
.about_our_features .accordion-header .accordion-button:after{
    filter:invert(100%);
}

.about_our_features .accordion-body p{
    font-size:14px;
}

.salary_range{
    font-size:20px;
    font-weight: 800;
    margin-bottom: 20px;
}
.job_title{
    max-width: 100%;
}
.job_mode{
    color:#257dc7;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.job_mode i{
    font-size: 10px;
    margin-right: 4px;
}
.timings{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
}
.timings img{
    width:30px;
    margin-right: 10px;
}
.job_type{
    background-color: #257dc7;
    border-radius: 5px;
    padding: 2px 8px;
    color:#fff;
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.location{
    color:#257dc7;
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.location img{
    width:25px;
}

.info_container h3{
    font-weight: bold;
    font-size: 20px;
}
.info_container{
    position: relative;
    font-family: Poppins;
    overflow: hidden;
    height: 80%;
}

.job_overlay{
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left: 0;
    background-color: rgba(37, 125, 199, 0.9);
    border-radius: 15px;
    opacity: 0;
    transform: translate(-500px);
    transition: 0.3s all;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info_container:hover .job_overlay{
    opacity: 1;
    transform: translate(0);
}

.job_overlay .view_job{
    color:#257dc7;
    padding: 10px 30px;
    border:1px solid transparent;
    background-color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: Poppins;
    cursor:pointer
}

.job_overlay .view_job:hover{
    color:#fff;
    background-color: #257dc7;
    border:1px solid #ffffff
}

.job_properties{
    background-color: #eee  ;
    border-radius: 15px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin:10px;
    font-family: Poppins;
}
.job_properties .property_item{
    text-align: center;
    border-right: 1px solid #aaa;
}


.job_properties .property_item:last-child{
    border-right: none
}
.job_properties .property_item img{
    max-width: 100%;
    width: 60px;
}

.job_properties .property_item p{
    margin-bottom: 0;
}



.job_modal .close{
    border:0
}

@media(max-width:768px){
    #jobs .info_container{
        margin:10px 0;
    }

    #jobs .modal-dialog{
        max-width: 100% !important;
    }

    #jobs .property_item{
        margin-top:25px;
        border:0
    }
    
    #jobs .info_section{
        justify-content:start !important;
    }
}

@media(max-width:768px){
    .container{
        padding: 0px 20px;
    }

    .final_section h1{
        font-size: 35px;
    }
    
    
    .final_section p{
        font-size: 16px;
    }
}

.job_description_area{
    max-height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* width */
.job_description_area::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
.job_description_area::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 20px;
  }
   
  /* Handle */
.job_description_area::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 20px;
  }
  
  /* Handle on hover */
.job_description_area::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

  .owl-nav{
    display: none;
  }


  .hide_on_desktop{
    display: none;
  }
  @media(max-width:768px){
    .hide_on_mobile{
      display:none
    }
    .hide_on_desktop{
      display: unset;
    }
    .center_on_mobile{
        text-align: center;
    }
    .no_mobile_margin{
        margin-bottom: 0;
    }

    .brands_logos span{
        font-size: 14px;
    }

    .info_section{
        justify-content: flex-start !important;
    }

    .info_container{
        height: 95%;
    }

    .job_title{
        max-width: 100%;
    }
    .location{
        right: 15px;
        bottom: 15px;
    }
  }

  .brands_logos{
    padding-right: 10px;
  }