html {
    position: relative;
}

body {
    justify-content: center;
    align-items: center;
    margin: 0;
    position: relative;
    background-color: #F0F0F0;
    overflow-x: hidden;
}

.contenedor-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 400;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 0, 0, 0.1); /* Cambiamos el color del border */
    border-top: 4px solid #761611;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    position: absolute; /* Cambiamos la posición a absoluta */
    top: 50%; /* Posicionamos en la mitad vertical */
    left: 50%; /* Posicionamos en la mitad horizontal */
    transform: translate(-50%, -50%); /* Centramos el elemento */
    z-index: 9999; /* Asegura que esté por encima de otros elementos */
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }  

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.o-contenidos-head {
    position: relative;
    width: 100%;
    background: url(https://habilon.com/wp-content/themes/habilon-theme/library/images/catalogo-head.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 2px solid #761611;
}

.o-contenidos-head__box {
    padding-top: 25px;
    padding-bottom: 115px;
}
.o-contenidos-head__box {
    position: relative;
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
    padding-top: 55px;
    padding-bottom: 130px;
}

.o-contenidos-head__box__title {
    margin-bottom: 15px;
}
.o-contenidos-head__box__title {
    font-size: 30px;
    font-weight: 400;
    line-height: 35px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.o-contenidos-head__box__title span {
    font-size: 33px;
    line-height: 35px;
}
.o-contenidos-head__box__title span {
    display: block;
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
}

/*.c-contenidos .o-contenidos-head__box__title span {
    font-size: 33px;
    line-height: 35px;
}
.c-contenidos .o-contenidos-head__box__title span {
    display: block;
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
}*/

.o-contenidos-head__box__search{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 620px) {
    .o-contenidos-head__box__search {
      flex-direction: row;
    }
    
    .o-contenidos-head__box__search .custom-select  .o-contenidos-head__box__search select {
      margin-right: 10px; /* Espacio entre el select y el botón en disposición en fila */
    }
  }

@media screen and (max-width: 991px){
.o-contenidos-head__box__search .custom-select {
    background-size: 15px;
}
}

.o-contenidos-head__box__search .custom-select {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: calc(2.25rem + 2px);
    background-image: url(https://habilon.com/wp-content/themes/habilon-theme/library/images/ico-select-2.svg);
    background-color: rgba(255, 255, 255, 0.8);
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: center right 20px;
    padding: 10px;
    margin-right: 10px;
    margin-bottom: 10px; /* Espacio entre el select y el botón */
    border-radius: 0;
    max-width: 300px;
    
}

@media screen and (max-width: 620px){
/*.o-contenidos-head__box__search */
.mi-select {
    width: 100%;
    max-width: 300px;
    
}
}
@media screen and (max-width: 991px){
/*.o-contenidos-head__box__search */
.mi-select {
    width: 200px;
    max-width: 300px;
    
}
}
@media screen and (max-width: 1199px){
/*.o-contenidos-head__box__search */
.mi-select {
    width: 300px;
    max-height: 200px; /* Establece la altura máxima según tu preferencia */
    max-width: 300px;
    overflow-y: hidden;
    
}
}
/*.o-contenidos-head__box__search */
.mi-select {
    background-color: transparent;
    appearance: none;
    border-radius: 0;
    width: 300px;
    height: 40px;
    border: 0;
    padding: 0 10px;
    color: #707070;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    max-height: 200px; /* Establece la altura máxima según tu preferencia */
    max-width: 300px;
    overflow-y: hidden;
    
}

/*.o-contenidos-head__box__search*
.mi-select:focus {
    outline: none;
  }*/

@media screen and (max-width: 620px){
.o-contenidos-head__box__search button {
    margin-top: 10px;
}
}
@media screen and (max-width: 991px){
.o-contenidos-head__box__search button {
    width: 200px;
}
}

.o-contenidos-head__box__search button {
    font-weight: 600;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background-color: #761611;
    color: #fff;
    font-size: 15px;
    text-align: center;
    width: 230px;
    height: 40px;
    cursor: pointer;
    transition: all 0.5s ease;
    padding: 10px 20px;
    margin-bottom: 10px; /* Espacio entre el select y el botón */
}

.o-contenidos-head__box__search button:hover {
    background-color: #FFC000;
    transition: all 0.5s ease;
}

.grid-container{
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 6 columnas para laptop */
    grid-gap: 10px; /* Espacio entre columnas */
}

@media (max-width: 1024px) {
    .grid-container {
      grid-template-columns: repeat(5, 1fr); /* 5 columnas para tablet */
    }
  }

@media (max-width: 768px) {
    .grid-container {
      grid-template-columns: repeat(4, 1fr); /* 4 columnas para tablet */
    }
  }

@media (max-width: 576px) {
    .grid-container {
      grid-template-columns: 1fr; /* 1 columna para celular */
    }
}

.button-filter{
    /*-webkit-box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.45);
    box-shadow: 0px 0px 16px -2px rgba(0, 0, 0, 0.45);*/
    background-color: #761611;
    width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 11px;
    padding: 0 21px;
    font-weight: 700;
    transition: all 0.5s ease;
}

.button-filter:hover{
    background-color: #FFC000;
    transition: all 0.5s ease;
    
    cursor: pointer; /* Cambia el cursor a una mano */
}

.lista-cont{
    width: 100%;
    max-width: 80%; /* Establece un ancho máximo */
    margin: 0 auto; /* Centra el contenido en la página */
    padding-top: 30px;
}

.lista-cont{
    padding-top: 50px;
    position: relative;
}

div{
    padding: 0;
    margin: 0;
}

.img-curso{
    width: 100%;
    height: 240px;
    position: relative;
}

.tarjeta {
    /* Tamaño de columna para pantallas extra grandes */
    flex: 0 0 25%;
    max-width: 25%;
  
    /* Tamaño de columna para pantallas grandes */
    @media (max-width: 1200px) {
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
    }
  
    /* Tamaño de columna para pantallas medianas */
    @media (max-width: 992px) {
      flex: 0 0 50%;
      max-width: 50%;
    }
  
    /* Margen inferior */
    margin-bottom: 1rem;
  }

.card-img-curso{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.card-img-type{
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: auto;
}*/

img{
    max-width: 100%;
}

img{
    max-width: 100%;
    height: auto;
}

img{
    border: 0;
}

img{
    overflow-clip-margin: content-box;
    overflow: clip;
}

.contenido-curso{
    height: 180px;
    padding: 25px 25px;
    background-color: #fff;
    position: relative;
}

.card-tittle{
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 12px;
}

.card-tittle:hover{
    color: #000000;
    text-decoration: underline;
}

.card-autor{
    color: #919191;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 5px;
    display: block;
}

.card-autor::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: url(https://habilon.com/wp-content/themes/habilon-theme/library/images/ico-user.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.card-time{
    color: #919191;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 10px;
    display: block;
}

.card-time::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: url(https://habilon.com/wp-content/themes/habilon-theme/library/images/ico-time.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.card-fecha_act{
    color: #761611;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.card-fecha_act span{
    display: inline-block;
    margin-left: 5px;
    color: #919191;
    font-size: 14px;
}

.btn-custom{
    display: block;
    margin: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 7px 25px;
    background: #761611;
    bottom: 20px;
    left: 50%;
    transition: all 0.5s ease;
}

.btn-custom:hover{
    color: #fff;
    background-color: #FFC000;
    transition: all 0.5s ease;
    
    cursor: pointer; /* Cambia el cursor a una mano */
}

footer {
    width: 100%;
    margin: 0 auto;
    z-index: 100;
    position: relative;
}

div {
        background: 0 0;
        border: 0;
        margin: 0;
        padding: 0;
        vertical-align: baseline;
        outline: 0;
}

div {
    display: block;
}

.vc_empty_space {
    height: 19px;
}

.footer_top_holder {
    background-color: #262626;
    position: relative;
}

.footer_top_holder, footer #lang_sel > ul > li > a, footer #lang_sel_click > ul > li > a {
    background-color: #761611;
}

.footer_top, .footer_top .footer_col1, .footer_top .container_inner > .widget, .footer_top .footer_top_full > .widget {
    text-align: center;
}

.footer_top, .footer_top p, .footer_top span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_shortcode):not(.qode_icon_font_elegant), .footer_top li, .footer_top .textwidget, .footer_top .widget_recent_entries>ul>li>span {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
}

.footer_top, .footer_top p, .footer_top span, .footer_top li, .footer_top .textwidget, .footer_top .widget_recent_entries>ul>li>span {
    color: #ffffff;
}

.footer_top, .footer_top.footer_top_full {
    padding-top: 80px;
    padding-right: 80px;
    padding-bottom: 73px;
    padding-left: 0px;
}

.footer_top {
    padding: 72px 0 52px;
}

.container {
    padding: 0;
    width: 100%;
}

.container, .content, .full_width {
    z-index: 100;
    position: relative;
}

footer .container_inner {
    position: relative;
}

.container_inner {
    width: 1100px;
    margin: 0 auto;
}

.three_columns {
    width: 100%;
    
}

.three_columns>.column1, .three_columns>.column2, .three_columns>.column3 {
    width: 33.33%;
    float: left;
    word-wrap: break-word; /* Permite el ajuste de palabras */
}

.footer_top .footer_col2 {
    text-align: center;
}

.footer_top .footer_col3 {
    text-align: center;
}

@media (max-width: 1200px){
.container_inner {
    max-width: 1140px;
}
.three_columns>.column1, .three_columns>.column2, .three_columns>.column3 {
    width: 30%;
    /*font-size: 0.8em; /* Ejemplo de ajuste de tamaño de fuente para pantallas más pequeñas */
}
}

@media (max-width: 992px){
    .container_inner {
        max-width: 960px;
    }
    .three_columns>.column1, .three_columns>.column2, .three_columns>.column3 {
        width: 28%;
       /* font-size: 0.8em; /* Ejemplo de ajuste de tamaño de fuente para pantallas más pequeñas */
    }
}

@media (max-width: 800px){
    .container_inner {
        max-width: 760px;
    }
    .three_columns>.column1, .three_columns>.column2, .three_columns>.column3 {
        width: 26%;
        /*font-size: 0.8em; /* Ejemplo de ajuste de tamaño de fuente para pantallas más pequeñas */
    }
    }


@media (max-width: 620px){
    .container_inner {
        max-width: 580px;
        width: 100%;
    }
    .three_columns>.column1, .three_columns>.column2, .three_columns>.column3 {
        width: 100%;
        font-size: 0.8em; /* Ejemplo de ajuste de tamaño de fuente para pantallas más pequeñas */
    }
    }


.footer_top .widget_meta>ul>li>a, 
.footer_top .widget_nav_menu ul li a, 
.footer_top .widget_pages>ul>li>a, 
.footer_top .widget_recent_comments>ul>li>a, 
.footer_top .widget_recent_entries>ul>li>a, 
.footer_top .widget_recent_entries>ul>li>span, 
.footer_top_holder, 
footer {
    display: block;
}

.three_columns>.column1>.column_inner {
    padding: 0 15px 0 0;
}

.footer_top .four_columns .column2 .column_inner>div, .footer_top .three_columns .column2 .column_inner>div, .footer_top .two_columns_50_50 .column2 .column_inner>div {
    margin: 0 0 0 15px;
}

.footer_top a {
    color: #ffffff !important;
}

.footer_top .four_columns .column3 .column_inner>div, .footer_top .three_columns .column3 .column_inner>div {
    margin: 0 0 0 10px;
}

.q_social_icon_holder {
    display: inline-block;
    position: relative;
}

a, abbr, acronym, address, applet, b, big, blockquote, body, caption, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, var {
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    outline: 0;
}

.footer_bottom, .footer_bottom span, .footer_bottom p, .footer_bottom p a, .footer_bottom a, #lang_sel_footer ul li a, footer #lang_sel > ul > li > a, footer #lang_sel_click > ul > li > a, footer #lang_sel a.lang_sel_sel, footer #lang_sel_click a.lang_sel_sel, footer #lang_sel ul ul a, footer #lang_sel_click ul ul a, footer #lang_sel ul ul a:visited, footer #lang_sel_click ul ul a:visited, footer #lang_sel_list.lang_sel_list_horizontal a, footer #lang_sel_list.lang_sel_list_vertical a, #lang_sel_footer a, .footer_bottom ul li a {
    color: #808080;
}

.footer_bottom {
    padding-top: 27px;
}

.q_social_icon_holder.circle_social .fa-stack {
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0px 0px 0px 60px;
}

.q_social_icon_holder .fa-stack {
    background-color: #ffffff;
}

.q_social_icon_holder .fa-stack {
    background-color: #e3e3e3;
    border: 0 solid #f0f0f0;
    margin: 0.2307692307692308em;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#back_to_top span, .box_holder_icon_inner.square .fa-stack, .q_icon_with_title.square .icon_holder .fa-stack, .q_social_icon_holder .fa-stack {
    text-align: center;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
    font-size: 300x300px;
    margin: 0px 0px 0px 60px;
    background-color: rgb(255, 255, 255);
}

.q_social_icon_holder .fa-stack i:last-child, .q_social_icon_holder .fa-stack span {
    font-size: .7692307692307692em;
    display: block;
    line-height: inherit;
}

.q_social_icon_holder .fa-stack i, .q_social_icon_holder .fa-stack span {
    color: #b9b9b9;
    -webkit-transition: color .3s ease-out;
    -moz-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out;
}

.arrow_up, .arrow_down, .arrow_left, .arrow_right, .arrow_left-up, .arrow_right-up, .arrow_right-down, .arrow_left-down, .arrow-up-down, .arrow_up-down_alt, .arrow_left-right_alt, .arrow_left-right, .arrow_expand_alt2, .arrow_expand_alt, .arrow_condense, .arrow_expand, .arrow_move, .arrow_carrot-up, .arrow_carrot-down, .arrow_carrot-left, .arrow_carrot-right, .arrow_carrot-2up, .arrow_carrot-2down, .arrow_carrot-2left, .arrow_carrot-2right, .arrow_carrot-up_alt2, .arrow_carrot-down_alt2, .arrow_carrot-left_alt2, .arrow_carrot-right_alt2, .arrow_carrot-2up_alt2, .arrow_carrot-2down_alt2, .arrow_carrot-2left_alt2, .arrow_carrot-2right_alt2, .arrow_triangle-up, .arrow_triangle-down, .arrow_triangle-left, .arrow_triangle-right, .arrow_triangle-up_alt2, .arrow_triangle-down_alt2, .arrow_triangle-left_alt2, .arrow_triangle-right_alt2, .arrow_back, .icon_minus-06, .icon_plus, .icon_close, .icon_check, .icon_minus_alt2, .icon_plus_alt2, .icon_close_alt2, .icon_check_alt2, .icon_zoom-out_alt, .icon_zoom-in_alt, .icon_search, .icon_box-empty, .icon_box-selected, .icon_minus-box, .icon_plus-box, .icon_box-checked, .icon_circle-empty, .icon_circle-slelected, .icon_stop_alt2, .icon_stop, .icon_pause_alt2, .icon_pause, .icon_menu, .icon_menu-square_alt2, .icon_menu-circle_alt2, .icon_ul, .icon_ol, .icon_adjust-horiz, .icon_adjust-vert, .icon_document_alt, .icon_documents_alt, .icon_pencil, .icon_pencil-edit_alt, .icon_pencil-edit, .icon_folder-alt, .icon_folder-open_alt, .icon_folder-add_alt, .icon_info_alt, .icon_error-oct_alt, .icon_error-circle_alt, .icon_error-triangle_alt, .icon_question_alt2, .icon_question, .icon_comment_alt, .icon_chat_alt, .icon_vol-mute_alt, .icon_volume-low_alt, .icon_volume-high_alt, .icon_quotations, .icon_quotations_alt2, .icon_clock_alt, .icon_lock_alt, .icon_lock-open_alt, .icon_key_alt, .icon_cloud_alt, .icon_cloud-upload_alt, .icon_cloud-download_alt, .icon_image, .icon_images, .icon_lightbulb_alt, .icon_gift_alt, .icon_house_alt, .icon_genius, .icon_mobile, .icon_tablet, .icon_laptop, .icon_desktop, .icon_camera_alt, .icon_mail_alt, .icon_cone_alt, .icon_ribbon_alt, .icon_bag_alt, .icon_creditcard, .icon_cart_alt, .icon_paperclip, .icon_tag_alt, .icon_tags_alt, .icon_trash_alt, .icon_cursor_alt, .icon_mic_alt, .icon_compass_alt, .icon_pin_alt, .icon_pushpin_alt, .icon_map_alt, .icon_drawer_alt, .icon_toolbox_alt, .icon_book_alt, .icon_calendar, .icon_film, .icon_table, .icon_contacts_alt, .icon_headphones, .icon_lifesaver, .icon_piechart, .icon_refresh, .icon_link_alt, .icon_link, .icon_loading, .icon_blocked, .icon_archive_alt, .icon_heart_alt, .icon_star_alt, .icon_star-half_alt, .icon_star, .icon_star-half, .icon_tools, .icon_tool, .icon_cog, .icon_cogs, .arrow_up_alt, .arrow_down_alt, .arrow_left_alt, .arrow_right_alt, .arrow_left-up_alt, .arrow_right-up_alt, .arrow_right-down_alt, .arrow_left-down_alt, .arrow_condense_alt, .arrow_expand_alt3, .arrow_carrot_up_alt, .arrow_carrot-down_alt, .arrow_carrot-left_alt, .arrow_carrot-right_alt, .arrow_carrot-2up_alt, .arrow_carrot-2dwnn_alt, .arrow_carrot-2left_alt, .arrow_carrot-2right_alt, .arrow_triangle-up_alt, .arrow_triangle-down_alt, .arrow_triangle-left_alt, .arrow_triangle-right_alt, .icon_minus_alt, .icon_plus_alt, .icon_close_alt, .icon_check_alt, .icon_zoom-out, .icon_zoom-in, .icon_stop_alt, .icon_menu-square_alt, .icon_menu-circle_alt, .icon_document, .icon_documents, .icon_pencil_alt, .icon_folder, .icon_folder-open, .icon_folder-add, .icon_folder_upload, .icon_folder_download, .icon_info, .icon_error-circle, .icon_error-oct, .icon_error-triangle, .icon_question_alt, .icon_comment, .icon_chat, .icon_vol-mute, .icon_volume-low, .icon_volume-high, .icon_quotations_alt, .icon_clock, .icon_lock, .icon_lock-open, .icon_key, .icon_cloud, .icon_cloud-upload, .icon_cloud-download, .icon_lightbulb, .icon_gift, .icon_house, .icon_camera, .icon_mail, .icon_cone, .icon_ribbon, .icon_bag, .icon_cart, .icon_tag, .icon_tags, .icon_trash, .icon_cursor, .icon_mic, .icon_compass, .icon_pin, .icon_pushpin, .icon_map, .icon_drawer, .icon_toolbox, .icon_book, .icon_contacts, .icon_archive, .icon_heart, .icon_profile, .icon_group, .icon_grid-2x2, .icon_grid-3x3, .icon_music, .icon_pause_alt, .icon_phone, .icon_upload, .icon_download, .social_facebook, .social_twitter, .social_pinterest, .social_googleplus, .social_tumblr, .social_tumbleupon, .social_wordpress, .social_instagram, .social_dribbble, .social_vimeo, .social_linkedin, .social_rss, .social_deviantart, .social_share, .social_myspace, .social_skype, .social_youtube, .social_picassa, .social_googledrive, .social_flickr, .social_blogger, .social_spotify, .social_delicious, .social_facebook_circle, .social_twitter_circle, .social_pinterest_circle, .social_googleplus_circle, .social_tumblr_circle, .social_stumbleupon_circle, .social_wordpress_circle, .social_instagram_circle, .social_dribbble_circle, .social_vimeo_circle, .social_linkedin_circle, .social_rss_circle, .social_deviantart_circle, .social_share_circle, .social_myspace_circle, .social_skype_circle, .social_youtube_circle, .social_picassa_circle, .social_googledrive_alt2, .social_flickr_circle, .social_blogger_circle, .social_spotify_circle, .social_delicious_circle, .social_facebook_square, .social_twitter_square, .social_pinterest_square, .social_googleplus_square, .social_tumblr_square, .social_stumbleupon_square, .social_wordpress_square, .social_instagram_square, .social_dribbble_square, .social_vimeo_square, .social_linkedin_square, .social_rss_square, .social_deviantart_square, .social_share_square, .social_myspace_square, .social_skype_square, .social_youtube_square, .social_picassa_square, .social_googledrive_square, .social_flickr_square, .social_blogger_square, .social_spotify_square, .social_delicious_square, .icon_printer, .icon_calulator, .icon_building, .icon_floppy, .icon_drive, .icon_search-2, .icon_id, .icon_id-2, .icon_puzzle, .icon_like, .icon_dislike, .icon_mug, .icon_currency, .icon_wallet, .icon_pens, .icon_easel, .icon_flowchart, .icon_datareport, .icon_briefcase, .icon_shield, .icon_percent, .icon_globe, .icon_globe-2, .icon_target, .icon_hourglass, .icon_balance, .icon_rook, .icon_printer-alt, .icon_calculator_alt, .icon_building_alt, .icon_floppy_alt, .icon_drive_alt, .icon_search_alt, .icon_id_alt, .icon_id-2_alt, .icon_puzzle_alt, .icon_like_alt, .icon_dislike_alt, .icon_mug_alt, .icon_currency_alt, .icon_wallet_alt, .icon_pens_alt, .icon_easel_alt, .icon_flowchart_alt, .icon_datareport_alt, .icon_briefcase_alt, .icon_shield_alt, .icon_percent_alt, .icon_globe_alt, .icon_clipboard {
    font-family: 'ElegantIcons';
    /*speak: none;*/
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
        

    .footer_top_holder,	
    footer #lang_sel > ul > li > a,	
    footer #lang_sel_click > ul > li > a{
    background-color: #761611;
    }

            .footer_top,
    .footer_top.footer_top_full{
    padding-top: 80px;padding-right: 80px;padding-bottom: 73px;padding-left: 0px			}

    .footer_top,
    .footer_top p,
    .footer_top span,
    .footer_top li,
    .footer_top .textwidget,
    .footer_top .widget_recent_entries>ul>li>span {
    color: #ffffff;
    }
                    .footer_top a
    {
    color: #ffffff !important;
    }

    .footer_top .q_social_icon_holder .simple_social {
    color: #ffffff;
    }
                    .footer_top a:hover
    {
    color: #f59c35 !important;
    }

    .footer_top .q_social_icon_holder:hover .simple_social {
    color: #f59c35;
    }


            .footer_bottom_holder, #lang_sel_footer{
    background-color:#262626;
    }

            .footer_top,
    .footer_top p,
    .footer_top span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_shortcode):not(.qode_icon_font_elegant),
    .footer_top li,
    .footer_top .textwidget,
    .footer_top .widget_recent_entries>ul>li>span{
    font-size: 16px;letter-spacing: 0px;line-height: 24px;font-weight: 400;text-transform: none;font-style: normal			}

            .footer_top a {
    font-size: 15px;letter-spacing: 0px;line-height: 35px;font-weight: 500;text-transform: none;font-style: normal			}

            .footer_top,
    .footer_top .footer_col1,
    .footer_top .container_inner > .widget,
    .footer_top.footer_top_full > .widget{
    text-align: center;
    }
            .footer_top .footer_col2{
    text-align: center;
    }
            .footer_top .footer_col3{
    text-align: center;
    }


            .footer_bottom, .footer_bottom span, .footer_bottom p, .footer_bottom p a, .footer_bottom a, #lang_sel_footer ul li a,
    footer #lang_sel > ul > li > a,
    footer #lang_sel_click > ul > li > a,
    footer #lang_sel a.lang_sel_sel,
    footer #lang_sel_click a.lang_sel_sel,
    footer #lang_sel ul ul a,
    footer #lang_sel_click ul ul a,
    footer #lang_sel ul ul a:visited,
    footer #lang_sel_click ul ul a:visited,
    footer #lang_sel_list.lang_sel_list_horizontal a,
    footer #lang_sel_list.lang_sel_list_vertical a,
    #lang_sel_footer a,
    .footer_bottom ul li a {
    color:#808080;
    }

    .q_social_icon_holder.circle_social .fa-stack,.q_social_icon_holder.square_social .fa-stack {
        background-color: white;
        border-color: transparent;

        
    }
    
    .q_social_icon_holder .fa-stack i,.q_social_icon_holder .fa-stack span {
        color: red;
        cursor: pointer;
        -webkit-transition: color .3s ease-out;
        -moz-transition: color .3s ease-out;
        -o-transition: color .3s ease-out;
        transition: color .3s ease-out;
        
    }
    
    .q_social_icon_holder.circle_social .fa-stack:hover,.q_social_icon_holder.square_social .fa-stack:hover {
        background-color: red;
        border-color: transparent;

        .qode_icon_font_elegant{
            color: #F0F0F0;
        }
    }
    
    .q_social_icon_holder .fa-stack i:last-child,.q_social_icon_holder .fa-stack span {
        font-size: .7692307692307692em;
        display: block;
        line-height: inherit
    }
    
    .footer_bottom_holder,
			.footer_bottom,
			.footer_bottom p,
			.footer_bottom_holder p,
			.footer_bottom span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_font_elegant){
			font-size: 16px;letter-spacing: 0px;line-height: 24px;font-weight: 400;text-transform: none;font-style: normal			}
		
            .footer_bottom_holder, .footer_bottom, .footer_bottom p, .footer_bottom_holder p, .footer_bottom span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_font_elegant) {
                font-size: 16px;
                letter-spacing: 0px;
                line-height: 24px;
                font-weight: 400;
                text-transform: none;
                font-style: normal;
            }
            .footer_bottom_holder {
                padding-right: 0px;
                padding-bottom: 27px;
                padding-left: 0px;
            }
            .footer_bottom_holder, #lang_sel_footer {
                background-color: #262626;
            }
            .footer_bottom_holder, .footer_bottom, .footer_bottom p, .footer_bottom_holder p, .footer_bottom span:not(.q_social_icon_holder):not(.fa-stack):not(.qode_icon_font_elegant) {
                font-size: 16px;
                letter-spacing: 0px;
                line-height: 24px;
                font-weight: 400;
                text-transform: none;
                font-style: normal;
            }
            .footer_bottom_holder {
                padding-right: 0px;
                padding-bottom: 27px;
                padding-left: 0px;
            }
            .footer_bottom_holder, #lang_sel_footer {
                background-color: #262626;
            }
            .footer_bottom_holder {
                display: block;
                background-color: #1b1b1b;
            }

            .footer_bottom, .side_menu.side_area_alignment_center {
                text-align: center;
            }