@import url("../css/reset.css");
@import url("../css/themecolors.css");
@import url("../css/mobile.css");
@import url("../js/jsmodal/modals.css");
@import url("https://lovatel.com.br/plugins/plugins.css");
/* fade-in pages */
body{	
    animation: fadein 1s; /* PadrÃ£o */
    -webkit-animation: fadein 1s; /* Webkit */
    -moz-animation: fadein 1s; /* Firefox */
    -ms-animation: fadein 1s; /* IE */
}
@keyframes fadein {
    from { opacity: 0.4; }
    to { opacity: 1; } /* PadrÃ£o */
}
@-moz-keyframes fadein {
    from { opacity: 0.4; }
    to { opacity: 1; } /* Firefox */
}
@-webkit-keyframes fadein {
    from { opacity: 0.4; }
    to { opacity: 1; } /* Webkit */
}
@-ms-keyframes fadein {
    from { opacity: 0.4; }
    to { opacity: 1; } /* IE */
}

body{
    overflow-x: hidden;
}

.social-box{
    width: fit-content;
    width: -moz-fit-content;
}
.social-box a{
    width:28px;
    height:28px;
    border-radius: 0;
    margin:0px 3px;
    display:flex;
    justify-content: center;
    align-items: center;
    /* borda no themecolors*/
}
.social-box .fab,
.social-box .fas{
    font-size:16px;
    /* cor no themecolors */
}
.social-box a img{
    border-radius: 5px;
}


/* HEADER */
header{
    background:#111111;
    padding: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;

    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}
header::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 62%;
    height: 85px;
    background: #1B1B1B;
    z-index: 1;
    transform: skew(-30deg);
}

header .main{
    z-index: 10;
}

.logoH{
    width: fit-content;
    width: -moz-fit-content;
    height: fit-content;
    height: -moz-fit-content;
}
.logoH img{
    max-width: 280px;
    width: 100%;
    height: 100%;

    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}

.infoHeader{
    width: fit-content;
    width: -moz-fit-content;
    /* margin-top: 30px; */
}

.topHeader{
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 0 40px auto;
}
.itemTopH{
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    margin-right: 60px;
}
.itemTopH:last-child{
    margin-right: 0;
}
.itemTopH img{
    margin-right: 10px;
}

.buttonH{
    width: fit-content;
    width: -moz-fit-content;
    padding: 14px 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #c70909;
    border-radius: 5px;
}

.bottomHeader{
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 0 0 auto;
}


.dl-menu{
    display:flex;
    flex-wrap:wrap;
    position: relative;
    z-index:2;
}
#menu .dl-menu > li{
    position: relative;
    display: flex;
    margin-right: 5px;
}
#menu .dl-menu > li:last-child{
    margin-right: 0;
}
#menu .dl-menu > li:hover::before,
#menu .dl-menu > li.ativo::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c70909;
    z-index: 1;
    /* transform: skew(-30deg); */
    border-radius: 5px;
}
#menu .dl-menu > li > a{
    padding: 14px 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}
#menu .dl-menu > li > a.drop{
    padding: 14px 25px 14px 10px;
    background: url('../img/dropdown.png') no-repeat center right 10px;
}
#menu .dl-menu > li.hideDesk{
    display: none;
}


/* hover no themecolors */
#menu .dl-subMenu{
    position: absolute;
    top: 38px;
    left: 0px;
    width: 200px;
    /* background:#111111; */
    background: #1B1B1B;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;

    transition-duration:0.2s;
    -moz-transition-duration:0.2s;
    -webkit-transition-duration:0.2s;

    box-shadow: 0px 0px 5px 0px rgba(17,17,17,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(17,17,17,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(17,17,17,0.75);
}
#menu .dl-subMenu > li > a{
    padding: 10px 20px;
    display: flex;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    width: 100%;
}
#menu .dl-subMenu > li{
    position: relative;
    width: 100%;
}
#menu .dl-subMenu > li:hover a{
    color: #c70909;
}

#menu .dl-menu li:hover .dl-subMenu{
    top: 42px;
    opacity:1;
    visibility: visible;
    pointer-events:auto;
    z-index:1;
}     

.socialH{
    margin-left: 100px;
    z-index: 10;
}

.mgTop{
    /* margin-top: 147px; */
    margin-top: 166px;
}

/* Header scroll */
header.scroll{
    position: fixed;
    background: #111111;

    box-shadow: 0px 0px 5px 0px rgba(17,17,17,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(17,17,17,1);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(17,17,17,1);
}
header.scroll::before{
    height: 100%;
}
header.scroll .logoH img{
    max-width: 220px;
}
header.scroll .topHeader{
    display: none;
}
header.scroll .infoHeader{
    margin-top: 0;
}


/* Banner */
.banner{
    padding: 0;
    position: relative;
    flex-direction: column;
}
#banner{
    width: 100%;
    position: relative;
    z-index: 2;
}

.itemBanner{
    position: relative;
}
.bannerDesk img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
}
.bannerMobile{
    width: 100%;
    height: fit-content;
    height: -moz-fit-content;

    display: none;
}
.bannerMobile img{
    width: 100%;
    height: 100%;
}
.sobreItemBanner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    justify-content: center;
    align-items: center;
}
.sobreItemBanner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(82.43deg, rgba(17, 17, 17, 0.74) 51.01%, rgba(17, 17, 17, 0) 92.58%);
    mix-blend-mode: multiply;
}

.sobreItemBanner .main{
    z-index: 10;
    position: relative;
}

.textoBanner{
    width: 65%;
    position: relative;
    padding-left: 60px;
}
/* .textoBanner::before{
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 60%;
    height: 15px;
    background: linear-gradient(270deg, #c70909 31.19%, rgba(0, 0, 0, 0) 57.3%);
    transform: skew(-15deg);
} */
.textoBanner .big-t{
    line-height: 45px;
}
.textoBanner p{
    margin-top: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    font-style: italic;
    text-align: left;
    width: 100%;
}

.formularioBanner{
    padding: 0;
}

.formB{
    /* background: #c70909; */
    background: #000;
    padding: 30px;
    border-radius: 5px;
    width: 350px;
    height: fit-content;
    height: -moz-fit-content;

    position: absolute;
    top: 50%;
    margin-top: -161px;
    right: 18%;
    z-index: 10;

    box-shadow: -2px 4px 20px 3px rgba(0, 0, 0, 0.66);
    -moz-box-shadow: -2px 4px 20px 3px rgba(0, 0, 0, 0.66);
    -webkit-box-shadow: -2px 4px 20px 3px rgba(0, 0, 0, 0.66);
}

#form_contact{
    width:100%;
    height:available;
    height:fit-content;
}
#form_contact .e_input{
    padding: 10px 15px;
    width: 100%;
    background: #F3F3F3;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #818181;
}
#form_contact select{
    padding: 10px 15px;
    width: 100%;
    background: #F3F3F3 url('../img/dropdown2.png') no-repeat center right 10px;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #818181;
}
#form_contact .button{
    cursor: pointer;
    /* background: #000000; */
    background: #12af0a;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
    justify-content: center;
    padding: 12px 15px;
    font-size: 10px;

    box-shadow: 2px 3px 2px -1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 2px 3px 2px -1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 2px 3px 2px -1px rgba(0, 0, 0, 0.25);
}
#form_contact .button img{
    margin-right: 10px;
}

#form_contact .privacyTerms p,
#form_contact .privacyTerms a{
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
}
#form_contact .privacyTerms a{
    text-decoration: underline;
}
#form_contact .privacyTerms{
    position: relative;
    padding-left: 20px;
}
/* Esconder o checkbox padrão */
#form_contact .privacyTerms input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Criar o checkbox customizado */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: transparent;
    border-radius: 2px;
    border: 2px solid #fff;
}
/* Criar o ícone de check, escondido quando não estiver selecionado */
#form_contact .privacyTerms .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    height: 11px;
    width: 12px;
    background: url('../img/check.png') no-repeat center;
}
/* Exibir o ícone quando selecionado */
#form_contact .privacyTerms input:checked ~ .checkmark:after {
    display: block;
}


/* Veículos em destaque */
/* .lineDetail{
    position: relative;
    padding-bottom: 15px;
}
.lineDetail::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -80px;
    width: 160px;
    height: 6px;
    transform: skew(-15deg);
    background: linear-gradient(270deg, #c70909 46.78%, rgba(0, 0, 0, 0) 85.95%);
} */

.formFilter{
    width: 90%;
    margin: 0 auto 30px auto;
}
.formFilterHome{
    width: 100%;
}
#form_filter{
    width: 100%;
}
#form_filter select{
    width: 20%;
    background: #363636 url('../img/dropdown2.png') no-repeat center right 10px;
    border-radius: 5px;
    padding: 11px 17px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #818181;
}
#form_filter .button{
    background: #c70909;
    border-radius: 5px;
    padding: 11px 17px;
    width: 15%;
    font-weight: 500;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    margin-bottom: 5px;
}

.formFilterHome #form_filter select,
.formFilterHome #form_filter .button{
    width: 16%;
}

.itemVeiculo{
    background: #363636;
    border-radius: 5px;
}
.imgItemVeiculo{
    border-radius: 5px;
    overflow: hidden;
}
.imgItemVeiculo img{
    width: 100%;
    height: 236px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;

    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}

.bottomItemVeiculo{
    padding: 20px;
}
.txtItemVeiculo{
    min-height: 100px;
    border-radius: 0 0 5px 5px;
    margin-bottom: 10px;
}
.txtItemVeiculo h5{
    margin-bottom: 20px;
    min-height: 38px;
}
.txtItemVeiculo span{
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 5px;
}
.txtItemVeiculo h6{
    font-size: 20px;
    line-height: 24px;
}
.txtItemVeiculo p{
    width: 100%;
    text-align: center;
    font-weight: 400;
}

.itemVeiculo:hover{
    background: linear-gradient(177.29deg, #363636 -179.93%, #111111 97.74%);
}
.itemVeiculo:hover .imgItemVeiculo img{
    transform: scale(1.1);
}

.btnWppVeiculo{
    width: 100%;
    justify-content: center;
    /* background: #c70909; */
    background: #12af0a;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 11px;
}
.btnWppVeiculo img{
    margin-right: 10px;
}
.btnWppVeiculo:hover{
    background-color: #1B1B1B;
}

.verTodos{
    margin: 40px auto 0 auto;
    width: fit-content;
    width: -moz-fit-content;
    position: relative;
    display: flex;
}
.verTodos::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c70909;
    /* transform: skew(-20deg); */
    z-index: 1;
    border-radius: 5px;
}
.verTodos span{
    z-index: 10;
    padding: 12px 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
}


/* Marcas */
/* .marcasHome{
    padding-top: 20px;
} */

.sliderMarcas a{
    min-height: 154px;
    background: #FFFFFF;
    border-radius: 5px;
    justify-content: center;
}


/* Banner informativo */
.bannerInformativo{
    background: url('../img/bgHome.png') no-repeat center;
    background-size: cover;
    padding: 150px 20px;
}

.leftBannerInfo{
    width: 40%;
    position: relative;
}
/* .leftBannerInfo::before{
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(270deg, #c70909 31.19%, rgba(0, 0, 0, 0) 57.3%);
    transform: skew(-15deg);
} */

.leftBannerInfo h3,
.leftBannerInfo h4{
    line-height: 30px;
}
.leftBannerInfo p{
    width: 100%;
    text-align: left;
    margin-top: 20px;
}

.rightBannerInfo{
    width: 50%;
}

.iconItemBanner{
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    height: 50px;
}
.iconItemBanner img{
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}

.itemBannerInfo p{
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
}
.itemBannerInfo:hover .iconItemBanner img{
    /* filter: brightness(1000%); */
    transform: rotateY(180deg);
}


/* Footer */
footer{
    padding: 60px 20px 30px 20px;
    /* background: #111111; */
    background: url('../img/bgfooter.png') no-repeat center;
    background-size: cover;
}

.contatoF{
    width: fit-content;
    width: -moz-fit-content;
    display: grid;
    grid-gap: 20px;
}
.endF{
    width: fit-content;
    width: -moz-fit-content;
}
.iconEndF{
    margin-right: 10px;
    width: 25px;
    justify-content: center;
}
.iconEndF2{
    align-self: flex-start;
}
.txtEndF p,
.txtEndF .span{
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    color: #fff;
}
.txtEndF a{
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 27px;
}


.copyright{
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #363636;
}
.copyright p,
.copyright a{
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 0;
}


/* Sobre */
.textoSobre{
    width: 48%;
    height: fit-content;
    height: -moz-fit-content;
    position: relative;
    padding-bottom: 60px;
}
/* .textoSobre::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(270deg, #c70909 31.19%, rgba(0, 0, 0, 0) 57.3%);
    transform: skew(-15deg);
} */
.textoSobre h2{
    line-height: 45px;
}

.imgSobre{
    width: 48%;
    height: fit-content;
    height: -moz-fit-content;
    overflow: hidden;
    border-radius: 5px;
}
.imgSobre img{
    width: 100%;
    height: 100%;
    border-radius: 5px;

    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}
.imgSobre:hover img{
    transform: scale(1.2);
}


/* Veículos detalhes */
.sliderVeiculo{
    z-index: 2;
}
.sliderVeiculo a{
    overflow: hidden;
    height: fit-content;
    height: -moz-fit-content;
}
.sliderVeiculo a img{
    width: 100%;
    height: 356px;
    object-fit: cover;
    object-position: center;

    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}
.sliderVeiculo a:hover img{
    transform: scale(1.2);
}
.sliderVeiculo a iframe{
    width: 100%;
    height: 356px;
}

.leftVeiculosDet,
.rightVeiculosDet{
    margin-top: -90px;
    z-index: 10;
}


.leftVeiculosDet{
    width: 65%;
    background: #363636;
    border-radius: 5px;
    padding: 30px;
}

#social-share{
    margin: 15px auto 0 0;
}

.gridCaracteristicas{
    margin: 30px auto 60px auto;
    padding-top: 15px;
    border-top: 1px solid #818181;
    grid-gap: 30px;
}
.itemCaracteristica h6{
    font-size: 15px;
    line-height: 20px;

    margin-bottom: 5px;
}
.itemCaracteristica p{
    margin-bottom: 0;
    text-align: left;
}

.leftVeiculosDet ul{
    width: 100%;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
}
.leftVeiculosDet ul li{
    width: 100%;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}
.leftVeiculosDet ul li::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: url('../img/icon_check.svg') no-repeat center;
}

.leftVeiculosDet p{
    font-weight: 400;
}


.rightVeiculosDet{
    width: 30%;
    height: fit-content;
    height: -moz-fit-content;
}
.rightVeiculosDet .formB{
    width: 100%;
    position: relative;
    margin: 0;
    top: 0;
    right: 0;
}


/* Oficina */
.itemOficina{
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.itemOficina img{
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center;

    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
}
.itemOficina:hover img{
    transform: scale(1.1);
}

.sobreItemOficina{ 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.sobreItemOficina h6{
    position: relative;
    padding-left: 35px;
}
.sobreItemOficina h6::before{
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -13px;
    left: 0;
    width: 26px;
    height: 26px;
    background: url('../img/seta.png') no-repeat center;
}
.sobreItemOficina p{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 17px;
    color: #FFFFFF;
    padding-left: 35px;
    text-align: left;
}


/* Contato */
.mapa{
    padding: 0;
}

#map{
    width: 100%;
    height: 450px;
}

.mapa iframe{
    width: 100%;
    height: 450px;
}


/*  */
#megasac-info p{
    color: #000 !important;
}


/* Fancybox exit */
.lightbox {
    display: flex;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);

    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
}
.lightbox.showFb{
    top: 0;

    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.lightbox .closeF{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 5px;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    font-size:15px;
    color:#fff;
    background: #c70909;
    cursor: pointer;
    z-index: 10;
}
.lightbox .box{
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    max-width:500px;
    width: 100%;
    background:#000;
    position: relative;
    border-radius: 5px;

    box-shadow: 0px 0px 5px 0px rgba(17,17,17,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(17,17,17,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(17,17,17,0.75);
}

.lightbox .content {
    display:flex;
    flex-direction: column;
    padding: 35px 20px;
    font-size:18px;
    line-height:22px;
    position: relative;
}
#form_popup{
    width:100%;
    height:available;
    height:fit-content;
}
#form_popup .e_input{
    padding: 10px 15px;
    width: 100%;
    background: #F3F3F3;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #818181;
}
#form_popup label{
    position: relative;
}
#form_popup .privacyTerms p,
#form_popup .privacyTerms a{
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
}
#form_popup .privacyTerms a{
    text-decoration: underline;
}
#form_popup .privacyTerms{
    position: relative;
    padding-left: 20px;
}
/* Esconder o checkbox padrão */
#form_popup .privacyTerms input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Criar o ícone de check, escondido quando não estiver selecionado */
#form_popup .privacyTerms .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    height: 11px;
    width: 12px;
    background: url('../img/check.png') no-repeat center;
}
/* Exibir o ícone quando selecionado */
#form_popup .privacyTerms input:checked ~ .checkmark:after {
    display: block;
}
#form_popup .button{
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 15px;
    background: #c70909;
    color: #fff;
    justify-content: center;
}