*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root{
    --bg-primary:#435bd6;
    --bg-secondary:#8f8f8f;
    --bg-success:#308a60;
    --bg-danger:#dc4c5a;
    --bg-warning:#fdc92e;

    /****** alert ******/

    --alert-primary:#c1d9f2;
    --alert-secondary:#e2e3e5;
    --alert-success:#c3ddc9;
    --alert-darnger:#edcbce;
    --alert-warning:#ebe0ba;

    /***** text-color *******/

    --color-primary:#004085;
    --color-success:#0e561f;
    --color-secondary:#383d41;
    --color-danger:#67151d;
    --color-warning:#6e5303;
    --color-white:#ffffff;

    /****** font-default *******/

    --font-default:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    /********* theme-dark *********/
    --bg-nav:#f8d2f4;
    --theme-dark:#343a40;
}

body{
    font-family: var(--font-default);
}

.row{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.container{
    width: 85%;
    margin: 0px auto;
}

section{
    min-height: 100vh;
}

/******* columns flex ********/

.col-lg-1{
    width: 8.33%;
    display: block;
    padding: 0px 3px;
}
.col-lg-2{
    width: 16.66%;
    display: block;
    padding: 0px 3px;
}
.col-lg-3{
    width: 24.99%;
    display: block;
    padding: 0px 3px;
}
.col-lg-4{
    width: 33.32%;
    display: block;
    padding: 0px 3px;
    
}
.col-lg-5{
    width: 41.65%;
    display: block;
    padding: 0px 3px;
}

.col-lg-6{
    width: 49.98%;
    display: block;
    padding: 0px 3px;
}

.col-lg-7{
    width: 58.31%;
    display: block;
    padding: 0px 3px;
}

.col-lg-8{
    width: 66.64%;
    display: block;
    padding: 0px 3px;
}

.col-lg-9{
    width: 74.97%;
    display: block;
    padding: 0px 3px;
}

.col-lg-10{
    width: 83.3%;
    display: block;
    padding: 0px 3px;
}

.col-lg-11{
    width: 91.63%;
    display: block;
    padding: 0px 3px;
}

.col-lg-12{
    width: 99.96%;
    display: block;
    padding: 0px 3px;
}

/******** figure ********/
figure{
    display: flex;
    justify-content: center;
    align-items: center;
}

/********* nav ***********/
.a-bar{
    display: none;
}
.a-nav{
    
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px ;
    background-color: var(--bg-nav);
    z-index: 99;
}

.a-nav_list{
    display: flex;
    width: 70%;
    justify-content: end;
    align-items: center;
    list-style: none;
    gap: 20px;
    
    
}

.a-nav_items{
    padding: 5px 10px;
    font-size: 21px;
    color:#000000;
    
}

.a-nav_items a{
    padding: 5px 10px;
    font-size: 21px;
    color:#000000;
    text-decoration: none;
    
}

.a-brands{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
    object-fit: cover;
}
.a_i_b{
    width: 20%;
}

/********* alert **********/

.a-alert{
    width: 100%;
    padding: 10px;
    background-image: linear-gradient(180deg, #f8d2f4 0%, #c1e2fd 100%);
    color: var(--color-primary);
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

/********* dropdown **********/

.dropdown{
    
    display: flex;
    flex-direction: column;
    position: relative;
}

.dropdown p{
    
    
    
    background-color:var(--bg-nav) ;
    padding-right: 30px;
    background-image: url(../icon/chevron-down.svg);
    background-size:25px;
    background-position:right;
    background-repeat: no-repeat;
    cursor: pointer;
}

.dropdwon_list{
    width: 160%;
    position: absolute;
    top:30px;
    display: none;
    list-style: none;
    padding: 5px 15px;
    z-index: 100;
    background-color:var(--bg-nav) ;
    border-radius: 7px;
    
}

.dropdwon_items{
    width: 100%;
    padding: 5px 0;
    
}

.dropdwon_items a{
    width: 100%;
    padding: 5px 0;
}

.dropdwon_items:hover{
    background-color: #c3f3f9;
    border-radius: 5px;
    padding: 3px 5px;
}

/******** padding ********/

.px-2{
    padding: 0 10px;
}

/*********** slider **************/

.a-s_container{
    width: 100%;
    
    height: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.a-s{
    width: 100%;
    height: 100%;
    position: relative;
    
}

.a-s_i{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity is ease-in-out;
    background-size:cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0px;
}

.a-s_i.active{
    opacity: 1;
}

.a-s_c{
    background: rgba(0, 0, 0, 0.488);
    padding: 0px;
    color: var(--color-white);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

.a-s_c h2{
    width: 100%;
    font-size: 44px;
}

.a-s_c h5{
    width: 100%;
    font-size: 34px;
    color: rgb(197, 175, 193);
}

.a-s_c p{
    width: 100%;
    font-size: 24px;
    font-weight: 500;
}

.a-s_controls{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 98;

}

.a-slider-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.a-slider-dot.active{
    background: var(--color-primary);
    transform: scale(1);
}

.a-prev_next{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.a-s_btn{
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.a-s_btn:hover{
    background: var(--bg-nav);
    color: var(--color-secondary);
}

/********* cards ************/

.a-card{
    width: 100%;
    display: block;
    min-height: 650px;
    border-radius: 5px;
    border: 1px solid var(--bg-secondary);
    
    box-shadow:  3px 3px 3px #8f8f8f;
    overflow: hidden;
}

.a-card_body{
    width: 100%;
    min-height: 100%;
    font-family: var(--font-default);
    background-color: var(--color-white);
    border-top-left-radius:25px ;
    border-top-right-radius: 25px;
    margin-top: -25px;
    z-index: 1;
    position: relative;
    padding: 0px 5px;
}

.a-card_title  {
    width: 100%;
    padding: 7px;
    font-size: 24px;
    font-weight: 500;
}
.a-card_text   {
    width: 100%;
    padding: 7px;
}
.a-img_top{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
}

.a-icon_c{
    width: 20%;
    margin: 0px auto;
    border-radius: 50%;
    top: -20px;
    bottom: 0;
    position: relative;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    padding: 5px;
    object-fit: contain;
    
    
}
.a-icon_i{
    width: 70%;
}

/******** btns ***********/

.btn{
    
    padding: 7px 15px;
    border: 0px;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0px 5px 10px var(--color-secondary);
}
.btn_call{
    
    margin: 0px auto;
}

.btn-primary{
    background-color: var(--bg-primary);
    color: var(--color-white);
}
.btn-success{
    background-color: var(--bg-success);
    color: var(--color-white);
}
.btn-danger{
    background-color: var(--bg-danger);
    color: var(--color-white);
}

#slider{
    padding: 0;
}

#service{
    padding: 0px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    
}

#nosotros{
    background-image: linear-gradient(180deg, #f8d2f4 0%, #c1e2fd 100%);
    padding: 100px 10px;
}

#price{
    background: var(--color-white);
    padding: 50px 10px;
    height: 600px;
}

#caract{
    background-image: linear-gradient(180deg, #f8d2f4 0%, #c1e2fd 100%);
    padding: 100px 10px;
}

#thank{
    padding: 100px 10px;
}

#faqs{
    padding: 100px 10px;
}

#contact{
    padding: 100px 10px;
}

#pl{
    padding: 50px 10px;
    
}

#cnta{
    background-image: linear-gradient(180deg, #f8d2f4 0%, #c1e2fd 100%);
    padding: 100px 10px;
}

.a-title_s{
    width: 100%;
    
    border-top: 1px solid var(--color-secondary);
    display: flex;
    justify-content: center;
}

.a-title_s h2{
    text-align: center;
    font-family: var(--font-default);
    margin-top: -24px ;
    margin-bottom: 30px;
    background: var(--color-white);
    
    padding: 5px 7px;
}

.a-title_n{
    width: 100%;
    border-bottom: 1px solid #383d41;
    margin-bottom: 50px;
}

.ask{
    width: 100%;
    font-size: 40px;
    margin-bottom: 30px;
}

.a-c_n{
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.a-c_n_b{
    width: 100%;
}

.a-c_n_h1{
    width: 100%;
    margin: 15px 0px 10px 0px;
    color: var(--color-primary);
}

.a-c_n_p{
    width: 100%;
    
}
.a-c_n_p_ul{
    width: 90%;
    margin: 0px auto;
}

.a-c_p_b{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.a-c_p_b img{
    width: 40%;
}

.a-c_p_h1{
    width: 100%;
    margin: 15px 0px 10px 0px;
    color: var(--color-primary);
    text-align: center;
    font-size: 44px;
}

.a-c_p_h3{
    width: 100%;
    text-align: center;
    font-size: 24px;
}

/******** caracteristicas **********/
.a-card_c{
    width: 100%;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    background: #ffffff64;
    justify-content: center;
    overflow: hidden;
    min-height: 350px;
    margin-top: 20px;
}
.a-icon_ca{
    width: 50%;
    margin: 5px auto;
    display: flex;
}

.a-icon_ca img{
    width: 30%;
    justify-content: center;
    margin: 4px auto;
}

/********** contact *********/

.a_cards{
    width: 100%;
    border:1px solid #8f8f8f;
    border-radius: 5px;
    box-shadow: 0px 7px 15px #8f8f8f;
    background-color: #ffffff;
}

.contact{
    width: 100%;
    display: flex;
    
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    
}

.form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px;
    background-color: var(--color-white);
}
.a_form-g{
    width: 100%;
    margin: 10px 0px;
}

textarea{
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    padding: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    resize: none;
    scrollbar-width: 0px;
    border: 0px;
    border:0;
    background: #f3f3f3;
    outline: none;
}

textarea:focus{
border-bottom: 2px solid #c358b8;
background: #f3f3f3;
}
textarea::-webkit-scrollbar{
    width: 0px;
}

.a-l_c{
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    margin-top: 15px;
    margin-top: 10px;
}
.a-i_c{
    width: 100%;
    padding: 10px;
    border: 0px;
    border:0;
    background: #f3f3f3;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    margin-top: 5px;
}

.a-i_c:focus{
    border-bottom: 2px solid #c358b8;
    background: none;
}

.a-c_c{
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(180deg, #f8d2f4 0%, #c1e2fd 100%);
}

.a-c_c_b{
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.a-c_c_h1{
    width: 100%;
    margin: 15px 0px 10px 0px;
    color: var(--color-primary);
    text-align: center;
}

.a-c_c_p{
    width: 100%;
    text-align: center;
}
.a-c_c_i{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/********** footer ***********/
footer{
    background-color:  #e3f2ff ;
}
.a-footer-content{
    width: 100%;
    
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    
    flex-wrap: wrap;
    gap: 30px;
}

.a_footer-section{
    flex: 1;
    min-width: 250px;
    margin: 30px 0;
}

.a_footer-section h4{
    font-size: 22px;
    color: var(--color-primary);
}

.a_footer_list{
    list-style: none;
    margin: 10px 0px;
    padding: 0;
}

.a_footer_items{
    display: flex;
    margin-bottom: 10px;
    font-size: 18px;
}

.a_footer_items a{
    text-decoration: none;
    color:var(--color-secondary);
    transition: color 0.3s;
    
}

.a_footer_items a:hover{
    text-decoration: underline 2px var(--bg-primary);
    text-underline-offset: 5px;
}

.a_social-link{
    display: flex;
    margin-top: 15px;
    gap: 15px;
    
}



.a_social-link a{
    color: #ec69df;
    font-size: 32px;
    transition: color 0.3s;
}

.a_social-link a:hover{
    color: var(--color-primary);
    
}

.a_copy{
    text-align: center;
    padding: 20px 0;
    border-color: 1px solid var(--color-secondary);
    
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}



.flayerSer{
    background-image: linear-gradient(180deg, #b826aa 0%, #2984ce 100%);
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    color: var(--color-white);
    gap: 10px;
}
.flayerSer_h2{
    font-size: 34px;
}

.flayerSer_p{
    font-size: 25px;
}

.flayerSer_h3{
    font-size: 25px;
}
.flayerSer a{
    text-decoration: none;
    color: var(--color-white);
    font-size: 24px;
    margin: 10px 0px;
}

/************ FQAS **************/

.faqs-body{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-faqs{
    width: 100%;
    font-size: 24px;
    text-align: center;
}

.faqs-list{
    width: 100%;
    list-style: none;
}

.faqs-items{
    width: 100%;
    border: 1px solid #383d41;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: 20px 0px;
    padding: 10px 0px;
    box-shadow: 1px 5px 7px #8f8f8f;
    background-image: linear-gradient(180deg, #f8d2f4 0%, #c1e2fd 100%) ;
    
}
.faqs-ask img{
    width: 2%;
}

.faqs-ask{
    width: 98%;
    padding: 10px 15px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    color: var(--color-primary);
    
}

.faqs-asw{
    width: 98%;
    padding: 7px 15px;
    font-size: 16px;
    display: none;
    justify-content: center;
}

.faqs-asw ul{
    width: 98%;
    list-style:disc;
    padding: 5px 10px;
    margin-top: 10px;
}

.faqs-asw li{
    width: 98%;
    
    padding: 10px 0px;
    
}

.faqs_f{
    margin: 15px auto;
}

.faqs_f_h3{
    margin: 15px auto;
    color: var(--color-primary);
    text-align: center;
}

.ask_-_1{
    display: none;
}

.hide{
    display:none;

}
.show{
    display: block;
}

/* ************** animation ************/
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slaiderRight{
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Animaciones específicas */

.a-brands{
    animation: slideInLeft 1s ease-out;
}
.a-nav_list{
    animation: slaiderRight 1s ease-out 0.5s backwards;
}

.a-s_c{
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.whatsapp-btn {
    animation: float 3s ease-in-out infinite;
}

.a-card {
    
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);    
}

.a-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.a-c_n{
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.a-c_n.visible{
    opacity: 1;
    transform: translateY(0);
}

.a_i_n_r{
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out; 
}
.a_i_n_r.visible{
    opacity: 1;
    transform: translateX(0);
    
}

.a_i_n_l{
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out; 
}
.a_i_n_l.visible{
    opacity: 1;
    transform: translateX(0);
    
}

.a-card_c{
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);   
}

.a-card_c.visible{
    opacity: 1;
    transform: translateY(0);
}

.a_form-g{
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.a_form-g.visible{
    opacity: 1;
    transform: translateX(0);
}
.a-c_c{
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}
.a-c_c.visible{
    opacity: 1;
    transform: translateX(0);
}
.a_footer-section{
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s ease-out;
}

.a_footer-section.visible{
    opacity: 1;
    transform: translateY(0);
    
}

.whatsapp-btn {
    animation: float 3s ease-in-out infinite;
}
/*********** flayers *********/
.flayerSer_h2{
    opacity: 0;
    transform: translateX(150px);
    transition: all 0.6s ease-out;
}

.flayerSer_p{
    opacity: 0;
    transform: translateX(150px);
    transition: all 0.6s ease-out;
}

.flayerSer_h3{
    opacity: 0;
    transform: translateX(150px);
    transition: all 0.6s ease-out;
}
.flayerSer_h2.visible{
    opacity: 1;
    transform: translateX(0);
}

.flayerSer_p.visible{
    opacity: 1;
    transform: translateX(0);
}

.flayerSer_h3.visible{
    opacity: 1;
    transform: translateX(0);
}




/* Animación entrada formulario */
@keyframes formEntrance {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateX(90deg);
    }

    to {
        opacity: 1;
        transform: perspective(1000px) rotateX(0);
    }
}

form {
    animation: formEntrance 1.2s ease-out forwards;
}

@media (width <=768px) {
    /****** hide and show  *******/

    .hide{
        display:none;

    }
    .show{
        display: block;
    }
    /********** columns **********/
    .col-sm-1{
        width: 8.33%;
        display: block;
    }
    .col-sm-2{
        width: 16.66%;
        display: block;
    }
    .col-sm-3{
        width: 24.99%;
        display: block;
    }
    .col-sm-4{
        width: 33.32%;
        display: block;
    }
    .col-sm-5{
        width: 41.65%;
        display: block;
    }

    .col-sm-6{
        width: 49.98%;
        display: block;
    }

    .col-sm-7{
        width: 58.31%;
        display: block;
    }

    .col-sm-8{
        width: 66.64%;
        display: block;
    }

    .col-sm-9{
        width: 74.97%;
        display: block;
    }

    .col-sm-10{
        width: 83.3%;
        display: block;
    }

    .col-sm-11{
        width: 91.63%;
        display: block;
    }

    .col-sm-12{
        width: 99.96%;
        display: block;
    }

    /********* btn call **********/

    .btn_call{
        width: 100%;
        margin: 0px auto;
    }

    /********** nav *********/
    .a-bar{
        position: absolute;
        left:10px;
        width: 8%;
        display: flex;
        align-items: center;
    }
    .a-bar img{
        width: 100%;
    }
    nav .a-nav{
        
        flex-direction: row;
        justify-content: center;
        
    }

    .a-brands{
        margin: 0 auto;
       width: 70%;
    }

    
    .a-nav_list{
        display: none;
        width: 100%;
        background: #f8d2f4e0;
        top: 35px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 5px 5px;
        animation: slaiderRight 1s ease-out 0.5s backwards  ;
        
        
    }
    .a-nav_list.active{
        display: flex;
        position: absolute;
        z-index: 10;
        top: 83px;
    }

    .a-nav_items{
        font-size: 15px;
        padding: 5px 7px;
        width: 100%;
        
    }
    /******** dropdown ******/
    .dropdown{
        background: transparent;
       
        
    }

    .dropdown p{
        background: transparent;
        background-image: url(../icon/chevron-down.svg);
        background-repeat: no-repeat;
        background-position:right;
       
        background-size: 20px;
        padding: 5px 9px;
        font-size: 21px;
        color:#000000;
        
    }
    
    .dropdwon_list{
        padding: 0 9px;
        top: 0;
        position: relative;
        width: 100%;
        background: transparent;
    }

    
    /************** slider **************/

    .a-s_container{
        max-height: 900px;
    }

    /*********a-card *************/

    .a-card{
        margin: 20px 0px;
    }

    /******** section price ********/

    .a-s_container{
        min-height: 100vh;
    }

    .a-c_p_b img{
        width: 100%;
    }

    .a-c_p_h1{
        font-size: 24px;
    }

    .a-c_p_h3{
        font-size: 20px;
    }
    /********* contact ********/
    .contact{
        flex-direction: column-reverse;
    }
    .a-c_c_b{
        min-height: 100%;
        padding-bottom: 20px;
    }
    
    .fx-c{
        flex-direction: column;
        gap: 20px;
    }

    /******** footer *********/

    .a-footer-content{
        flex-direction: column;
        text-align: center;
    }
    .a_social-link{
        justify-content: center;
    }

    
    .a_footer_items{
        justify-content: center;
        text-align: center;
    }

    .a_footer_items a{
        text-align: center;
    }   
    
    /********* flayers ********/

    .flayerSer_h2{
        font-size: 22px;
        text-align: center;
        padding: 0px 10px;
    }
    
    .flayerSer_p{
        font-size: 15px;
        text-align: center;
        padding: 0px 10px;
    }
    
    .flayerSer_h3{
        font-size: 15px;
        text-align:center;
    }
    .flayerSer a{
        display: flex;
        text-decoration: none;
        color: var(--color-white);
        font-size: 17px;
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }

    /****** faqs *******/

    .title-faqs{
        width: 100%;
        font-size: 18px;
        text-align: center;
    }

    .faqs-ask{
        font-size: 15px;
    }
    .faqs-ask img{
        width: 6%;
    }

    .faqs-asw{
        
        font-size: 14px;
        
    }
    .faqs_f{
        margin: 15px auto;
    }

    .faqs_f_h3{
        margin: 15px auto;
        color: var(--color-primary);
        text-align: center;
        font-size:17px;
    }
}

