/********** Template CSS **********/
:root {
    --primary: #e50e2f;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.bg-dark {
    background-color: #002d86 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 0rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 29px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #002d86;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}



#tt-footer {
    position: relative;
    color: #b5b5b5;
    padding: 40px 0 0px 0;
    overflow: hidden;
}

.home-demo .item {
/*    background: #ff3f4d;*/
}
.home-demo h2 {
    color: #FFF;
    text-align: center;
    padding: 5rem 0;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

.tt-box-subjects .tt-nomber {
    display: block;
    width: 74px;
    height: 75px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    z-index: 7;
    position: relative;
    left: 50%;
    margin-top: -54px;
    margin-left: -54px;
    font-size: 22px;
    line-height: 70px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.tt-box-subjects .tt-nomber .tt-fon {
    background: #002d86;
    width: 51px;
    height: 51px;
    position: absolute;
    top: 9px;
    left: 11px;
    z-index: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tt-box-subjects .tt-nomber .tt-fon span {
    position: relative;
    top: 4px;
    left: 4px;
    display: block;
    width: 43px;
    height: 43px;
    outline: 1px solid #fff;
    font-size: 22px;
    line-height: 43px;
}

.tt-box-subjects .tt-nomber .tt-text {
    position: relative;
}
.tt-box-subjects .description h6 {
    font-size: 30px;
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
    color: #393939;
    font-weight: 500;
    margin: 0px 0 0 0;
    padding: 0 34px 0 0;
    font-style: normal;
}

.tt-box-subjects .description {
    z-index: 0;
    text-align: center;
}

.tt-box-subjects .description #css_our_program_btn {
    margin: 22px 34px 0 0;
    background: #4d4d4d;
}

.tt-box-subjects .img {
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

#css_our_program_btn {
    background: #002d86;
    color: #fff;
    border: 1px solid transparent;
    box-shadow: none;
}

.tt-box-subjects:hover .img:after {
    opacity: 1;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

.tt-box-subjects .img:after {
    content: "";
    position: absolute;
    top: -200%;
    left: -210%;
    width: 150%;
    height: 240%;
    opacity: 0;
    transform: rotate(21deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0) 100%);
}

a {
    color: #dc3545;
    text-decoration: none;
}
.bannerimg {
    margin: 20px 0 50px 0;
    text-align: center;
}

.alltext_justify
{
    text-align: justify;
 }

.tt-box-1 {
    background: #e1e1e1;
    margin: 30px 0 50px 0;
    padding: 20px 0;
}

.accordion-button:not(.collapsed) {
    color: #fffefe;
    background-color: #e54315;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.btncustom {
    background: #002d86!important;
    border-color: #002d86;
    text-transform: none;
    color: #fff;
}
.list-icon {
    list-style: none;
    padding: 0;
    margin-left: 21px;
}
.list-icon li {
    position: relative;
    padding: 0 0 10px 30px;
    line-height: normal;
}
.list-icon li:before {
    content: '\2714';
    font-family: 'custom-icons';
    color: #5a5a5a;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
    line-height: 1.1;
}

.teen_driverCsspage
{
    background: #e1e1e1;
    margin-top: 3%;    
}

.testimonial_imgcss
{
    width:100px !important;
    height: 100px !important;
}


element.style {
}
.customersay {
/*    background: url(../images/parallax-img-01.jpg);*/
    background-attachment: fixed !important;
    background-position: center bottom !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding: 50px 0;
    position: relative;
}
.customersay:before {
    content: '';
    background: rgba(22, 22, 22, 0.65);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.box-row {
    display: flex;
    flex-wrap: wrap;
}
.box-row.col-third .col-item {
/*    width: 33.333%;*/
}
.tt-box-layout-icon .col-item {
    margin-top: 23px;
    padding-bottom: 3px;
    text-align: center;
}
.tt-box-layout-icon .col-item .icon {
    position: relative;
    width: 130px;
    height: 124px;
    margin: 0 auto;
    color: #fdc400;
}
.tt-box-layout-icon .col-item .icon:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 23.5px;
    left: 23.5px;
    background: #f5f5f5;
    width: 84px;
    height: 84px;
    -webkit-box-shadow: 2px 1px 5px rgb(0 0 0 / 10%);
    -moz-box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 2px 1px 5px rgb(0 0 0 / 10%);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.tt-box-layout-icon .col-item .icon i {
    position: relative;
    z-index: 1;
    font-size: 44px;
    line-height: 1.1;
    top: 42px;
    color: #002d86;
}
.icon-truck:before {
    content: '🚚';
}
[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: 'custom-icons';
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    /* font-size: 120%; */
    /* text-shadow: 1px 1px 1px rgb(127 127 127 / 30%); */
}
[class^="icon-"], [class*=" icon-"] {
    font-family: 'custom-icons';
    font-style: normal;
    font-weight: normal;
    line-height: 1em;
    /* font-size: 120%; */
}
.tt-box-layout-icon .col-item h6 {
    font-size: 18px;
    font-weight: 500;
/*    font-family: 'Roboto', sans-serif;*/
    color: #393939;
    margin: 7px 0 0 0;
    padding: 0 10px;
    font-style: normal;
}
.tt-box-layout-icon .col-item p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 330px;
    margin: 9px auto 0;
    padding: 0 10px;
    color: #393939;
}


@media (max-width: 1580px) {
  .col-info {
    padding-left: 10%;
    padding-right: 10%;
  }
  
  .col-info {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-top: 56px;
  }
}

@media (max-width: 1400px) {
   .col-info p {
    font-size: 35px;
  }
  .col-info strong {
    font-size: 60px;
  }
  .col-info .btn-border {
    margin-top: 26px;
  }
}

.col-info p{

    margin: 0px;
    padding-bottom: 1px;
    line-height: 1.2;
    letter-spacing: 0.005em;
    font-weight: lighter;

 }
 .col-info strong{

    line-height: 1.2;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;

 }

.btn-border
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    line-height: 1.1;
    padding: 0 43px;
    letter-spacing: 0.02em;
    word-spacing: 0.02em;
    font-weight: bold;
    height: 50px;
    padding-top: 1px;
    border-radius: 6px;
    background-clip: padding-box;
    -webkit-transition:all 0.2s linear;
    text-transform: uppercase;
}


/*- tt-promo-02 ( Banner with a moving car) -*/
/*---------------------------------------*/
.tt-promo-02 {
  background: url("../../frontend/img/driving-car/tt-promo-02-moving-bg.jpg") bottom left repeat-x;
  overflow: hidden;
}
.tt-promo-02 .moving-car {
  position: relative;
}
.tt-promo-02 .moving-car .carObj {
  background: url("../../frontend/img/driving-car/carobj.png") 0 -10px no-repeat;
  width: 844px;
  height: 456px;
  float: right;
  position: relative;
}
@media (max-width: 1700px) {
  .tt-promo-02 .moving-car .carObj {
    width: 790px;
  }
}
.tt-promo-02 .moving-car .carObj .wheel1 {
  position: relative;
  top: 280px;
  left: 124px;
}
.tt-promo-02 .moving-car .carObj .wheel2 {
  position: relative;
  top: 280px;
  left: 452px;
}
.tt-promo-02 .moving-car .carObj .wheel {
  animation-name: spin;
  animation-duration: 700ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: 2;
}
@keyframes spin {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.tt-promo-02 .moving-car .carObj-mobilemiter {
  background: url("../../frontend/img/driving-car/car-limiter.png") left top repeat-x;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 115px;
  z-index: 3;
}
.tt-promo-02 .col-info {
  color: #fff;
}
.tt-promo-02 .col-info p {
  font-size: 50px;
  margin: 0px;
  padding-bottom: 1px;
  line-height: 1.2;
  letter-spacing: 0.005em;
  font-weight: lighter;
/*  font-family: 'Roboto', sans-serif;*/
}
.tt-promo-02 .col-info strong {
/*  font-family: 'Roboto', sans-serif;*/
  font-size: 60px;
  line-height: 1.2;
  font-weight: 500;
  display: inline-block;
  margin-top: 8px;
}
.tt-promo-02 .col-info [class^="btn-"] {
  margin-top: 41px;
}
.tt-promo-02 .carObj-mobile {
  width: 100%;
  height: auto;
  display: none;
}
.tt-promo-02 .carObj-arrow-down {
  width: 100%;
  display: none;
  height: auto;
}
@media (min-width: 1581px) {
  .tt-promo-02 {
    height: 446px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .tt-promo-02 .col-info {
    background: url("../../frontend/img/driving-car/tt-promo-02-text-bg.jpg") right top repeat;
    width: 47%;
    position: relative;
    text-align: right;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .tt-promo-02 .col-info:before {
    content: '';
    background: url("../../frontend/img/driving-car/tt-promo-02-text-corner.png") 0 0 no-repeat;
    position: absolute;
    width: 90px;
    height: 446px;
    top: 0;
    right: -90px;
    z-index: 110;
  }
  .tt-promo-02 .col-info:after {
    content: '';
    background: url("../../frontend/img/driving-car/tt-promo-02-text-corner1.png") 0 0 no-repeat;
    position: absolute;
    width: 204px;
    height: 318px;
    bottom: 0;
    left: 0px;
    z-index: 0;
  }
  .tt-promo-02 .col-info .text-banner {
    width: 543px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding-bottom: 27px;
    margin-top: 20px;
  }
  .tt-promo-02 .col-moving-car {
    width: 53%;
    position: relative;
    z-index: 1;
  }
}
.firsttry
{
    background: #ffffff;
}


@media (max-width: 1580px) {
  .tt-promo-02 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .tt-promo-02 .col-info {
    background: url("../../frontend/img/driving-car/tt-promo-02-text-bg.jpg") center top repeat;
    width: 100%;
    text-align: center;
  }
  .tt-promo-02 .moving-car .carObj {
    margin: 0 auto;
    float: none;
  }
}

@media (min-width: 767px) and (max-width: 1580px) {
  .tt-promo-02 .carObj-arrow-down {
    display: block;
  }
}
@media (max-width: 1580px) {
  .tt-promo-02 .col-info {
    padding-left: 10%;
    padding-right: 10%;
  }
  .tt-promo-02 .col-info p {
    margin-top: 56px;
  }
}

@media (max-width: 1400px) {
  .tt-promo-02 .col-info p {
    font-size: 40px;
  }
  .tt-promo-02 .col-info strong {
    font-size: 60px;
  }
  .tt-promo-02 .col-info .btn-border {
    margin-top: 26px;
  }
}
@media (max-width: 768px) {
  .tt-promo-02 .carObj-mobile {
    display: block;
  }
  .tt-promo-02 .col-moving-car {
    display: none;
  }
  .tt-promo-02 .col-info {
    padding-bottom: 15px;
  }
  .tt-promo-02 .col-info p {
    font-size: 29px;
  }
  .tt-promo-02 .col-info strong {
    font-size: 49px;
  }
  .tt-promo-02 .col-info [class^="btn-"] {
    margin-top: 17px;
  }
}

@media (max-width: 500px) {
  .tt-promo-02 .col-info {
    padding-bottom: 10px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .tt-promo-02 .col-info p {
    font-size: 24px;
    margin-top: 37px;
    line-height: 32px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .tt-promo-02 .col-info strong {
    font-size: 38px;
    margin-top: 5px;
    display: inline-block;
  }
  .tt-promo-02 .col-info [class^="btn-"] {
    margin-top: 16px;
  }
}

.carmovingcss{
    margin-top: -5%;
}
.getfree {
    background: url(../../frontend/img/driving-car/parallax-img-02.jpg);
    background-attachment: fixed !important;
    background-position: center bottom !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding: 50px 0;
    position: relative;
}
.getfree:before {
    content: '';
    background: rgba(22, 22, 22, 0.25);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.container:before, .container:after {
    display: table;
    content: "";
    line-height: 0;
}

@media (min-width: 1200px){
    .span12 {
    width: 1170px;
 }    
}
.getfree h2 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
    padding-bottom: 20px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    z-index: 99;
    position: relative;
}
.container:after {
    clear: both;
}

h2#staticBackdropLabel11 {
    padding: 42px;
    margin-top: -30px;
}

h5#staticBackdropLabel22 {
    padding: 18px;
    margin-top: -80px;
    text-align: center;
    font-size: 14px;
}

h1.display-2.text-light.slideInDown {
    margin-bottom: 15rem;
    margin-top: -11%;
}
h4.text_contentCss.text-light.slideInDown {
    margin-top: -33%;
}

button.btn.btn-info.btnColorcss {
    width: 100%;
    color: #fff;
    background: #0c2b4b;
    border: 1px #0c2b4b;
    margin-top: 2%;
}

.textpricingcss {
    margin-top: 11px;
    font-weight: bold;
    color: #0c2b4b;
    font-size: 17px;
}
.pricingmodalcheck_css
{
  background-color: #e50e2f;    
}

.modaltitlecsstop
{
    color: #fff;
    font-size: 22px;
}