/*----------- CSS by BMestudio 2018 -----------*/
/*-----------start KEYFRAMES-----------*/
/*start RESET*/
@-webkit-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@-moz-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@-o-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
/*end RESET*/

/*start STICK*/
@-webkit-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@-moz-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@-o-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
/*end STICK*/

/*start FADE IN*/
@-webkit-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@-o-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
/*end FADE IN*/

/*start SCROLL ANIMATION*/
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
            transform: translateY(26px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
            transform: translateY(26px);
  }
}
/*end SCROLL ANIMATION*/
/*-----------end KEYFRAMES-----------*/

/*-----------start GLOBALS-----------*/
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    font-smooth: antialiased !important;
    -webkit-text-size-adjust: none;
    font-smooth: always !important;
    -webkit-font-smooth: always !important;
    -moz-font-smooth: always !important;
    text-rendering: optimizeLegibility !important;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body{
    font-size: 14px;
    -webkit-animation: reset, fade-in 2s 1 ease;
    -moz-animation: reset, fade-in 2s 1 ease;
    background:#bdb4a7;
    color:#727277;
    outline: none;
    -webkit-animation: reset, fade-in 2s 1 ease;
    -moz-animation: reset, fade-in 2s 1 ease;
    animation: reset, fade-in 2s 1 ease;
    -o-animation: reset, fade-in 2s 1 ease;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-style: normal;
    height: 100%
}


*{
    outline: none
}

a{
    color:#727277;
    text-decoration: none;
    transition:All 0.5s ease;
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;
}

a:hover, a:active, a.active, a:focus{
    color: #353535;
    text-decoration: none;
}

p{
    line-height: 1.7em;
}
    p span{
        color: #00a47f;
        font-weight: bold;
    }
    p strong{
        font-weight: 700;
    }

strong{
    font-weight: 700;
}

ul{
    padding: 0;
    list-style: none;
    margin: 0
}
h1, h2, h3, h4, h5, h6{
    margin:0px;
    padding: 0px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700
}
h2{
    font-size: 2.8em;
}
h3{
    font-size: 1.4em;
}
h4{
    font-size: 1.1em;
}
.form-group{
    overflow: hidden;
}
input,
textarea,
.form-control{
    border:none;
    background: transparent;
    border: 1px solid #000;
    border-radius: 0px;
    width: 100%;
    padding:12px;
    min-height: 40px;
    box-shadow: none;
    font-size: 1em;
}
textarea{
    resize: none;
}
input:focus,
textarea:focus,
.form-control:focus{
    outline:none;
    box-shadow: none;
    border-color:#000;
    background: #e0e0e0
}

button{
    transition:All 0.2s ease;
    -webkit-transition:All 0.2s ease;
    -moz-transition:All 0.2s ease;
    -o-transition:All 0.2s ease;
}

.img img{
    width: 100%;
}

/* Navbar Toggle Icon Bar*/
.navbar-toggle{
    padding: 0;
    margin: 0;
    color: #959595;
    font-size: 2em;
    z-index: 9999!important
}
    .navbar-toggle .icon-bar{
        background-color: #00a47f;
    }
        .navbar-toggle .icon-bar {
            width: 30px;
            height: 4px;
            border-radius: 0;
        }
/* end Navbar Toggle Icon Bar*/

/*start FLEX*/
.flex{
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   flex-direction: row;
   -webkit-flex-direction: row;
   -moz-flex-direction: row;
   flex-wrap: wrap;
   -webkit-flex-wrap: wrap;
   -moz-flex-wrap: wrap;
   justify-content: space-between;
   -webkit-justify-content: space-between;
   -moz-justify-content: space-between;
   align-items: center;
   -moz-align-items: center;
   -webkit-align-items: center;
}
/*end FLEX*/

/* GoTop */
#gotop{
    position: absolute;
    bottom: -20px;
    right: 15px;
    display: inline-block;
    width: 40px;
    margin: 0;
    z-index: 999;
}
    #gotop:hover{
        opacity: .7;
    }
        #gotop img{
            width: 100%;
        }
/* end GoTop */

/* start Btn */
.btn{
    background:transparent;
    color:#353535;
    border:1px solid #c5c5c5;
    background-color:transparent;
    box-shadow: none;
    background-image: none;
    border-radius: 0px;
    text-shadow: none;
    padding: 10px 35px;
}
    .btn:hover{
        background-color: #353535;
        border-color:#353535;
        color:#fff;
    }
.btn.light{
    color:#fff;
    border:1px solid #fff;
}
    .btn.light:hover{
        background-color: #fff;
        border-color:#fff;
        color:#353535;
    }
.btn.blue{
    background: #353535;
    border-color:#353535;
    color: #fff
}
.btn.blue:hover,
.btn.blue:active,
.btn.blue:focus{
    background-color: #1778ba;
    border-color: #1778ba;
    box-shadow: none;
}
/* end Btn */

/*start Button Responsive Menu*/
.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 25px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    float: left;
    margin-top: 4px
}
.c-hamburger:focus {
    outline: none;
}
    .c-hamburger span {
        display: block;
        position: absolute;
        top: 8px;
        left: 0;
        right: 0;
        height: 3px;
        background: #000;
        transform: rotate(-180deg);
        border-radius: 3px;
    }
    .home-body .c-hamburger span,
    .home-body .c-hamburger span::before,
    .home-body .c-hamburger span::after{
        background: #000
    }
        .c-hamburger span::before,
        .c-hamburger span::after {
            position: absolute;
            display: block;
            left: 0;
            width: 70%;
            border-radius: 3px;
            height: 3px;
            background-color: #000;
            content: "";
        }
        .c-hamburger span::before {
            top: -8px;
        }
        .c-hamburger span::after {
            bottom: -8px;
        }
    .c-hamburger--htx {
        background-color: transparent;
    }
        .c-hamburger--htx span {
            transition: background 0s 0.3s;
        }
            .c-hamburger--htx span::before,
            .c-hamburger--htx span::after {
                transition-duration: 0.3s, 0.3s;
                transition-delay: 0.3s, 0s;
            }
            .c-hamburger--htx span::before {
                transition-property: top, transform;
            }
            .c-hamburger--htx span::after {
                transition-property: bottom, transform;
            }

    /* active state, i.e. menu open */
    .c-hamburger--htx.is-active {
        background-color: transparent;
    }
        .c-hamburger--htx.is-active span {
            background: none;
        }
            .c-hamburger--htx.is-active span::before {
                top: 0;
                transform: rotate(45deg);
                background: #000
            }
            .c-hamburger--htx.is-active span::after {
                bottom: 0;
                transform: rotate(-45deg);
                background: #000
            }
            .c-hamburger--htx.is-active span::before,
            .c-hamburger--htx.is-active span::after {
                transition-delay: 0s, 0.3s;
            }
/*end Button Responsive Menu*/

/*start SCROLL MOUSE*/
.icon-scroll,
    .icon-scroll:before {
      position: absolute;
      left: 50%;
    }
    .icon-scroll {
      width: 30px;
      height: 50px;
      margin-left: -20px;
      bottom: 50px;
      box-shadow: inset 0 0 0 1px #fff;
      border-radius: 25px;
      opacity: 0.5
    }
    .icon-scroll:hover{
        opacity: 1
    }
    .icon-scroll:before {
      content: '';
      width: 6px;
      height: 6px;
      background: #fff;
      margin-left: -3px;
      top: 6px;
      border-radius: 3px;
      -webkit-animation-duration: 1.5s;
              animation-duration: 1.5s;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
      -webkit-animation-name: scroll;
              animation-name: scroll;
    }
/*end SCROLL MOUSE*/

/*start ARROWS*/
.curves{
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -50px;
    text-align: center;
    width: 95px;
    height: 24px;
    background: url(../images/curves/up.png);
    background-repeat: no-repeat;
}
.curves.dark{
    background: url(../images/curves/up-dark.png);
    color: #fff
}
.curves.blue{
    background: url(../images/curves/up-blue.png);
    color: #fff
}
    .curves i{
        line-height: 35px;
        font-size: 1.3em;
    }
/*end ARROWS*/

/*start TITLEs*/
.title-sec{
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 3em;
    font-weight: 400;
}

.title{
    font-size: 2.5em;
    color: #353535;
    position: relative;
    font-weight: 400;
}
h3.title{
    font-size: 2em;
    margin: 0
}
    .title:after{
        content: '';
        width: 52px;
        height: 3px;
        background: #de175d;
        margin: 20px 0 30px;
        display: block;
    }
    .wrap-name .title:after{
        width: 8%
    }
/*end TITLEs*/

/*start BREADCRUMB*/
.breadcrumb{
    background: transparent;
    border-radius: 0;
    background: transparent;
    color: #fff
}
    .breadcrumb a{
        color: #fff;
        text-shadow: none;
    }
    .breadcrumb a:hover{
        color: #de175d
    }
/*end BREADCRUMB*/

/*start SEARCH*/
.ss-search-form{
    position: relative;
}
    .ss-search-form .form-group{
        position: relative;
        width: 100%;
    }
        .ss-search-form .form-group input[type="text"]{
            width: 100%;
            border-color: #c5c5c5;
        }
        .ss-search-form .form-group .ss-search-form__submit{
            position: absolute;
            right: 10px;
            top: 10px;
            background: transparent;
            border: none;
            background: #fff
        }
        .ss-search-form__results{
            position: absolute;
            left: 0;
            top: 110%;
            width: 100%;
            z-index: 999;
            background: #fff;
        }
        .ss-search-form__results.ss-search-form__results--visible{
            border: 1px solid #ccc;
            box-shadow: 0 0 5px rgba(0,0,0,0.2)
        }
            .ss-search-form__results > p{
                text-align: center;
                margin: 5px 0;
            }
        .wrap-result.flex{
            justify-content: flex-start;
        }
            .wrap-result.flex .ss-autocomplete-result__aside{
                margin-right: 15px;
                width: calc(30% - 15px);
                overflow: hidden;
            }
                .wrap-result.flex .ss-autocomplete-result__aside img{
                    width: 100%;
                }
            .wrap-result.flex .ss-autocomplete-result__content{
                width: 65%
            }
    /*.ss-search-form__results.ss-search-form__results--visible:before{
        content: 'Te sugerimos:';
        margin: 15px 0;
    }   */     
        .ss-autocomplete-result{
            padding: 10px;
            border-bottom: 1px solid #eee
        }
        .ss-autocomplete-result:nth-child(even){
            background: #f7f7f7
        }
            .ss-search-form__results h4{
                margin: 0
            }
/*end SEARCH*/

.pattern{
    display: inline-block;
    padding: 5px;
    background: url(../images/pattern-lines.svg) repeat 0 0 transparent;
    background-size: 80px;
    color:#beb6a8;
    font-size: 5em;
    line-height: 1em;
    font-family: 'Roboto Condensed', sans-serif;
}
.pattern.light{
    background: url(../images/pattern-lines-light.svg) repeat 0 0 transparent;
    color:#fff;
}
.pattern.magenta{
    color: #de175d
}
.pattern.blue{
    color: #5792c4
}

/*start BXSLIDER*/
.bx-wrapper{
    border: none;
    box-shadow: none;
    margin: 0;
}
/*end BXSLIDER*/
/*-----------end GLOBALS-----------*/

/*-----------start HEADER-----------*/
header{
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 9
}
    header #wrap{
        background: #fff;
    }
        header #logo{
            padding: 10px 0 10px 30px
        }
        header #logo img{
            width: 110px;
        }

        header #navbar{
            width: 85%;
            background: rgba(256,256,256,0.9);
            font-family: 'Roboto Condensed', sans-serif;
            padding: 0 30px;
        }
            header #navbar > ul > li{
                text-align: center;
            }
                header #navbar > ul > li > a{
                    border-top: 1px solid transparent;
                    padding: 35px 0;
                    display: inline-block;
                    position: relative;
                    color: #353535;
                    font-weight: 400;
                }            
                    header #navbar > ul > li > a.active:before{
                        background: #de175d;
                        height: 3px;
                        width: 100%;
                        position: absolute;
                        top: -3px;
                        left: 0;
                        content: "";
                    }
                    header #navbar > ul > li.open > a:after,
                    header #navbar > ul > li > a:hover:after{
                        background: #de175d;
                        height: 3px;
                        width: 100%;
                        position: absolute;
                        bottom: -3px;
                        left: 0;
                        content: "";
                    }
                        header #navbar > ul > li > a span{
                            color: #de175d
                        }
                header #navbar > ul > li > a.link-special{
                    color: #fff;
                    background: #bdb4a7;
                    padding: 5px 30px;
                }
                header #navbar > ul > li > a.link-special:hover{
                    opacity: 0.8
                }
                .dropdown-menu,
                .dropdown-submenu > .dropdown-menu{
                    box-shadow: none;
                    border-radius: 0;
                    border: none;
                    background: #353535;
                    color: #fff;
                }
                .dropdown-menu{
                    padding: 15px 8px;
                }
                    .dropdown-menu > li > a{
                        padding: 8px 16px;
                    }
                    .dropdown-menu > li > a,
                    .dropdown-submenu > li > a{
                        color: #fff
                    }
                    .dropdown-menu > li > a:hover, 
                    .dropdown-menu > li > a:focus, 
                    .dropdown-submenu:hover > a, 
                    .dropdown-submenu:focus > a{
                        background: #404040;
                        color: #fff
                    }

.stickEm-fixed header{
    /*transition:all 0.2s ease;
    -webkit-transition:all 0.2s ease;
    -moz-transition:all 0.2s ease;
    -o-transition:all 0.2s ease;*/
    -webkit-animation: stick 1s 1 ease;
    -moz-animation: stick 1 s 1 ease;
    animation: stick 1s 1 ease;
    -o-animation: stick 1s 1 ease;
    -webkit-transition:padding 0.2s ease;
    position:fixed;
    left: 0;
    top: 0
   
}

    .stickEm-fixed header #wrap{
        box-shadow: 0 0 5px rgba(0,0,0,0.4);        
    }
/*-----------end HEADER-----------*/

/*-----------start FOOTER-----------*/
footer #wrap{
    background: #353535;
    color: rgba(256,256,256,0.6);
    padding: 20px 50px;
}
    footer #wrap #logo-go img{
        width: 100px;
    }

    footer #wrap span{
        font-size: 0.8em;
    }
    footer #wrap #logo-ellecktra img{
        width: 80px;
        margin-left: 5px;
    }
    footer #wrap small{
        font-family: 'Roboto Condensed', sans-serif;
    }
    footer #wrap a{
        opacity: 0.6
    }
    footer #wrap a:hover{
        opacity: 1
    }
/*-----------end FOOTER-----------*/

/*-----------start LAYOUT-----------*/
.header-inner .container{
    height: 100%
}
.header-inner{
    height: 100%;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}
    .header-inner .flex{
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }    

article .content{
    padding: 45px 30px;
    background: #fff 
}
article .content.gray{
    background: #e9e9e9;
    padding: 15px 30px;
}
    article .img,
    article .txt{
        margin-bottom: 50px;
    }

    .content hr{
        border: none;
        height: 2px;
        margin: 50px 0;
        width: 100%
    }

/*.accordion-blocks > ul.column-2{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
    .accordion-blocks > ul.column-2 > li{
        width: calc(50% - 15px);
    }
    .accordion-blocks > ul.column-2 > li:nth-child(even){
        margin-left: 15px;
    }
    .accordion-blocks > ul.column-2 > li:nth-child(odd){
        margin-right: 15px;
    }*/
.accordion-blocks > ul > li,
.accordion-blocks > .column-2 > ul > li{
    padding: 15px;
    font-weight: 400;
    font-size: 1em;
    margin: 0;
    background: #e9e9e9;
    margin-bottom: 10px;
}
    .accordion-blocks > ul > li h4,
    .accordion-blocks > .column-2 > ul > li h4{
        margin: 0;
        color: #5b5b5f;
        position: relative;
        cursor: pointer;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
        padding-right: 50px;
    }
    .file h4{
        padding-left: 45px;
        font-weight: 400;
        font-family: 'Roboto Slab', serif;
    }
    .file h4:before{
        content: '';
        display: inline-block;
        width: 29px;
        height: 34px;
        background: url(../images/icon-pdf.png) no-repeat 0 0 transparent;
        position: absolute;
        left: 0;
        top: -8px;
    }
    .accordion-blocks > ul > li h4:after,
    .accordion-blocks > .column-2 > ul > li h4:after{
        font-family: "Font Awesome 5 Free";
        text-align: center;
        font-weight: 900; 
        padding: 7px 15px;
        line-height: 1em;
        position: absolute;
        right: 0;
        top: -7px;       
    }
    .accordion-blocks > ul > li > h4:after,
    .accordion-blocks > .column-2 > ul > li h4:after{
        content: '\f107';
        border-radius: 10px;
        background: #fff;
        color: #89878c;
    }
    .accordion-blocks > ul > li > h4.active:after,
    .accordion-blocks > .column-2 > ul > li h4.active:after{
        content: '\f106';
    }
    ul > .file h4:after{
        content: '\f309'!important;
        border-radius: 0;
        color: #353535;
        background: transparent;
    }
    .accordion-blocks > ul > li h4:hover:after,
    .accordion-blocks > .column-2 > ul > li h4:hover:after{
        background: #d5d5d5
    }
    .accordion-blocks li .editor{
        margin-top: 35px;
    }
        .accordion-blocks li .editor p img{
            width: 100%!important;
            margin-bottom: 25px;
        }
        .accordion-blocks li .editor ul li,
        .txt .editor ul li{
            position: relative;
            padding-left: 20px;
            margin-bottom: 7px;
        }
            .accordion-blocks li .editor ul li:before,
            .txt .editor ul li:before{
                content: '\f00c';
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                position: absolute;
                top: 0;
                left: 0;
            }
        .accordion-blocks .actions{
            margin-top: 30px;
        }


    .grid{
        display: block;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        column-count: 4;
    }    
        .grid .block{
            /*margin-bottom: 35px;*/
            width: 100%;
        }
            .grid .block h3{
                margin: 35px 0 15px 0;
                color: #353535;
                font-weight: 400;
                font-size: 1.8em;
            }
            .grid .block:first-child h3{
                margin-top: 0
            }
            .grid .block li{
                padding-left: 15px;
                margin-bottom: 10px;
                position: relative;
            }
                .grid .block li:before{
                    content: '\f0da';
                    font-family: "Font Awesome 5 Free";
                    font-weight: 900;
                    position: absolute;
                    left: 0;
                    top: 0;
                    color: #1778ba
                }
/*-----------end LAYOUT-----------*/

/*-----------start HOME-----------*/
.header-inner .bx-wrapper,
.header-inner .bx-viewport,
.slider-home,
.slider-home .bxitem{
    width: 100%;
    height: 100%!important;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.header-inner .bx-controls.bx-has-pager{
    position: absolute;
    left: 5.5%;
    top: 0;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .header-inner .bx-pager.bx-default-pager{
        padding: 0;
        position: relative;
        left: 0;
        bottom: 0
    }
        .header-inner .bx-wrapper .bx-pager-item{
            display: block;
            margin-bottom: 10px;
        }
            .header-inner .bx-wrapper .bx-pager.bx-default-pager a{
                border-radius: 0;
                background: transparent;
                border: 1px solid #fff;
                width: 11px;
                height: 11px;
                margin: 0;
            }
            .header-inner .bx-wrapper .bx-pager.bx-default-pager a.active,
            .header-inner .bx-wrapper .bx-pager.bx-default-pager a:focus,
            .header-inner .bx-wrapper .bx-pager.bx-default-pager a:hover{
                background: #fff
            }

.home-body .header-inner .flex{
    align-items: flex-end;
}
.slider-home .wrap-pattern{
    width: 40%;
    padding-left: 90px;
    position: relative;
    color: #fff;
}
    .slider-home .wrap-pattern h2{
        margin-bottom: 30px;
        font-weight: 400
    }
.slider-home .pattern.light{
    position: absolute;
    left: 0;
    top: 0;
}

.home-blocks{
    position: relative;
}

.home-blocks > .flex{
    height: 100%;
}

.home-blocks .wrap-pattern h2{
    color: #353535;
    font-weight: 400;
    margin: 25px 0;
    font-size: 2.6em;
}
.home-blocks .wrap-pattern h2.light{
    color: #fff
}
    .home-blocks .icon img{
        width: 55px;
    }

    .home-blocks .block-item .img{
        position: relative;
        overflow: hidden;
    }
        .home-blocks .block-item .img img{
            width: 100%;
            -webkit-transition:All .3s ease;
            -moz-transition:All .3s ease;
            -o-transition:All .3s ease;
        }
        .home-blocks a:hover .block-item .img img{
            transform: scale(1.1);
        }
        .home-blocks .block-item .img .mask{
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            text-align: center;
            color: #fff;
            justify-content: center;
            align-items: center;
            transform: scale(1.3);
            opacity: 0;
            -webkit-transition:All 0.3s ease;
            -moz-transition:All 0.3s ease;
            -o-transition:All 0.3s ease;
        }
        .home-blocks a:hover .block-item .img .mask{
            transform: scale(1);
            opacity: 1
        }
            .home-blocks .block-item .img .mask span{
                display: inline-block;
                width: 80px;
                height: 80px;
                border: 1px solid #fff;
                text-align: center;
                line-height: 80px;
                border-radius: 100%;
            }

    .home-blocks .block-item{
        padding-left: 35px;
        border-left: 1px solid #bcbcbc
    }
    .home-blocks#wrap-block03 a{
        display: block;
    }
        .home-blocks#wrap-block03 .block-item{
            padding: 0;
            border: none;
        }

    .home-blocks .block-item .text h2{
        color: #5792c4;
        font-size: 1.5em;
        margin-top: 20px;
        font-weight: 700;
        line-height: 1em;
    }
        .home-blocks .block-item .text h2 p{
            margin: 0;
            line-height: 1em;
        }
        .home-blocks .block-item .text h2:after{
            margin: 20px auto;
            width: 20%;
        }
        .home-blocks .block-item .text > span p{
            margin: 0;
        }

        .home-blocks a .block-item {
            display: block;
            transition:All 0.5s ease;
            -webkit-transition:All 0.5s ease;
            -moz-transition:All 0.5s ease;
            -o-transition:All 0.5s ease;
        }
            .home-blocks a .block-item .txt > span{
                display: block;
            }
        .home-blocks a:hover .block-item,
        .home-blocks a:focus .block-item,
        .home-blocks a:active .block-item {
            opacity: 0.8;
            color: #353535;
        }
            .home-blocks a:hover .block-item span p{
                color: #353535;       
            }


.wrap-parallax{
    padding: 65px 30px;
    background-size: cover;
    background-attachment: fixed;
} 


    #wrap-block04 #turnos .pattern.light,
    #wrap-block04 #turnos h4{
        color: #bdb4a7
    }
    #wrap-block04 #turnos .editor{
        color: #fefefe
    }
    #wrap-block04 #turnos .wrap-icon{
        background: #bdb4a7 
    }
        #turnos .wrap-icon .fa-whatsapp{
            font-size: 1.3em;
            line-height: 49px;
            }
        }
    #wrap-block04 #turnos .col-md-3:last-child .txt{
        margin-bottom: 0
    }

.home-blocks#wrap-block03 .block-item .text h2:after{
    margin: 20px 0;
}

#wrap-blockPost{
    margin: 55px 0;
}
    #wrap-blockPost .post-list a{
        display: block;
        transition:All 0.5s ease;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
    }
    #wrap-blockPost .post-list a:hover{
        color: #353535;
        opacity: 0.7;
        transition:All 0.5s ease;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
    }
    #wrap-blockPost .post-list img{
        width: 100%;
    }
    #wrap-blockPost .post-list .txt{
        padding-right: 50px;
    }
        #wrap-blockPost .post-list h3{
            margin-top: 20px;
            font-size: 1.8em;
        }
        /*#wrap-blockPost .post-list .editor{
            font-size: 0.9em;
        }*/
            #wrap-blockPost .bx-wrapper .bx-pager.bx-default-pager a{
                border-radius: 0;
                background: transparent;
                border: 1px solid #dddddd;
                width: 11px;
                height: 11px;
            }
            #wrap-blockPost .bx-wrapper .bx-pager.bx-default-pager a.active,
            #wrap-blockPost .bx-wrapper .bx-pager.bx-default-pager a:focus,
            #wrap-blockPost .bx-wrapper .bx-pager.bx-default-pager a:hover{
                background: #5792c4;
                border-color: #5792c4;
            }

#call-action{
    position: relative;
}
    #call-action .content{
        padding: 30px;
        background: #1576b8;
        color: #fff;
    }
    #call-action img{
        width: 45px;
    }

#wrap-block05{
    background: #e9e9e9;
}

/*-----------end HOME-----------*/

/*-----------start INFORMACION UTIL-----------*/
#informacion article .content.gray .img{
    margin: 0;
}
/*-----------end INFORMACION UTIL-----------*/

/*-----------start TURNOS-----------*/
#turnos .wrap-icon{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    line-height: 50px;
    background: #1879bb;
    margin-bottom: 35px;
    font-size: 1.5em;
}

#turnos h4{
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: #353535;
    font-size: 1.4em;
    margin-bottom: 20px;
}
/*-----------end TURNOS-----------*/

/*-----------start BLOG-----------*/
.block-blog{
    margin-top: 55px;
    display: block;
}
.block-blog:hover{
    color: #727277;
    opacity: 0.6
}
.block-blog:first-child{
    margin-top: 0;
}
    .block-blog .img{
        margin-bottom: 25px;
    }
    .block-blog .txt{
        margin-bottom: 0;
        width: 100%;
    }
        .block-blog .title:after{
            margin: 20px 0;
        }

aside .title:after{
    margin: 15px 0;
}

aside .block-search{
    margin-top: 20px
}

aside .list{
    margin-top: 45px;
}
    aside .list li{
        margin-top: 20px;
    }
    aside .list li:first-child{
        margin-top: 0;
    }
        aside .list .img,
        aside .list .txt{
            margin: 0;
        }
            aside .list .txt h4{
                font-weight: 400;
                font-family: 'Roboto Slab', serif;
            }
            aside .list a{
                display: block;
            }
            aside .list a:hover{
                color: #727277
            }


.pager{
    margin: 70px 0 0 0;
    text-align: left;
}
    .pagination{
        margin: 0;
    }
        .pagination > li > a,
        .pagination > li > span,
        .pagination > .active > span,
        .pagination > li > a:hover span,
        .pagination > li > a:hover,
        .pagination > li.active > a:hover{
            border-radius: none;
            border: none;
            color: #333
        }
        .pagination > .active > span,
        .pagination > li > a:hover span,
        .pagination > li > a:hover,
        .pagination > li.active:hover > span{
            background: transparent;
            color: #1879bb
        }


.categories-list > ul > li:first-child,
.categories-list > ul > li.active > a,
.categories-list > ul > li.child-active > a{
    display: none;
}

.categories-list > ul > li ul li{
    margin-bottom: 8px;
}
    .categories-list > ul > li ul li a{
        padding: 25px 25px 25px 40px;
        background: #e9e9e9;
        color: #5b5b5f;
        display: block;
        position: relative;
    }
    .categories-list > ul > li ul li a:hover{
        opacity: 0.8
    }
        .categories-list > ul > li ul li a:before{
            display: inline-block;
            left: 25px;
            top:26px;
            position: absolute;
            content: '\f105';
            font-family: "Font Awesome 5 Free";
            font-weight: 900
        }

.extra-info{
    width: 100%;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #cdcdcd;
}
    .extra-info li{
        display: inline-block;
        margin-left: 50px;
    }
    .extra-info li:first-child{
        margin-left: 0;
    }
        .extra-info li i{
            color: #1879bb;
            margin-right: 5px;
        }


#datepicker{
    margin-bottom: 45px;
}
    #datepicker .ui-datepicker{
        width: 100%;
        border: none;
        padding: 0;
        border-radius: 0;
        background: #e9e9e9;
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        color: #353535

    }
        #datepicker .ui-datepicker .ui-datepicker-header{
            background: #aba49a;
            color: #fff;
            padding: 10px 15px;
            border: none;
            border-radius: 0;            
            font-weight: 400;
            font-size: 1.2em;
            letter-spacing: 0.05em
        }

        #datepicker .ui-state-default{
            text-align: center;
            border: none;
            background: transparent;
        }
        #datepicker .has-event .ui-state-default{
            color:#de175d!important
        }
        
        .ui-datepicker .ui-datepicker-prev,
        .ui-datepicker .ui-datepicker-next{
            top: 0;
            width: auto;
            height: auto;
            text-align: center;
            padding: 13px;
            cursor: pointer;
            color: #fff
        }
            .ui-datepicker .ui-datepicker-prev span,
            .ui-datepicker .ui-datepicker-next span{
                display: none;
            }
            .ui-datepicker .ui-datepicker-prev:hover,
            .ui-datepicker .ui-datepicker-next:hover{
                background: transparent;
                border: none;
                color: #353535
            }
            .ui-datepicker .ui-datepicker-prev:before,
            .ui-datepicker .ui-datepicker-next:before{
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
            }
            .ui-datepicker .ui-datepicker-prev:before{
                content: '\f104';
            }
            .ui-datepicker .ui-datepicker-next:before{
                content: '\f105';
            }

    .wrap-post .accordion-blocks{
        margin:30px 0 
    }
    
    .wrap-post .txt .editor ul{
        padding-left: 40px;
        margin-bottom: 10px;
    }

/*-----------end BLOG-----------*/

/*-----------start STAFF-----------*/
#staff article .content{
    position: relative
}
#letter-list{
    background: #E9E9E9;
    position: relative;    
}
    #letter-list li{
        margin: 0;
        text-align: center;
    }
        #letter-list li a{
            display: block;
            color:#B5B5B5;
            padding: 4px 15px;
            font-family: 'Roboto Condensed', sans-serif;
            margin: 0
        }
        #letter-list li a:hover,
        #letter-list li a.active{
            color:#fff;
            background:#353535
        }
        #letter-list li a.active{
            font-size: 2em;
        }
        
#staff-list .thumbnail{
    border: none;
    box-shadow: none;
    border-radius: none;
    padding: 0;
    height: 425px;
    margin: 0;
    overflow: hidden;
}    
    #staff-list .thumbnail img{
        width: 100%;
    }
    #staff-list .thumbnail .txt{
        margin-top: 25px;
    }
        #staff-list .thumbnail h3{
            font-weight: 600;
            font-size: 1.3em;
            text-align: center
        }
            #staff-list .thumbnail h3:after{
                content:'';
                width: 80px;
                height: 3px; 
                background:#bdb4a7;
                display: block;
                margin: 15px auto;
            }

.staff-search{
    padding: 45px 30px;
    background: url(../images/bg-staff.jpg) no-repeat 0 0 transparent;
    background-size: cover;
}
    .staff-search h2.title{
        color: #fff
    }

    .staff-search .form-control{
        background: #fff
    }

    .chosen-container-single .chosen-single{
        border: 1px solid #000;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
        height: 40px;
        color: #555;
        line-height: 40px;
    }
        .chosen-container-single .chosen-single div b{
            background-size: 52px 48px !important;
        }
            
/*-----------end STAFF-----------*/

/*-----------start CONTACTO-----------*/
#gmap-park{
    height: 500px;
}

#gplace{
    display: block;
}
#gplace:hover{
    opacity: 0.7
}
    #gplace h4{
        margin: 22px 0;
        color: #1778ba;
        font-size: 1.6em;
    }
    #gplace img{
        width: 100%;
    }
    .local-block{
        margin-bottom: 25px;
    }
        .local-block li{
            margin-bottom: 7px;
        }
            .local-block li i{
                margin-right: 7px;
            }

.social-block ul{
    width: 100%;
    text-align: left;
}
    .social-block ul li{
        display: inline-block;
    }
        .social-block ul li a{
            display: inline-block;
            text-align: center;
            color: #fff;
            font-size: 1.5em;
            background: #5792c4;
            width: 40px;
            height: 40px;
            line-height: 40px;
            border-radius: 100%;
            margin-right: 5px;
        }
        .social-block ul li a:hover{
            opacity: 0.7
        }
/*-----------end CONTACTO-----------*/

/*-----------start ESTUDIOS Y PROCEDIMIENTOS-----------*/
.wrap-title .flex{
    align-items: flex-start;
}
/*-----------end ESTUDIOS Y PROCEDIMIENTOS-----------*/

/*-----------start EN CONSTRUCCION-----------*/
.soon-body .title-sec{
    margin: 30px 0;
}
/*-----------end EN CONSTRUCCION-----------*/



/*-----------start MEDIA QUERIES-----------*/
/*start IPHONE VERTICAL*/
@media (min-width: 320px) and (max-width: 479px) {
    /*start GLOBAL*/
    .pattern{
        font-size: 3.5em;
    }
    /*end GLOBAL*/

    /*start HEADER*/
    header #wrap > .flex{
        width: 95%;
    }
        header #logo{
            padding: 10px 0 10px 15px;
        }
            header #logo img{
                width: 80px;
            }
        header #wrap.flex .navbar-toggle{
            display: block!important;
        }
    header #navbar{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(256,256,256,0.95);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transform: translate(0,100%);
        transition:All 0.5s ease;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
    }
    header #navbar.active{
        opacity: 1;
        transform: translate(0,0);
    }
        #navbar > ul{
            display: block;
            max-height: 450px;
            overflow: scroll;
        }
            header #navbar > ul > li > a{
                font-size: 1.5em;
                padding: 15px 0;
                text-align: center;
                display: block;
            }
            .dropdown-menu{
                position: relative;
                top: 0;
                left: 0;
                min-width: 0;
                width: 100%;
            }
            .dropdown-submenu:hover > .dropdown-menu,
            .dropdown.open .dropdown-submenu > .dropdown-menu{
                display: block!important;
                left: 0
            }
            .dropdown-submenu > a:after{
                transform: rotate(90deg);
            }
    /*end HEADER*/

    /*start FOOTER*/
    footer #wrap > .flex{
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
        footer #wrap > .flex span{
            margin: 15px 0;
        }
    /*end FOOTER*/

    /*start LAYOUT*/
    article .content,
    .wrap-parallax{
        padding: 40px 20px;
    }

    article .content.gray{
        padding: 20px;
    }
    .title-sec{
        font-size: 2em;
    }

    .title{
        font-size: 2em;
    }    

    .accordion-blocks > ul.column-2{
        flex-direction: column;
    }
        .accordion-blocks > ul.column-2 > li{
            width: 100%;
        }
        .accordion-blocks > ul.column-2 > li:nth-child(odd),
        .accordion-blocks > ul.column-2 > li:nth-child(even){
            margin: 0 0 15px 0;
        }
    /*end LAYOUT*/

    /*start HOME*/
    .header-inner .bx-controls.bx-has-pager{
        justify-content: flex-end;
    }
    .slider-home .wrap-pattern{
        width: 100%;
        padding-left: 65px;
    }
        .slider-home .wrap-pattern h2{
            font-size: 1.5em;
        }
        .slider-home .wrap-pattern .btn{
            padding: 10px 25px;
        }
        .home-blocks .wrap-pattern .btn{
            padding: 10px 15px;
        }
    .home-blocks .block-item {
        padding-left: 0;
        border-left: none;
        margin-bottom: 30px;
    }

    #wrap-block02 > .row.flex{
        justify-content: flex-start;
    }
        .home-blocks .wrap-pattern{
            margin-bottom: 30px;
            text-align: center;
        }
            .home-blocks .wrap-pattern h2{
                font-size: 2em;
            }

        #wrap-blockPost .post-list .txt{
            padding: 0;
        }

        .home-blocks .block-item .img{
            margin-bottom: 10px;
        }

        #call-action .content{
            justify-content: center;
            align-items: center;
            text-align: center;
        }
            #call-action .content h3{
                margin: 25px 0;
            }

        #turnos{
            text-align: center;
        }
            #turnos .col-md-9 .col-md-4{
                margin-bottom: 50px;
            }
            #turnos .col-md-9 .col-md-4:last-child{
                margin-bottom: 0
            }
                #turnos .wrap-icon{
                    margin: auto auto 20px auto
                }
                #turnos .txt{
                    margin-bottom: 30px;
                }
                #turnos .col-md-4:last-child .txt{
                    margin-bottom: 0
                }
                #turnos h4{
                    margin-bottom: 10px;
                }

                .social-block ul{
                    text-align: center;
                }
        #gplace{
            margin-top: 50px;
        }

        #contacto .btn.btn-custom{
            width: 100%;
            display: block;
        }
    /*end HOME*/

    /*start INNER*/
    .accordion-blocks > ul > li.file h4:after{
        /*display: none;*/
        line-height: 32px;
    }
    .accordion-blocks > ul > li.file h4{
        min-height: 32px;
    }

    .content hr{
        margin: 30px 0;
    }
    /*end INNER*/

    /*start BLOG*/
    .extra-info li{
        margin: 0 0 10px 0;
        width: 100%;
    }
    #news aside{
        margin-top: 50px;
    }
    .popular-post li{
        margin-bottom: 30px;
    }
    .popular-post li:last-child{
        margin-bottom: 0
    }
        .popular-post li .img{
            margin-bottom: 15px;
        }
    /*end BLOG*/

    /*start INFORMATION*/
    #informacion article .content.gray .img{
        margin: 0 0 30px 0
    }
    /*end INFORMATION*/

    /*start STUDIES*/
    #estudios-procedimientos .wrap-title .txt{
        margin: 0;
        text-align: center;
    }
    #estudios-procedimientos .wrap-title .title:after{
        margin: 20px auto 30px;
    }
    #estudios-procedimientos .col-md-4 .der{
        margin-top: 50px;
    }
        #estudios-procedimientos .col-md-4 .der .txt{
            margin: 0
        }

    .grid{
        column-count: 1;
        flex-direction: column;
    }
    /*end STUDIES*/
    
    /*start STAFF*/    
    #staff .btn.light{
        display: block;
        margin-bottom: 30px;
    }
    #staff-list .thumbnail{
        height: 440px;;
    }
    #letter-list{
        display: none;
        top: 0!important;
    }
    /*end STAFF*/

    
}
/*end IPHONE VERTICAL*/

/*start IPHONE HORIZONTAL*/
@media (min-width: 480px) and (max-width: 767px) {
    /*start GLOBAL*/
    .pattern{
        font-size: 3.5em;
    }
    /*end GLOBAL*/

    /*start HEADER*/
    header #wrap > .flex{
        width: 95%;
    }
        header #logo{
            padding: 10px 0 10px 15px;
        }
            header #logo img{
                width: 80px;
            }
        header #wrap.flex .navbar-toggle{
            display: block!important;
        }
    header #navbar{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(256,256,256,0.95);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transform: translate(0,100%);
        transition:All 0.5s ease;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
    }
    header #navbar.active{
        opacity: 1;
        transform: translate(0,0);
    }
        #navbar > ul{
            display: block;
            max-height: 450px;
            overflow: scroll;
        }
            header #navbar > ul > li > a{
                font-size: 1.5em;
                padding: 15px 0;
                text-align: center;
                display: block;
            }
            .dropdown-menu{
                position: relative;
                top: 0;
                left: 0;
                min-width: 0;
                width: 100%;
            }
            .dropdown-submenu:hover > .dropdown-menu,
            .dropdown.open .dropdown-submenu > .dropdown-menu{
                display: block!important;
                left: 0
            }
            .dropdown-submenu > a:after{
                transform: rotate(90deg);
            }
    /*end HEADER*/

    /*start FOOTER*/
    footer #wrap > .flex{
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
        footer #wrap > .flex span{
            margin: 15px 0;
        }
    /*end FOOTER*/

    /*start LAYOUT*/
    article .content,
    .wrap-parallax{
        padding: 40px 20px;
    }

    article .content.gray{
        padding: 20px;
    }
    .title-sec{
        font-size: 2em;
    }

    .title{
        font-size: 2em;
    }    

    .accordion-blocks > ul.column-2{
        flex-direction: column;
    }
        .accordion-blocks > ul.column-2 > li{
            width: 100%;
        }
        .accordion-blocks > ul.column-2 > li:nth-child(odd),
        .accordion-blocks > ul.column-2 > li:nth-child(even){
            margin: 0 0 15px 0;
        }
    /*end LAYOUT*/

    /*start HOME*/
    .header-inner .bx-controls.bx-has-pager{
        justify-content: flex-end;
    }
    .slider-home .wrap-pattern{
        width: 100%;
        padding-left: 65px;
    }
        .slider-home .wrap-pattern h2{
            font-size: 1.5em;
        }
        .slider-home .wrap-pattern .btn{
            padding: 10px 25px;
        }
        .home-blocks .wrap-pattern .btn{
            padding: 10px 15px;
        }
    .home-blocks .block-item {
        padding-left: 0;
        border-left: none;
        margin-bottom: 30px;
    }

    #wrap-block02 > .row.flex{
        justify-content: flex-start;
    }
        .home-blocks .wrap-pattern{
            margin-bottom: 30px;
            text-align: center;
        }
            .home-blocks .wrap-pattern h2{
                font-size: 2em;
            }

        #wrap-blockPost .post-list .txt{
            padding: 0;
        }

        .home-blocks .block-item .img{
            margin-bottom: 10px;
        }

        #call-action .content{
            justify-content: center;
            align-items: center;
            text-align: center;
        }
            #call-action .content h3{
                margin: 25px 0;
            }

        #turnos{
            text-align: center;
        }
            #turnos .col-md-9 .col-md-4{
                margin-bottom: 50px;
            }
            #turnos .col-md-9 .col-md-4:last-child{
                margin-bottom: 0
            }
                #turnos .wrap-icon{
                    margin: auto auto 20px auto
                }
                #turnos .txt{
                    margin-bottom: 30px;
                }
                #turnos .col-md-4:last-child .txt{
                    margin-bottom: 0
                }
                #turnos h4{
                    margin-bottom: 10px;
                }

                .social-block ul{
                    text-align: center;
                }
        #gplace{
            margin-top: 50px;
        }

        #contacto .btn.btn-custom{
            width: 100%;
            display: block;
        }
    /*end HOME*/

    /*start INNER*/
    .accordion-blocks > ul > li.file h4:after{
        /*display: none;*/
        line-height: 32px;
    }
    .accordion-blocks > ul > li.file h4{
        min-height: 32px;
    }

    .content hr{
        margin: 30px 0;
    }
    /*end INNER*/

    /*start BLOG*/
    .extra-info li{
        margin: 0 0 10px 0;
        width: 100%;
    }
    #news aside{
        margin-top: 50px;
    }
    .popular-post li{
        margin-bottom: 30px;
    }
    .popular-post li:last-child{
        margin-bottom: 0
    }
        .popular-post li .img{
            margin-bottom: 15px;
        }
    /*end BLOG*/

    /*start INFORMATION*/
    #informacion article .content.gray .img{
        margin: 0 0 30px 0
    }
    /*end INFORMATION*/

    /*start STUDIES*/
    #estudios-procedimientos .wrap-title .txt{
        margin: 0;
        text-align: center;
    }
    #estudios-procedimientos .wrap-title .title:after{
        margin: 20px auto 30px;
    }
    #estudios-procedimientos .col-md-4 .der{
        margin-top: 50px;
    }
        #estudios-procedimientos .col-md-4 .der .txt{
            margin: 0
        }

    .grid{
        column-count: 2;
        flex-direction: column;
    }
    /*end STUDIES*/
    
    #staff-list .thumbnail{
        height: auto;
    }
}
/*end IPHONE HORIZONTAL*/

 /*start IPAD VERTICAL*/
@media (min-width: 768px) and (max-width: 979px){
    /*start HEADER*/
    header #wrap > .flex{
        width: 95%;
    }
        header #wrap.flex .navbar-toggle{
            display: block!important;
        }
    header #navbar{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(256,256,256,0.95);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transform: translate(0,100%);
        transition:All 0.5s ease;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
    }
    header #navbar.active{
        opacity: 1;
        transform: translate(0,0);
    }
        #navbar > ul{
            flex-direction: column;
        }
            header #navbar > ul > li > a{
                font-size: 1.5em;
                padding: 15px 0;
                text-align: center;
                display: block;
            }
            .dropdown-menu{
                position: relative;
                top: 0;
                left: 0;
                min-width: 0;
                width: auto
            }
            .dropdown-submenu:hover > .dropdown-menu,
            .dropdown.open .dropdown-submenu > .dropdown-menu{
                display: block!important;
                left: 0
            }
            .dropdown-submenu > a:after{
                transform: rotate(90deg);
            }
    /*end HEADER*/

    /*start HOME*/
    .slider-home .wrap-pattern{
        width: 60%;
    }
    .home-blocks .wrap-pattern .btn{
        padding: 10px 15px;
    }
    .home-blocks .block-item {
        padding-left: 0;
        border-left: none;
    }

    #wrap-block02 > .row.flex{
        justify-content: flex-start;
    }
        #wrap-block02 .wrap-pattern{
            margin-bottom: 25px;
        }
        #wrap-block05 .wrap-pattern{
            margin-bottom: 50px;
        }
    /*end HOME*/

    /*start INNER*/
    .accordion-blocks > ul > li.file h4:after{
        display: none;
    }
    .accordion-blocks > ul > li.file h4{
        min-height: 32px;
    }
    /*end INNER*/

    /*start BLOG*/
    .extra-info li{
        margin-left: 10px;
    }
    /*end BLOG*/
    
    
}
/*end IPAD VERTICAL*/

/*start BIG SCREEN*/
@media (min-width: 1200px){
    
}
/*end BIG SCREEN*/
/*-----------end MEDIA QUERIES-----------*/


/*-----------CALENDAR-----------*/
.has-event a {
    color: red !important;
}

.btn.btn-blue{
    background-color: #1879BB;
    color: white;
    min-width: 230px;
    border-color: #1879BB;
    margin-bottom: 10px;
    margin-right: 10px;
}

.btn.btn-blue:hover{
    color: #1879BB;
    background-color: white;
}

.img-pdf-right li a{
    min-width: 100%;
    display: block;
    background-image: url(../images/icon-pdf.png);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 17px 20px;
}

ul.menu-filtro-categorias li{        
    margin-top: 4px;        
}

ul.menu-filtro-categorias li:not(.selected) a{
    background-color: #EAEAEA;        
}

ul.menu-filtro-categorias li.selected a{
    color: #EAEAEA;
    background-color: #727277;
}

ul.menu-filtro-categorias li a{
    padding: 18px;
}

#container_youtube iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#modal_guardia_virtual {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

#modal_guardia_virtual .modal-content {
    background-color: #fefefe;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #888;
    width: auto;
    max-width: 690px;
    position: relative;
}

#modal_guardia_virtual .modal-content .modal-bottom {
    background-color: white;
    padding: 30px 20px 20px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#modal_guardia_virtual .modal-content .modal-bottom .modal_guardia_btn {
    padding: 15px 10px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    min-width: 150px;
    text-align: center;
    transition: background-color 0.2s linear;
}

#modal_guardia_virtual .modal-content .modal-bottom .modal_guardia_btn:first-child {
    background-color: #00679a;
}

#modal_guardia_virtual .modal-content .modal-bottom .modal_guardia_btn:last-child {
    background-color: #0093bf;
}

#modal_guardia_virtual .modal-content .modal-bottom .modal_guardia_btn:hover {
    background-color: #003349;
}

#modal_guardia_virtual .modal-content .img-container {
    position: relative;
}

#modal_guardia_virtual .modal-content img.responsive {
    width: 100%;
}

#modal_guardia_virtual .modal-content img.icono_down {
    width: 100%;
    max-width: 106px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#modal_guardia_virtual .modal-content .close {
    color: white;
    position: absolute;
    font-size: 28px;
    font-weight: 900;
    top: 6%;
    right: 5%;
    width: 35px;
    height: 35px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 30px;
    z-index: 101;
}

#modal_guardia_virtual .modal-content .close:hover,
#modal_guardia_virtual .modal-content .close:focus {
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 600px) {
    #modal_guardia_virtual .modal-content .modal-bottom {
        padding: 15px 20px 20px 20px;
        flex-direction: column;
    }
    #modal_guardia_virtual .modal-content .modal-bottom .modal_guardia_btn {
        width: 100%;
    }
    #modal_guardia_virtual .modal-content .modal-bottom .modal_guardia_btn:first-child {
        margin-bottom: 15px;
    }
    #modal_guardia_virtual .modal-content .modal-bottom img {
        display: none;
    }
}

#modal_guardia_virtual .close {
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
}

.botones_guardia_virtual {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 55px;
    height: 70px;
    cursor: pointer;
}

.open-links-wrapper {
    position: relative;
}

.open-links-wrapper .svg-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 29px;
    height: 35px;
}

.open-links-wrapper .svg-fdo svg {
    width: 55px;
    height: 70px;
}

.open-links-wrapper .svg-fdo svg path {
	fill: #dc004f;
    transition: all 0.5s ease-in-out;
}

.open-links-wrapper:hover .svg-fdo svg path {
    fill: #006bb4;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.open-links-wrapper:hover .svg-icon img {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.botones_guardia_virtual .links-wrapper {
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 35px 15px 10px 15px;
    background-color: white;
    display: none;
}

.botones_guardia_virtual .links-wrapper .title-links {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.botones_guardia_virtual .links-wrapper .title-links p {
    color: #005680;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 0;
}

.botones_guardia_virtual .links-wrapper .title-links .close-btn {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.botones_guardia_virtual .links-wrapper a {
    display: flex;
    align-items: center;
    background-color: #eaeaea;
    border-radius: 50px;
    margin-bottom: 25px;
    text-decoration: none;
    color: #636363;
    font-size: 15px;
    white-space: nowrap;
    padding-right: 20px;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.botones_guardia_virtual .links-wrapper a:hover {
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.35)
}

.botones_guardia_virtual .links-wrapper a p {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.botones_guardia_virtual .links-wrapper a p>b {
    font-weight: 600;
}

.botones_guardia_virtual .links-wrapper a img {
    margin-right: 12px;
}