*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
.navbar{
    z-index: 99;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    color: #1A2540;
    background-color: white;
}
.menu-content{
    z-index: 0;
    box-shadow: 0 3px 1rem black;
    width: 100%;
    align-items: center;
    padding: .6em;
    background-color: #141c31;
}
.menu-content ul{
    height: 60px;
    transition: height .5s ease;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    align-items: center;
    align-self: center;
    list-style: none;
    display: flex;
    justify-content: space-around;
}
.menu-content ul li{
    background-color: #141c31;
    /* border-left: 3px solid #0f1625; */
    width: 100%;
    color: white;
    border-radius: 10px;
    text-align: center;
    outline: none;
}
.menu-content ul li a{
    text-decoration: none;
    color: white;
    display: block;
    padding: 15px;
}
.menu-content ul li a:hover{
    color: #f4976c !important;
}
.menu-content ul li:first-child{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: block !important;
    transition: display 2s ease !important;
    font-size: 15.5px !important;
    width: 150%;
    border: none;
}
.menu-content ul li:first-child:hover{
    background-color: #1A2540 !important;
}
.menu-content ul li:first-child a{
    padding: 0 !important;
}
.menu-content ul li:first-child a:hover{
    color: white;
}
.menu-content ul li:last-child{
    border: 2px solid #6e6e6e !important;
    border-radius: 10px;
    width: 130% !important;
}
.menu-content ul li:last-child a:hover{
    background-color: black;
    border-radius: 10px;
}

.scrolling-active{
    background-color: black;
    transition: background-color 0.5s ease;
}
.scrolling-active .menu-content{
    background-color: white;
    transition: background-color .5s ease-in-out !important;
    z-index: 0;
    box-shadow: 0 3px 1rem rgba(0,0,0,.1) !important;
}
.scrolling-active .menu-content ul{
    height: 40px;
    transition: height .5s ease;
    font-size: 12px;
}
.scrolling-active .menu-content ul li{
    background-color: white;
    transition: background-color .5s ease-in-out !important;
    color: #0f1625;
    border: none;
}

/* not for main-page */
.scrolling-active .menu-content p a{
    transition: background-color .5s ease-in-out !important;
    color: #0f1625 !important;
    border: none;
}
/* not for main-page */
.scrolling-active .menu-content ul li:hover{
    background-color: #eaeaea;
    transition: background-color .5s ease !important;
    border: none;
}
.scrolling-active .menu-content ul li a{
    color: #0f1625;
}
.scrolling-active .menu-content ul li:first-child{
    display: block !important;
    background-color: white;
    transition: background-color .5s ease-in-out !important;
    font-size: 15.5px !important;
    width: 150%;
    border: none;
}
.scrolling-active .menu-content ul li:first-child:hover{
    background-color: white !important;
    transition: background-color .5s ease-in-out !important;
}
.scrolling-active .menu-content ul li:last-child{
    width: 130% !important;
    background-color: white !important;
    border-radius: 10px;
}
.scrolling-active .menu-content ul li:last-child a:hover{
    background-color: white !important;
    color: green !important;
}
.scrolling-active .menu-content ul li:last-child:hover{
    border-color: green !important;
}



.company-name{
    display: flex;
    height: 2.5em;
    font-size: 1.5em;
    align-self: center;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    display: flex;
    width: 100%;
    justify-content: space-around;
}


#toggle{
    display: none;
}
.toggle-area{
    display: none;
    justify-content: flex-end;
    align-items: center;
    color: white;
}
.toggle-area label{
    border: 2px solid wheat;
    background-color: #141c31;
    height: 30px;
    width: 35px;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.toggle-area label span{
    background-color: white;
    height: 3px;
    width: 60%;
    border-radius: 10px;
    margin: 2px 0px;
}
.toggle-area label:hover{
    background-color: #F4976C;
}

.navbar .responsive-menubar-content{
    display: none;
    width: 100%;
    justify-content: space-around;
    padding: 1em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: display 2s ease !important;
    font-size: 15.5px !important;
    width: 100%;
    background-color: #141c31;
}
.navbar .responsive-menubar-content a{
    width: 100%;
    list-style: none;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15.5px !important;
    width: 100%;
    color: white !important;
}
.navbar .responsive-menu-content{
    display: none;
    flex-direction: column;
}
.navbar .responsive-menu-content ul{
    list-style: none;
    background-color: #141c31;
    text-transform: uppercase;
    text-align: center;
}
.navbar .responsive-menu-content ul li{
    font-size: 1.2em;
    border-top: 1px solid #F4976C;
}
.navbar .responsive-menu-content ul li:hover{
    background-color: #F4976C;
    color: white;
    transition: background-color .4s ease !important;
}
.navbar .responsive-menu-content ul li a{
    padding: 10px;
    display: block;
    text-decoration: none;
    color: white;
}
.navbar .responsive-menu-content ul li:last-child{
    border-bottom: 2px solid #F4976C;
}
@media screen and (max-width: 880px){
    #toggle:checked{
        transition: display 2s ease !important;
    }
    #toggle:checked + .navbar > .responsive-menu-content{
        display: flex !important;
        transition: display 2s ease !important;
    }
}
@media screen and (max-width: 325px){
    .navbar .responsive-menubar-content div p{
        text-align: center !important;
    }
    .navbar .responsive-menubar-content div p a{
        text-align: center !important;
        font-size: .9em !important;
    }
}

#slider{
    overflow: hidden;
}
#slider figure{

    z-index: -1;
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    animation: 10s slider infinite;
    transition: 1s ease;
}
#slider figure img{
    width: 20%;
    float: left;
}
@keyframes slider{
    0%{
        left: 0;
    }35%{
        left: -100%;
    }70%{
        left: -200%;
    }100%{
        left: -300%;
    }
}
.about-us-section-full{
    background: #FBE8A6 none repeat scroll 0 0;
}
.about-us-section{
    width: 100%;
    padding: 3em;
    box-sizing: border-box;
}
.about-us-content{
    padding: 3em;
}
.about-us-content p {
    text-align: justify;
}


@media screen and (max-width: 1230px){
    .navbar{
        flex-direction: column;
    }
    .menu-content .learn-traffic-rules{
        width: 150%;
    }
}
@media screen and (max-width: 1060px){
    .menu-content .learn-traffic-rules{
        width: 159%;
    }
}
@media screen and (max-width: 900px) {
    
    .navbar .responsive-menubar-content{
        display: flex;
    }
    .toggle-area{
        display: flex;
    }
    .menu-content{
        display: none;
    }
    .menu-content ul{
        flex-direction: row;
        align-items: center;
    }
    .menu-content ul li:first-child{
        display: none !important;
    }
    .menu-content ul li:last-child{
        width: 100% !important;
    }
    .menu-content ul li{
        border:none;
        border-top: 1px solid #F4976C;
    }
    .menu-content ul li:hover{
        transition: 1s ease;
        background-color: #F4976C !important;
        color:white !important;
    }
    /* #toggle:checked{
        transition: 2s ease;
    }
    #toggle:checked + .navbar > .menu-content{
        transition: 2s ease;
        display: block !important;
    } */
    
}

@media screen and (max-width: 1100px){
    .about-us-section{
        padding: 1em;
    }
    .about-us-section > .founder-image{
        width: 50% !important;
    }
    .about-us-section > .about-us-content{
        width: 50% !important;
    }
}
@media screen and (max-width: 1070px){
    .about-us-section > .founder-image{
        width: 40% !important;
    }
    .about-us-section > .about-us-content{
        width: 60% !important;
    }
}
@media screen and (max-width: 950px){
    .about-us-section{
        flex-direction: column !important;
        padding: 1em !important;
    }
    .about-us-section > .founder-image{
        width: 50% !important;
    }
    .about-us-section > .about-us-content{
        width: 100% !important;
    }
}
@media screen and (max-width: 650px){
    .about-us-section-full .about-us{
        font-size: 1em !important;
    }
}
@media screen and (max-width: 700px){
    .about-us-content{
        padding: 2em;
    }
}
@media screen and (max-width: 450px){
    .about-us-section-full .about-us{
        font-size: .9em !important;
    }
}
@media screen and (max-width: 350px){
    .about-us-content{
        padding: 1.5em;
    }
    .about-us-content p {
        font-size: 1.3em !important;
    }
}
@media screen and (max-width: 320px){
    .about-us-content p {
        font-size: 1.1em !important;
    }
    .about-us-section-full .about-us{
        font-size: .8em !important;
    }
}
@media screen and (max-width: 290px){
    .about-us-content{
        padding: 1em;
    }
    .about-us-content h1{
        font-size: 1.5em !important;
    }
    .about-us-content p {
        font-size: 1em !important;
    }
    .about-us-section-full .about-us{
        font-size: .7em !important;
    }
}
.section-heading h1{
    font-size: 4em !important;
    text-transform: uppercase;
}
.why-us-section{
    width: 100%;
    padding: 3em;
    box-sizing: border-box;
}
.why-us-content{
    padding: 3em;
}
.why-us-content p {
    text-align: justify;
}

@media screen and (max-width: 1100px){
    .why-us-section{
        padding: 1em;
    }
    .why-us-section > .car-image{
        width: 50% !important;
    }
    .why-us-section > .why-us-content{
        width: 50% !important;
    }
}
@media screen and (max-width: 1070px){
    .why-us-section > .car-image{
        width: 40% !important;
    }
    .why-us-section > .why-us-content{
        width: 60% !important;
    }
}
@media screen and (max-width: 950px){
    .why-us-section{
        flex-direction: column !important;
        padding: 1em !important;
    }
    .why-us-section > .car-image{
        margin-top: 1.5em;
        width: 50% !important;
    }
    .why-us-section > .why-us-content{
        width: 100% !important;
    }
    
    .section-heading h1{
        font-size: 4em !important;
    }
}
@media screen and (max-width: 700px){
    .why-us-content{
        padding: 2em;
    }
}
@media screen and (max-width: 750px){
    .section-heading h1{
        font-size: 3em !important;
    }
}
@media screen and (max-width: 350px){
    .why-us-content{
        padding: 1.5em;
    }
    .why-us-content p {
        font-size: 1.3em !important;
    }
    .section-heading h1{
        font-size: 2.5em !important;
    }
}
@media screen and (max-width: 320px){
    .why-us-content p {
        font-size: 1.1em !important;
    }
}
@media screen and (max-width: 290px){
    .why-us-content{
        padding: 1em;
    }
    .why-us-content p {
        font-size: 1em !important;
    }
}

.service-cards{
    display: flex;
    padding: 5em;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}
.service-cards h3{
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 1em;
    color: white;
}
.service-cards p{
    padding-top: 1em;
    color: white;
}
.services-section-heading h1,
.gallery-section-heading h1{
    font-size: 4em !important;
    text-transform: uppercase;
}
.service-cards .card-1{
    box-shadow: 3px 5px 10px 1px grey;
    padding: 1em;
    margin: 1em;
    width: 290px;
    height: 510px;
    border-radius: 3px;
    background-color: #F4976C;
    font-size: 1em;
    text-align: center;
    justify-content: space-between;
}
.service-cards .card-3{
    box-shadow: 3px 5px 10px 1px grey;
    padding: 1em;
    margin: 1em;
    height: 100%;
    border-radius: 3px;
    background-color: #F4976C;
    font-size: 1em;
    text-align: center;
    align-self: flex-start;
    justify-content: space-between;
}
.service-cards .card-2{
    height: 100%;
    width: 300px;
    display: flex;
    flex-direction: column;
}
.service-cards .card-2-1,
.service-cards .card-2-2{
    padding: 1em;
    margin: 1em;
    height: 100%;
    box-shadow: 3px 5px 10px 1px grey;
    border-radius: 3px;
    background-color: #F4976C;
    font-size: 1em;
    text-align: center;
    justify-content: space-between;
}

.service-cards .card-1 i,
.service-cards .card-2 i,
.service-cards .card-3 i{
    border: 1px solid white;
    border-radius: 50%;
    color: white;
    font-size: 29px;
    transition: all 0.5s ease 0s;
    width: 65px;
    height: 65px;
    line-height: 63px;
    text-align: center;

}
.service-cards .card-1 i:hover,
.service-cards .card-2 i:hover,
.service-cards .card-3 i:hover{
    transition: .4s;
    color: #1A2540;
    border-color: #1A2540;
    transition: all .5s ease !important;
}
.service-cards .card-1 ul,
.service-cards .card-2 ul,
.service-cards .card-3 ul{
    list-style: none;
    padding-top: 1em;
    text-align: left;
}
.service-cards .card-1 ul li,
.service-cards .card-2-2 ul li,
.service-cards .card-3 ul li{
    width: 100%;
    margin-top: 10px;
    padding: 5px;
    text-align: center;
    font-size: 1.1em;
    border-radius: 10px;
    color: white;
    border: 1px solid white;
}
.service-cards .card-1 ul li:hover,
.service-cards .card-2-2 ul li:hover,
.service-cards .card-3 ul li:hover{
    background-color: white;
    color: #F4976C;
}
@media screen and (max-width: 1100px){
    .service-cards{
        flex-wrap: wrap;
    }
    .service-cards .card-2-1,
    .service-cards .card-2-2{
        width: 100%;
        align-self: center;
    }
    .service-cards .card-2{
        flex-direction: row;
        height: 280px;
        width: 100%;
    }
    .service-cards .card-3{
        width: 100%;
        align-self: center;
    }
    .service-cards .card-1{
        width: 100%;
        height: 100%;
    }
    
}
@media screen and (max-width: 850px){
    .service-cards .card-1{
        width: 100%;
        height: 100%;
        margin: 0;
    }
    .service-cards .card-2{
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    .service-cards .card-3{
        width: 100%;
        height: 100%;
        margin: 0;
    }
}
@media screen and (max-width: 630px){
    .services-section-heading h1,
    .gallery-section-heading h1{
        font-size: 3.5em !important;
    }
}
@media screen and (max-width: 560px){
    .services-section-heading h1,
    .gallery-section-heading h1{
        font-size: 3em !important;
    }
}

@media screen and (max-width: 500px){
    .service-cards{
        padding: 3.5em;
    }
    .services-section-heading h1,
    .gallery-section-heading h1{
        font-size: 2.5em !important;
    }
}
@media screen and (max-width: 400px){
    .service-cards{
        padding: 3em;
    }
    .services-section-heading h1,
    .gallery-section-heading h1{
        font-size: 2em !important;
    }
}
@media screen and (max-width: 300px){
    .service-cards{
        padding: 2em;
    }
    .services-section-heading h1,
    .gallery-section-heading h1{
        font-size: 1.5em !important;
    }
}

.rules-regulation{
    height: 100%;
}
.rules-regulation .rules-points{
    text-decoration: none;
    list-style: none;
    margin: 5em;
    margin-left: 10px;
    border: 1px solid #d87547;
    border-radius: 20px;
    background-color: #F4976C;
    color: white;
    box-shadow: 12px 17px 25px 0px grey;
}
.rules-regulation .rules-points h1{
    text-align: center;
    padding-top: 15px;
    text-transform: uppercase;
    font-size: 2.5em;
}
.rules-regulation .rules-points ul{
    padding: 3em;
    text-decoration: none;
    list-style: none;
    text-align: justify;
}
.rules-regulation .rules-points ul li{
    padding: 8px;
    font-size: 1.5em;
}
@media screen and (max-width: 1200px){
    .rules-regulation .rules-points{
    padding: 0;
    text-align: center;
    margin: auto;
    width: 95% !important;
    }
}
@media screen and (max-width: 500px){
    .rules-regulation .rules-points ul{
        padding: 1em;
    }
}
@media screen and (max-width: 400px){
    .rules-regulation .rules-points h1{
        font-size: 2em;
    }
}
@media screen and (max-width: 350px){
    .rules-regulation .rules-points h1{
        font-size: 1.5em;
    }
}
.license-Details{
    text-decoration: none;
    list-style: none;
    margin: 5em;
    margin-right: 10px;
    border: 1px solid #d87547;
    border-radius: 20px;
    background-color: #F4976C;
    color: white;
    box-shadow: 12px 17px 25px 0px grey;
}
.license-Details-cards{
    padding: 2em;
    display: flex;
    width: 100%;
    text-emphasis: none;
}
.license-Details h1{
    text-align: center;
    padding-top: 15px;
    text-transform: uppercase;
    font-size: 2.5em;
    word-wrap: break-word;
}
.license-Details-cards div{
    text-emphasis: none;
}
.license-Details .license-Details-cards ul{
    text-decoration: none;
    list-style: none;
}
.license-Details .license-Details-cards .I,
.license-Details .license-Details-cards .II,
.license-Details .license-Details-cards .III,
.license-Details .license-Details-cards .IV{
    margin: 3px;
    padding: 1em;
    border: 1px solid black;
    background-color: white;
    /* opacity: 0.9; */
    color: #1A2540;
    border-radius: 6px;
}
.license-Details .license-Details-cards .I li,
.license-Details .license-Details-cards .II li{
    font-size: 1.15em;
}

@media screen and (max-width: 1200px){
    .license-Details{
        
    text-align: center;
    margin: auto !important;
    margin-top: 3em !important;
    width: 95% !important;
    text-align: left;
    }
}
@media screen and (max-width: 910px){
    .license-Details-cards{
        flex-direction: column;
    }
    .license-Details .license-Details-cards .I,
    .license-Details .license-Details-cards .II,
    .license-Details .license-Details-cards .III-IV{
    width: 100% !important;
    }
}
@media screen and (max-width: 770px){
    .license-Details h1{
        font-size: 2em;
    }
}
@media screen and (max-width: 400px){
    .license-Details h1{
        font-size: 2em;
    }
}
@media screen and (max-width: 350px){
    .license-Details h1{
        font-size: 1.4em;
    }
}

.gallery{
    background: #FBE8A6;
    padding-top: 3em;
    padding-bottom: 2em;
    width: 100%;
    margin: auto;
}
.gallery .layer-1,
.gallery .layer-2{
    display: flex;
	margin: 1rem;
	overflow: hidden !important;
}
.gallery .layer-1 a,
.gallery .layer-2 a{
    text-align: center;
    margin: 2em;
}
.gallery .layer-1 img,
.gallery .layer-2 img{
    box-shadow: 0 3px 1rem grey;
    border: 2px solid #0f1625;
    border-radius: 3px;
    text-align: center;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 200ms ease-out;
}
.gallery .layer-1 img:hover,
.gallery .layer-2 img:hover{
    transform: scale(1.07);
}
@media screen and (max-width: 1000px){
    .gallery .layer-1,
    .gallery .layer-2{
	    margin: 8px;
    }
    .gallery .layer-1 a,
    .gallery .layer-2 a{
        margin: 1em;
    }
}
@media screen and (max-width: 650px){
    .gallery .layer-1,
    .gallery .layer-2{
	    margin: 5px;
    }
    .gallery .layer-1 a,
    .gallery .layer-2 a{
        margin: .5em;
    }
}
@media screen and (max-width: 500px){
    .gallery .layer-1,
    .gallery .layer-2{
        flex-direction: column;
    }
}




.footer-content{
    width: 100%;
    /* height: 30em;   footer height */
    padding: 3em;
    background-color: #1A2540;
    color: white;
    display: flex;
}
.footer-content h2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.3em;
    color: #f4976c;
    text-transform: uppercase;
    text-align: center;
}
.contact-us h1{
    font-size: 4em !important;
    text-transform: uppercase;
}

.footer-content{
    padding-bottom: 3em !important;
}

.footer-content .Other-Business-Goals,
.footer-content .Other-Business-Goals .other-business-content,
.footer-content .footer-address,
.footer-content .footer-address .registered-address,
.footer-content .call-us,
.footer-content .footer-about{
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-content .footer-address{
    height: 100%;
    width: 35%;
    background-color: #1a2540;
    border-radius: 10px;
    border:1px solid black;
    text-align: center;
}
.footer-content .footer-address .registered-address{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-content .footer-address .registered-address .address-locate:hover{
    border-color: black;
    background-color: #1A2540;
}
.footer-content .footer-address .registered-address .address-locate{
    border-radius: 8px; 
    border: 1px solid green;
    text-align: center;
    width: 100px;
    padding: 9px; 
    background-color: #141c31;
}
.footer-content .footer-about p{
    text-align: center;
}

@media screen and (max-width: 600px){
    .contact-us h1{
        font-size: 3em !important;
    }
}
@media screen and (max-width: 400px){
    .contact-us h1{
        font-size: 2em !important;
    }
}

@media screen and (max-width: 970px){
    .footer-content .footer-address .registered-address .register-address{
        flex-direction: column;
    }
}
@media screen and (max-width: 860px){
    .footer-content{
        flex-direction: column;
    }
    .footer-content .footer-about{
        width: 100% !important;
    }
    .footer-content .footer-about .footer-company-name{
        margin-top: 1em;
    }
    .footer-content .Other-Business-Goals{
        width: 100% !important;
    }
    .footer-content .footer-address{
        width: 100% !important;
    }
    .footer-content .footer-address .registered-address .register-address{
        flex-direction: row;
    }
}
@media screen and (max-width: 400px){
    .footer-content .footer-address .registered-address .register-address{
        flex-direction: column;
    }
    .footer-content .footer-address .registered-address{
        padding: 0;
    }
    .footer-address .admin-address{
        padding-top: 1em;
    }
    .footer-content h2{
        font-size: 1.1em;
    }
}
@media screen and (max-width: 400px){
    .footer-content .email-ID p{
        padding: 5px;
        word-wrap: normal;
    }
}
@media screen and (max-width: 360px){
    .footer-content .email-ID p{
        font-size: 1.2em !important;
    }
    .footer-content .email-ID h2{
        padding: 0 5px !important;
    }
}
@media screen and (max-width: 300px){
    .footer-content .email-ID p{
        font-size: 1em !important;
    }
    
}

.social-media-icons{
    background-color: #1A2540;
    color: white !important;
    justify-content: center;
    font-size: 1.25em;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    text-align: center;
    padding-top:  2em !important;
}
.social-media-icons div{
    height: 70px;
    width: 70px;
}
.social-media-icons strong{
    text-align: center;
    border: 1px solid black;
    background-color: #0f1625;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 100%;
    padding: 15px;
    margin-left: 12px;
}
.social-media-icons strong:hover{
    background-color: white;
}
@media screen and (max-width: 930px){
    .social-media-icons {
        margin: .9em;
    }
}

/* Traffic Rules Page */
@media screen and (max-width: 1000px){
    .signs p{
        text-align: center !important;
    }
}
@media screen and (max-width: 650px){
    .traffic-signs-header p{
        font-size: 3em !important;
    }
    .signs{
        margin: 3em !important;
    }
    .signs p{
        font-size: 2.5em !important;
    }
}
@media screen and (max-width: 470px){
    .traffic-signs-header p{
        font-size: 2.5em !important;
    }
    .signs{
        margin: 2.5em !important;
    }
    .signs p{
        font-size: 2em !important;
    }
}
@media screen and (max-width: 320px){
    .signs{
        margin: 2em !important;
    }
    .signs p{
        font-size: 1.5em !important;
    }
}
@media screen and (max-width: 320px){
    .signs{
        margin: 1.5em !important;
    }
    .signs p{
        font-size: 1.5em !important;
    }
}


.credits{
    background-color: #0f1625;
    color: rgb(221, 221, 221);

    font-size: large;
    text-align: center;
    padding: 12px;
}
