:root {
    --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
    --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);

    --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);

    --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
    --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
    --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}



.spin {
    transition: transform 1s var(--ease-out-quart);
}
.spin:hover {
    transform: rotate(360deg);
}
.is-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.is-disabled > a {
    color: currentColor;
    pointer-events: none;
    text-decoration: none;
}

/* =================

hover-underline-animation-nav-top

================= */

.hover-underline-animation-nav-top {
    display: inline-block;
    position: relative;
    color: #343a40;
}
.hover-underline-animation-nav-top::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #343a40;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.hover-underline-animation-nav-top:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* =================

hover-underline-animation-navbar

================= */


.hover-underline-animation-navbar {
    display: inline-block;
    position: relative;
    color: #fff;
}
.hover-underline-animation-navbar::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.hover-underline-animation-navbar:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.hover-underline-animation-navbar:hover {
    color: #fff!important;
}

/* =================

hover-underline-animation-footer

================= */

.hover-underline-animation-footer {
    display: inline-block;
    position: relative;
    color: #fff;
}
.hover-underline-animation-footer::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.hover-underline-animation-footer:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* =================

hover-box-animation

================= */
.hover-box-animation{
    border:1px solid transparent; 
    -webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);
    transition: all 0.4s cubic-bezier(.5, .24, 0, 1);
}

.hover-box-animation::before {
    content: '';
    position: absolute;
    left: 0px;
    bottom:0px;
    z-index:-1;
    width: 0%;
    height:1px;
    background: #fff;
    box-shadow: inset 0px 0px 0px #6098FF;
    display: block;
    -webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);
    transition: all 0.4s cubic-bezier(.5, .24, 0, 1)
}

.hover-box-animation:hover::before {
    width:100%;
}

.hover-box-animation::after {
    content: '';
    position: absolute;
    right: 0px;
    top:0px;
    z-index:-1;
    width: 0%;
    height:1px;
    background: #fff;
    -webkit-transition: all 0.4s cubic-bezier(.5, .24, 0, 1);
    transition: all 0.4s cubic-bezier(.5, .24, 0, 1)
}
.hover-box-animation:hover::after {
    width:100%;
}
.hover-box-animation:hover{
    border-left:1px solid #fff;
    border-right:1px solid #fff;
}


header {
    padding: 154px 0 100px;
}

header{
    padding: 3.5em 0 3em!important;
}

@media (min-width: 992px) {
    header {
        padding: 156px 0 100px;
    }
}

@media (max-width: 991px){
    .logo-detran {
        max-width: 100% !important;
    }
}

.img-header-left{
    max-width: 80%; 
    height: auto;   
}

.img-header-right{
    max-width:60%; 
    height: auto;   
}

.sticky-top {
    transition: all 0.25s ease-in;
}

/* style for when sitcky is applied */
.stuck .sticky-top {
    background-color: #343a40 !important;
}

.topnav {
    overflow: hidden;
}

.topnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 0.3rem 0.3rem;
    text-decoration: none;
    font-size: 12px;
}


.topnav .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

.search{
    margin-bottom: 0;
}

section {
    padding: 50px 0!important;
}

.tagline-content{
    font-weight: 400;

}

/*.social-networking{
    position: absolute;
    right: 0;
    bottom: 0;
}*/

.flex-w-100{
    display: flex;
    width: 100%;
}

.text-gray{
    color: #6c757d;
}

.text-gray-dark{ 
    color: #343a40;
}

.link-gray-light{
    text-decoration: none!important;
    color: #6c757d;    
}

.link-gray-light:hover{
    color: #343a40!important;
}


.link-gray-dark{
    text-decoration: none!important;
    color: #4d4d4d;    
}

.link-gray-dark:hover{
    color: #000;
}

.link-blue-dark{
    text-decoration: none!important;
    color: #0d587f;    
}

.link-blue-dark:hover{
    color: #062a3d;
}

.link-spin{
    text-decoration: none!important;

}
#form-control > .form-control{
    border-radius: 2rem!important;   
}   

#form-control > .input-group-append{
    padding-top: 0.03rem;
    padding-bottom: 0.03rem;
    margin-left: -41px!important;
}

.btn-custom {
    border-radius: 2rem!important;
    border-color: #fff!important;
}

/*==============

   Navbar

============= */

.navbar{
    padding:0!important;
}

.bg-nav-site{
    background-color:#1496db!important;
}

.nav-link{
    margin: 0.5rem 0 0.5rem 0;
}

.navbar-dark .navbar-nav .nav-link{
    color: #fff;
    width: 11rem;
    align-content: flex-start;
}


.dropdown-menu{
    top: 80%;
    z-index: 9999;

}

.nav-input-group {
    width: 20rem!important;
}

.nav-dropdown-header {
    padding: 0 0!important;
    border-radius: 0!important;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1), 0 20px 40px rgba(0, 0, 0, .15);
}

.nav-dropdown-header li >.dropdown-item {
    padding: 0.80rem 1.5rem!important;
}

.nav-dropdown-header li > .dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #E9EFF2;
}

.nav-dropdown-header-highlights {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #343a40;
    white-space: nowrap;
}

.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.dropdown-submenu {
    position:relative;

}
.dropdown-submenu>.dropdown-menu {
    top: 0.3rem;
    left:100%;
    margin-top:-6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
} 


/*==============

    Carousel

============= */

.carousel-item{
    max-height: 24rem; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: transparent no-repeat center center;
    background-size: 1.5rem 1.5rem;
}

.carousel-control-prev-icon {
    color:#fff;
    background-image: url("../images/chevron-left-solid.svg");
    background-color:rgba(0, 0, 0, 0.6);
}
.carousel-control-next-icon {
    background-image: url("../images/chevron-right-solid.svg");
    background-color:rgba(0, 0, 0, 0.6);
}

.carousel-caption h5 {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
}

.carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}

.carousel-caption h5 {
    margin-bottom: 0;
}

.carousel-control-prev{
    margin-left: 1rem;
}

.carousel-control-next{
    margin-right: 1rem;
}

/*==============

    Carousel

============= */

.embed-responsive-iframe{
    height: 45rem!important;
}

.embed-responsive-iframe-reconhecimento_de_habilitacao_estrangeira{
    height: 53.1rem!important;
}

#quick_query{

}

#other_services{
    background-color: #cfdee5;
    /*padding-bottom: 0!important;*/
}

.other_services_box{
    border-radius: 1rem;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.latest_news_cards{
    border: none!important;
    border-radius: 0px!important;
    box-shadow: none!important;
}

.news_paragraph{
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
}

.card-more{
    border: none!important;
}

.card-more-icon{
    flex: 0 1 auto;
    padding: 1.25rem;
    border: 1px solid #dde3e6;
    box-sizing: border-box;
    display: block;
}

#app{
    padding-bottom: 0!important;
}

.bg-footer{
    background-color:#1496db!important;
}


#sitemap ul{
    list-style-type: none;
}

.copyright-search a:hover{
    text-decoration: none;
}

.voltar-para-topo{
    padding-top: 0.5rem;
    text-decoration: none!important;
}

.sitemap-links a {
    text-decoration:none!important;
    color:#fff;
    -o-transition:color 2s ease-out, background 2s ease-in;
    -ms-transition:color 2s ease-out, background 2s ease-in;
    -moz-transition:color 2s ease-out, background 2s ease-in;
    -webkit-transition:color 2s ease-out, background 2s ease-in;
    /* ...and now for the proper property */
    transition:color 2s ease-out, background 2s ease-in;
}
.sitemap-links a:hover { 
    color:#ededed!important;  
    font-weight: 600;
}

/* Solicitação de alteração de endereço */

.embed-responsive-iframe-alt-end{
    height: 54rem!important;
}

/* Taxa de Reteste Teórico e Prático */

/*.embed-responsive-iframe-tax-reteste{
    margin-left: 15rem!important;
}*/

.embed-responsive-iframe-permissao-inter {
    height: 54rem!important;
}

.embed-responsive-iframe-banca-atualizacao {
    height: 62rem!important;
}

.embed-responsive-iframe-simulado-de-prova-teorica {
    height: 32rem!important;
}

.embed-responsive-iframe-renovacao-cnh{
    height: 67.9rem!important;
}

.card-img-placas{
    max-height: 8rem;
}

.educacao-placas .card-body, h5{
    padding-bottom: 0.5rem;
}

/*=========================
  Icons
 ================= */

/* footer social icons */
ul.social-network {
    list-style: none;
    display: inline;
    margin-left:0 !important;
    padding: 0;
}
ul.social-network li {
    display: inline;
    margin: 0 5px;
}


/* footer social icons */
.social-network a.icoRss:hover {
    background-color: #F56505;
}
.social-network a.icoFacebook:hover {
    background-color:#3B5998;
}
.social-network a.icoTwitter:hover {
    background-color:#33ccff;
}
.social-network a.icoGoogle:hover {
    background-color:#BD3518;
}
.social-network a.icoVimeo:hover {
    background-color:#0590B8;
}
.social-network a.icoLinkedin:hover {
    background-color:#007bb7;
}
.social-network a.icoRss:hover i, .social-network a.icoFacebook:hover i, .social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i, .social-network a.icoVimeo:hover i, .social-network a.icoLinkedin:hover i {
    color:#fff;
}
a.socialIcon:hover, .socialHoverClass {
    color:#44BCDD;
}

.social-circle li a {
    display:inline-block;
    position:relative;
    margin:0 auto 0 auto;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    border-radius:50%;
    border: 0.1rem solid #fff;
    text-align:center;
    width: 50px;
    height: 50px;
    font-size:20px;
}
.social-circle li i {
    margin:0;
    line-height:50px;
    text-align: center;
}

.social-circle li a:hover i, .triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.social-circle i {
    color: #fff;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

/*==================

    Artigo completo

================= */



.artigo-completo > div > img:after{
    max-width: 100%;
    height: auto;
}

.artigo-completo > ul > li > a {
    display: inline-block;
    position: relative;
    color: #343a40;
    text-decoration: none!important;
}
.artigo-completo > ul > li > a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #343a40;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.artigo-completo > ul > li > a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.artigo-completo > ul > li{
    list-style-type: none!important;
    margin: 1rem 0  1rem 0;
}

.artigo-completo > ol > li{
    list-style-type: none!important;
    margin: 1rem 0  1rem 0;
}

.artigo-completo > ol > li > ol{
    list-style-type: none!important;
    margin: 1rem 0  1rem 0;
}

.artigo-completo > h3{
    margin: 3rem 0 1rem 0;
}

/*==================

    Tabelas

================= */


/*==================

    Artigo completo

================= */

.table .tdate-dark {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

/*==================

    Tabelas

================= */



/*==================

    Social Links

================= */

.social-nav {
    padding: 0;
    list-style: none;
    margin: -10px 0 0 -10px;
}
.social-nav li {
    display: inline;
    margin: 10px 0 0 10px;
    list-style: none;
}
.social-nav a {
    display: inline-block;
    width: 48px;
    height: 48px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    line-height: 48px;
    background: #000;
    position: relative;
    transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.social-nav a {
    overflow: hidden;
    font-size: 26px;
    border-radius: 4px;
}
.social-nav a:hover {
    background: #fff;
    text-shadow: 0px 0px #d4d4d4, 1px 1px #d4d4d4, 2px 2px #d4d4d4, 3px 3px #d4d4d4, 4px 4px #d4d4d4, 5px 5px #d4d4d4, 6px 6px #d4d4d4, 7px 7px #d4d4d4, 8px 8px #d4d4d4, 9px 9px #d4d4d4, 10px 10px #d4d4d4, 11px 11px #d4d4d4, 12px 12px #d4d4d4, 13px 13px #d4d4d4, 14px 14px #d4d4d4, 15px 15px #d4d4d4, 16px 16px #d4d4d4, 17px 17px #d4d4d4, 18px 18px #d4d4d4, 19px 19px #d4d4d4, 20px 20px #d4d4d4, 21px 21px #d4d4d4, 22px 22px #d4d4d4, 23px 23px #d4d4d4, 24px 24px #d4d4d4, 25px 25px #d4d4d4, 26px 26px #d4d4d4, 27px 27px #d4d4d4, 28px 28px #d4d4d4, 29px 29px #d4d4d4, 30px 30px #d4d4d4;
}
.social-nav .twitter {
    background: #00ACED;
    text-shadow: 0px 0px #0087ba, 1px 1px #0087ba, 2px 2px #0087ba, 3px 3px #0087ba, 4px 4px #0087ba, 5px 5px #0087ba, 6px 6px #0087ba, 7px 7px #0087ba, 8px 8px #0087ba, 9px 9px #0087ba, 10px 10px #0087ba, 11px 11px #0087ba, 12px 12px #0087ba, 13px 13px #0087ba, 14px 14px #0087ba, 15px 15px #0087ba, 16px 16px #0087ba, 17px 17px #0087ba, 18px 18px #0087ba, 19px 19px #0087ba, 20px 20px #0087ba, 21px 21px #0087ba, 22px 22px #0087ba, 23px 23px #0087ba, 24px 24px #0087ba, 25px 25px #0087ba, 26px 26px #0087ba, 27px 27px #0087ba, 28px 28px #0087ba, 29px 29px #0087ba, 30px 30px #0087ba;
}
.social-nav .twitter:hover {
    color: #00ACED;
}
.social-nav .facebook {
    background: #3B579D;
    text-shadow: 0px 0px #2d4278, 1px 1px #2d4278, 2px 2px #2d4278, 3px 3px #2d4278, 4px 4px #2d4278, 5px 5px #2d4278, 6px 6px #2d4278, 7px 7px #2d4278, 8px 8px #2d4278, 9px 9px #2d4278, 10px 10px #2d4278, 11px 11px #2d4278, 12px 12px #2d4278, 13px 13px #2d4278, 14px 14px #2d4278, 15px 15px #2d4278, 16px 16px #2d4278, 17px 17px #2d4278, 18px 18px #2d4278, 19px 19px #2d4278, 20px 20px #2d4278, 21px 21px #2d4278, 22px 22px #2d4278, 23px 23px #2d4278, 24px 24px #2d4278, 25px 25px #2d4278, 26px 26px #2d4278, 27px 27px #2d4278, 28px 28px #2d4278, 29px 29px #2d4278, 30px 30px #2d4278;
}
.social-nav .facebook:hover {
    color: #3B579D;
}
.social-nav .whatsapp {
    background: #25D366;
    text-shadow: 0px 0px #1db054, 1px 1px #1db054, 2px 2px #1db054, 3px 3px #1db054, 4px 4px #1db054, 5px 5px #1db054, 6px 6px #1db054, 7px 7px #1db054, 8px 8px #1db054, 9px 9px #1db054, 10px 10px #1db054, 11px 11px #1db054, 12px 12px #1db054, 13px 13px #1db054, 14px 14px #1db054, 15px 15px #1db054, 16px 16px #1db054, 17px 17px #1db054, 18px 18px #1db054, 19px 19px #1db054, 20px 20px #1db054, 21px 21px #1db054, 22px 22px #1db054, 23px 23px #1db054, 24px 24px #1db054, 25px 25px #1db054, 26px 26px #1db054, 27px 27px #1db054, 28px 28px #1db054, 29px 29px #1db054, 30px 30px #1db054;
}
.social-nav .whatsapp:hover {
    color: #25D366;
}


/*==================

    Social Links

================= */



/*==================

    List

================= */

.list-padding > li{
    padding-bottom: 1rem;
}

/*==================

    List

================= */


/*==================

    Form

================= */


/*For mozila*/

input[type=number] { 
  -moz-appearance: textfield;
  appearance: textfield;
  margin: 0; 
}
/*For Chrome*/

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
      -webkit-appearance: none; 
      margin: 0; 
}



/*==================

    Form

================= */